blob: eac42a45cfb659a6bb9276b76f93b5159c484889 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<odoo>
<record id="promotion_product_tree" model="ir.ui.view">
<field name="name">Promotion Product Tree</field>
<field name="model">promotion.product</field>
<field name="arch" type="xml">
<tree>
<field name="product_id" />
<field name="qty" />
</tree>
</field>
</record>
<record id="promotion_product_form" model="ir.ui.view">
<field name="name">Promotion Product Form</field>
<field name="model">promotion.product</field>
<field name="arch" type="xml">
<form>
<sheet>
<group>
<group>
<field name="program_line_id" />
<field name="product_id" />
<field name="qty" />
</group>
</group>
</sheet>
</form>
</field>
</record>
<record id="promotion_product_action" model="ir.actions.act_window">
<field name="name">Promotion Product</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">promotion.product</field>
<field name="view_mode">tree,form</field>
</record>
<menuitem
id="menu_promotion_product"
name="Product"
parent="indoteknik_custom.menu_promotion_program_parent"
sequence="3"
action="promotion_product_action"
/>
</odoo>
|