mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-24 13:45:30 +02:00
36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<!-- QWeb Reports -->
|
|
<!--
|
|
<record id="paperformat_payment_receipt" model="report.paperformat">
|
|
<field name="name">A4 Payment Receipt</field>
|
|
<field name="default" eval="True" />
|
|
<field name="format">A4</field>
|
|
<field name="page_height">0</field>
|
|
<field name="page_width">0</field>
|
|
<field name="orientation">Portrait</field>
|
|
<field name="margin_top">30</field>
|
|
<field name="margin_bottom">0</field>
|
|
<field name="margin_left">3</field>
|
|
<field name="margin_right">0</field>
|
|
<field name="header_line" eval="False" />
|
|
<field name="header_spacing">35</field>
|
|
<field name="dpi">90</field>
|
|
</record> -->
|
|
|
|
|
|
<report
|
|
id="action_report_payment_receipt_reports"
|
|
model="account.payment"
|
|
string="Payment Receipt Report"
|
|
report_type="qweb-pdf"
|
|
name="reports.report_payment_receipt_views"
|
|
file="reports.report_payment_receipt_views"
|
|
/>
|
|
<!-- <record id="action_report_payment_receipt_reports" model="ir.actions.report.xml">
|
|
<field name="paperformat_id" ref="reports.paperformat_payment_receipt"/>
|
|
</record> -->
|
|
</data>
|
|
</odoo>
|