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.
 
 
 
 
 

24 lines
959 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- To add a new tab for sales commission-->
<record id="view_order_form" model="ir.ui.view">
<field name="name">
sale.order.view.form.inherit.sales.commission.users
</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']" position="after">
<page string="Sales Commission">
<field name="commission_ids">
<tree editable='bottom'>
<field name="date"/>
<field name="description"/>
<field name="commission_amount" sum="Total"/>
</tree>
</field>
</page>
</xpath>
</field>
</record>
</odoo>