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.
38 lines
1.6 KiB
38 lines
1.6 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Pricelist wizard form View-->
|
|
<record id="pricelist_wizard_view_form" model="ir.ui.view">
|
|
<field name="name">pricelist.wizard.view.form</field>
|
|
<field name="model">pricelist.wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<sheet>
|
|
<h3>
|
|
Select one Pricelist
|
|
</h3>
|
|
<notebook>
|
|
<page string="Pricelists">
|
|
<field name="line_ids">
|
|
<tree>
|
|
<field name="pricelist_id"/>
|
|
<field name="product_id"/>
|
|
<field name="unit_price"/>
|
|
<field name="margin"/>
|
|
<field name="uom_id"/>
|
|
<button name="apply_pricelist"
|
|
string="Apply" type="object"
|
|
class="btn-primary"
|
|
data-hotkey="q"/>
|
|
</tree>
|
|
</field>
|
|
</page>
|
|
</notebook>
|
|
<footer>
|
|
<button string="Cancel" special="cancel"
|
|
data-hotkey="z"/>
|
|
</footer>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|