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.
20 lines
960 B
20 lines
960 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Used to set the dealer's price and quantity-->
|
|
<record id="product_normal_form_view" model="ir.ui.view">
|
|
<field name="name">product.product.view.form.inherit.customers.dealers.quantity</field>
|
|
<field name="model">product.product</field>
|
|
<field name="inherit_id" ref="product.product_normal_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='optional_product_ids']"
|
|
position="after">
|
|
<div class="o_horizontal_separator mt-4 mb-3 text-uppercase fw-bolder small">
|
|
Dealers
|
|
</div>
|
|
<br/>
|
|
<field name="price" string="Dealers Price" widget="monetary" options="{'currency_field': 'cost_currency_id'}"/>
|
|
<field name="minimum_quantity" string="Dealers Min Quantity"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|