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.
28 lines
807 B
28 lines
807 B
<?xml version="1.0"?>
|
|
<!--
|
|
© 2017 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
|
|
<record id="agreement_form" model="ir.ui.view">
|
|
<field name="name">agreement.form</field>
|
|
<field name="model">agreement</field>
|
|
<field name="inherit_id" ref="agreement_account.agreement_form"/>
|
|
<field name="arch" type="xml">
|
|
<group name="out_invoices" position="after">
|
|
<group name="sale_orders" string="Sales Orders">
|
|
<field name="sale_ids" colspan="4" nolabel="1"/>
|
|
</group>
|
|
</group>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
<menuitem id="menu_agreement" name="Agreement" action="agreement_account.agreement_action"
|
|
parent="sales_team.menu_sale_config"/>
|
|
|
|
|
|
</odoo>
|