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.
 
 
 
 
 

30 lines
1.3 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Setting the paper format -->
<record id="paperformat_gatepass" model="report.paperformat">
<field name="name">Gate Pass</field>
<field name="default" eval="True"/>
<field name="format">custom</field>
<field name="page_height">150</field>
<field name="page_width">240</field>
<field name="orientation">Portrait</field>
<field name="margin_top">40</field>
<field name="margin_bottom">5</field>
<field name="margin_left">5</field>
<field name="margin_right">5</field>
<field name="header_line" eval="False"/>
<field name="header_spacing">40</field>
<field name="dpi">90</field>
</record>
<!--Generate the pdf report-->
<record id="action_generate_gatepass" model="ir.actions.report">
<field name="name">Gate Pass</field>
<field name="model">stock.picking</field>
<field name="report_type">qweb-pdf</field>
<field name="report_name">gatepass_slip.report_gatepass_slip</field>
<field name="report_file">gatepass_slip.report_gatepass_slip</field>
<field name="paperformat_id" ref="gatepass_slip.paperformat_gatepass"/>
<field name="binding_model_id" ref="model_stock_picking"/>
<field name="binding_type">report</field>
</record>
</odoo>