We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dab80f1 commit f14a3ccCopy full SHA for f14a3cc
z_migration/__manifest__.py
@@ -13,5 +13,6 @@
13
],
14
'data': [
15
'views/agreement_views.xml',
16
+ 'views/product_attribute_views.xml',
17
18
}
z_migration/views/product_attribute_views.xml
@@ -0,0 +1,17 @@
1
+<odoo>
2
+ <!-- Action -->
3
+ <record id="product_template_attribute_line_action" model="ir.actions.act_window">
4
+ <field name="name">Variants</field>
5
+ <field name="res_model">product.template.attribute.line</field>
6
+ <field name="view_type">form</field>
7
+ <field name="view_mode">tree,form</field>
8
+ </record>
9
+
10
+ <!-- Menu -->
11
+ <menuitem
12
+ name="Variants"
+ id="product_template_attribute_line_menu"
+ parent="agreement_legal.agreement_masterdata"
+ sequence="105"
+ action="product_template_attribute_line_action"/>
+</odoo>
0 commit comments