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.
35 lines
2.2 KiB
35 lines
2.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record model="ir.ui.view" id="view_product_form_inherit_">
|
|
<field name="name">view.product.form.inherit</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[@name='group_standard_price']" position='replace'>
|
|
<group name="group_standard_price">
|
|
<label for="list_price"/>
|
|
<div name="pricing">
|
|
<field name="list_price" class="oe_inline" widget='monetary'
|
|
options="{'currency_field': 'currency_id', 'field_digits': True}"/>
|
|
</div>
|
|
<label for="standard_price" attrs="{'invisible': [('product_variant_count', '>', 1), ('is_product_variant', '=', False)]}"/>
|
|
<div name="standard_price_uom" style="display: flex;" attrs="{'invisible': [('product_variant_count', '>', 1), ('is_product_variant', '=', False)]}">
|
|
<field name="standard_price" class="oe_inline" widget='monetary' options="{'currency_field': 'cost_currency_id', 'field_digits': True}"/>
|
|
<div style="margin-left:10px;">
|
|
<span groups="uom.group_uom">per
|
|
<field name="uom_name" class="oe_inline"/>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<field name="categ_id" string="Product Category"/>
|
|
<field name="product_tag_ids" widget="many2many_tags" options="{'color_field': 'color'}"/>
|
|
<field name="company_id" groups="base.group_multi_company"
|
|
options="{'no_create': True}"/>
|
|
<field name="currency_id" invisible="1"/>
|
|
<field name="cost_currency_id" invisible="1"/>
|
|
<field name="product_variant_id" invisible="1"/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|