You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
1.1 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!--Report Action to print the PDF Report of the License-->
<record id="action_license_report" model="ir.actions.report">
<field name="name">License Report</field>
<field name="model">license</field>
<field name="report_type">qweb-pdf</field>
<field name="report_name">certificate_license_expiry.report_license</field>
<field name="report_file">certificate_license_expiry.report_license</field>
<field name="binding_type">report</field>
</record>
<!--Server Action to print the PDF Report of the License-->
<record model="ir.actions.server" id="action_create_licence_pdf_report">
<field name="name">PDF Report</field>
<field name="model_id" ref="certificate_license_expiry.model_license"/>
<field name="binding_model_id"
ref="certificate_license_expiry.model_license"/>
<field name="binding_view_types">form</field>
<field name="state">code</field>
<field name="code">
action = records.action_create_license_pdf_report()
</field>
</record>
</odoo>