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.
 
 
 
 
 

23 lines
1.1 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<!--showing promotion list in sale order form-->
<record id="sale_promotion_in_sale_order_form" model="ir.ui.view">
<field name="name">sale.order.form</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form" />
<field name="arch" type="xml">
<xpath expr="//button[@name='print_quotation']" position="after">
<button name="button_dump_sale_promotion" class="btn-primary"
string="Apply offer" states="draft,sent" type="object" context="{'show_sale': True}"/>
</xpath>
<xpath expr="//field[@name='pricelist_id']" position="after">
<field name="sale_promotion_id"/>
</xpath>
<xpath expr="/form/sheet/notebook/page/field[@name='order_line']/tree/field[@name='name']" position="after">
<field name="is_promotion_line" invisible="1"/>
</xpath>
</field>
</record>
</data>
</odoo>