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.
21 lines
1.0 KiB
21 lines
1.0 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inherits sale order form view to add the pricelist button to the order lines -->
|
|
<record id="view_order_form" model="ir.ui.view">
|
|
<field name="name">sale.order.view.form.inherit.multi.pricelist</field>
|
|
<field name="model">sale.order</field>
|
|
<field name="inherit_id" ref="sale.view_order_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="/form/sheet/notebook/page/field[@name='order_line']/list/field[@name='price_subtotal']"
|
|
position="after">
|
|
<button name="apply_pricelist" type="object"
|
|
string="Apply Pricelist"
|
|
invisible="not pricelist_visibility">
|
|
<i class="fa fa-fw o_button_icon fa-save"/>
|
|
</button>
|
|
<field name="applied_pricelist_id" readonly="1"/>
|
|
<field name="pricelist_visibility" column_invisible="1"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|