diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-05-23 14:20:57 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-05-23 14:20:57 +0700 |
| commit | ca3455a3054e2953fb8b274ba5a4e65abcf3d257 (patch) | |
| tree | c3dca3015cfbb4efaf4de4e2463db8fe8bd12d6e /fixco_custom/views/product_product.xml | |
| parent | e38dcc63819f47ce32d52494a6b7277441c6c66a (diff) | |
Note Development
Diffstat (limited to 'fixco_custom/views/product_product.xml')
| -rw-r--r-- | fixco_custom/views/product_product.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/fixco_custom/views/product_product.xml b/fixco_custom/views/product_product.xml new file mode 100644 index 0000000..2db7c31 --- /dev/null +++ b/fixco_custom/views/product_product.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <data> + <record id="product_normal_form_view_inherit" model="ir.ui.view"> + <field name="name">Product Template</field> + <field name="model">product.product</field> + <field name="inherit_id" ref="product.product_normal_form_view"/> + <field name="arch" type="xml"> + <field name="categ_id" position="after"> + <field name="barcode_box" /> + <field name="qty_pcs_box" /> + <field name="qr_code_variant" widget="image" readonly="True"/> + </field> + </field> + </record> + </data> +</odoo> |
