Before Width: | Height: | Size: 153 KiB |
Before Width: | Height: | Size: 365 KiB |
Before Width: | Height: | Size: 192 KiB |
Before Width: | Height: | Size: 455 KiB |
Before Width: | Height: | Size: 338 KiB |
After Width: | Height: | Size: 77 KiB |
Before Width: | Height: | Size: 266 KiB |
After Width: | Height: | Size: 156 KiB |
After Width: | Height: | Size: 360 KiB |
After Width: | Height: | Size: 197 KiB |
After Width: | Height: | Size: 168 KiB |
After Width: | Height: | Size: 139 KiB |
After Width: | Height: | Size: 358 KiB |
@ -1,14 +1,19 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||
<odoo> |
<odoo> |
||||
<!--Inherit product.product view form to add field--> |
<!--Inherit product.product view form to add field--> |
||||
<record id="product_normal_form_view" model="ir.ui.view"> |
<record id="product_normal_form_view" model="ir.ui.view"> |
||||
<field name="name">product.product.view.form.inherit.low.stocks.product.alert</field> |
<field name="name">product.product.view.form.inherit.low.stocks.product.alert</field> |
||||
<field name="model">product.product</field> |
<field name="model">product.product</field> |
||||
<field name="inherit_id" ref="product.product_normal_form_view" /> |
<field name="inherit_id" ref="product.product_normal_form_view"/> |
||||
<field name="arch" type="xml"> |
<field name="arch" type="xml"> |
||||
<field name="pos_categ_id" position="after"> |
<field name="pos_categ_id" position="after"> |
||||
<field name="alert_tag" /> |
<field name="alert_tag"/> |
||||
</field> |
</field> |
||||
|
<xpath expr="//group[@name='group_lots_and_weight']" |
||||
|
position="inside"> |
||||
|
<field name="is_low_stock_alert" invisible="1"/> |
||||
|
<field name="min_low_stock_alert" attrs="{'invisible':[('is_low_stock_alert','=', False)]}"/> |
||||
|
</xpath> |
||||
</field> |
</field> |
||||
</record> |
</record> |
||||
</odoo> |
</odoo> |
||||
|