gestion des demandes d'évolution pour le centre kalachakra non géré dans les module booking et opendons
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.
 
 
 
 

40 lines
1.6 KiB

<odoo>
<record id="cdr_accounting_file_wizard_view" model="ir.ui.view">
<field name="name">cdr accounting_file_wizard view</field>
<field name="model">cdr.accounting.file.wizard</field>
<field name="arch" type="xml">
<form string="Accounting file wizard">
<group>
<field name="start_date" widget="date"/>
<field name="end_date" widget="date"/>
<field name="debug_mode"/>
<field name="export_donation_lines"/>
<field name="export_booking_event_lines"/>
<field name="export_out_refund_lines"/>
<field name="export_end_of_stay_lines"/>
</group>
<footer>
<button name="action_create_cdr_accounting_file" string="generate accounting file" type="object"/>
<button string="Cancel" class="btn btn-secondary" special="cancel" />
</footer>
</form>
</field>
</record>
<record model="ir.actions.act_window" id="generate_cdr_accounting_file_action">
<field name="name">Generate cdr accounting file</field>
<field name="res_model">cdr.accounting.file.wizard</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
<menuitem id="cdr_accounting_file_generate_menu" action="generate_cdr_accounting_file_action"
parent="account.menu_finance_entries_accounting_miscellaneous" sequence="12"/>
</odoo>