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.
 
 
 
 
 

19 lines
954 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record model="ir.ui.view" id="care_of_sale_order_form">
<field name="name">sale.order.care_of</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<xpath expr="//page[@name='other_information']/group" position="inside">
<group string="Care Of Partner" name="care_of_partner">
<field name="care_of_partner_id"/>
<field name="care_of_percentage" string="Commission Percentage" widget="percentage" placeholder="0.05"/>
<field name="care_of_commission" string="Commission Amount" widget="monetary" options="{'currency_field': 'currency_id'}" />
</group>
</xpath>
</field>
</record>
</data>
</odoo>