mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
39 lines
1.7 KiB
XML
39 lines
1.7 KiB
XML
<!-- Copyright 2019 Ecosoft
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
<record id="action_invoice_all_tree" model="ir.actions.act_window">
|
|
<field name="name">Invoices for Netting</field>
|
|
<field name="res_model">account.invoice</field>
|
|
<field name="view_type">form</field>
|
|
<field name="view_mode">tree,form</field>
|
|
<field eval="False" name="view_id"/>
|
|
<field name="domain">[('state', '=', 'open')]</field>
|
|
<field name="context">{'type':'out_invoice', 'journal_type': 'sale'}</field>
|
|
<field name="search_view_id" ref="account.view_account_invoice_filter"/>
|
|
<field name="help" type="html">
|
|
<p class="o_view_nocontent_smiling_face">
|
|
Create a customer invoice
|
|
</p><p>
|
|
Create invoices, register payments and keep track of the discussions with your customers.
|
|
</p>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_invoice_all_view1" model="ir.actions.act_window.view">
|
|
<field eval="1" name="sequence"/>
|
|
<field name="view_mode">tree</field>
|
|
<field name="view_id" ref="account.invoice_tree_with_onboarding"/>
|
|
<field name="act_window_id" ref="action_invoice_all_tree"/>
|
|
</record>
|
|
|
|
<record id="action_invoice_all_view2" model="ir.actions.act_window.view">
|
|
<field eval="2" name="sequence"/>
|
|
<field name="view_mode">form</field>
|
|
<field name="view_id" ref="account.invoice_form"/>
|
|
<field name="act_window_id" ref="action_invoice_all_tree"/>
|
|
</record>
|
|
|
|
<menuitem action="action_invoice_all_tree" id="menu_action_invoice_all_tree" parent="account.menu_finance_entries" sequence="50"/>
|
|
|
|
</odoo>
|