Files
Odoo-18.0-20251222/account_cash_deposit/report/report.xml
tocmo0nlord adbe430761
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

21 lines
951 B
XML
Executable File

<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright 2022 Akretion France (http://www.akretion.com/)
@author: Alexis de Lattre <alexis.delattre@akretion.com>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo>
<record id="report_account_cash_deposit" model="ir.actions.report">
<field name="name">Cash Deposit/Order</field>
<field name="model">account.cash.deposit</field>
<field name="report_type">qweb-pdf</field>
<field name="report_name">account_cash_deposit.report_cashdeposit</field>
<field name="report_file">account_cash_deposit.report_cashdeposit</field>
<field
name="print_report_name"
>'%s%s' % (object.display_name.replace(' ', '_'), object.state == 'draft' and '-draft' or '')</field>
<field name="binding_model_id" ref="model_account_cash_deposit" />
<field name="binding_type">report</field>
</record>
</odoo>