feat: Se crea reporte de extracto de ventas

This commit is contained in:
2023-09-17 13:12:32 -05:00
parent cb12fe5e0c
commit f45043af7e
8 changed files with 2477 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.action.report" id="report_close_statement">
<field name="name">Close statement</field>
<field name="model"></field>
<field name="report_name">sale.cash_register</field>
<field name="report">sale_fast_food/report/close_statement.fodt</field>
<field name="template_extension">odt</field>
</record>
<record model="ir.ui.view" id="print_cash_register_start_view_form">
<field name="model">sale.print_cash_register.start</field>
<field name="type">form</field>
<field name="name">print_cash_register_start_form</field>
</record>
<record model="ir.action.wizard" id="wizard_print_cash_register">
<field name="name">Print cash register</field>
<field name="wiz_name">sale.print_cash_register</field>
</record>
<menuitem
parent="sale.menu_sale"
action="wizard_print_cash_register"
id="menu_print_cash_register"
icon="tryton-print"/>
</data>
</tryton>