summaryrefslogtreecommitdiff
path: root/addons/purchase_product_matrix/views/purchase_views.xml
diff options
context:
space:
mode:
Diffstat (limited to 'addons/purchase_product_matrix/views/purchase_views.xml')
-rw-r--r--addons/purchase_product_matrix/views/purchase_views.xml39
1 files changed, 39 insertions, 0 deletions
diff --git a/addons/purchase_product_matrix/views/purchase_views.xml b/addons/purchase_product_matrix/views/purchase_views.xml
new file mode 100644
index 00000000..2fe7f6ae
--- /dev/null
+++ b/addons/purchase_product_matrix/views/purchase_views.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<odoo>
+
+ <!-- TODO ensure barcode working with matrix (configurator mobile task ?) -->
+
+ <record id="purchase_order_form_matrix" model="ir.ui.view">
+ <field name="name">purchase.order.form.inherit.matrix</field>
+ <field name="model">purchase.order</field>
+ <field name="inherit_id" ref="purchase.purchase_order_form"/>
+ <field name="arch" type="xml">
+ <xpath expr="//tree/field[@name='product_id']" position="attributes">
+ <attribute name="invisible">1</attribute>
+ </xpath>
+ <xpath expr="//tree/field[@name='product_id']" position="after">
+ <field name="product_template_id"
+ string="Product"
+ attrs="{
+ 'readonly': [('state', 'in', ('purchase', 'to approve','done', 'cancel'))],
+ 'required': [('display_type', '=', False)],
+ }"
+ options="{'no_open': True}"
+ context="{'partner_id': parent.partner_id}"
+ widget="matrix_configurator"/>
+ <field name="product_template_attribute_value_ids" invisible="1" />
+ <field name="product_no_variant_attribute_value_ids" invisible="1" />
+ <field name="is_configurable_product" invisible="1" />
+ </xpath>
+ <field name="partner_id" position="after">
+ <field name="grid" invisible="1"/>
+ <field name="grid_product_tmpl_id" invisible="1"/>
+ <field name="grid_update" invisible="1"/>
+ </field>
+ <xpath expr="//group[@name='other_info']" position="inside">
+ <field name="report_grids" groups="base.group_no_one"/>
+ </xpath>
+ </field>
+ </record>
+
+</odoo>