blob: 1008bbc1bfc58bede36d61222d2d084f6bcee324 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="product_attribute_category_duration" model="product.attribute.category">
<field name="name">Duration</field>
<field name="sequence">20</field>
</record>
<record id="product.product_attribute_3" model="product.attribute">
<field name="category_id" ref="product_attribute_category_duration"/>
</record>
<record id="product_attribute_category_2" model="product.attribute.category">
<field name="name">Dimensions</field>
<field name="sequence">7</field>
</record>
<record id="product.product_attribute_1" model="product.attribute">
<field name="category_id" ref="product_attribute_category_general_features"/>
</record>
<record id="product.product_attribute_2" model="product.attribute">
<field name="category_id" ref="product_attribute_category_general_features"/>
</record>
<record id="product_attribute_1" model="product.attribute">
<field name="name">Brand</field>
<field name="category_id" ref="product_attribute_category_general_features"/>
</record>
<record id="product_attribute_value_1" model="product.attribute.value">
<field name="name">Apple</field>
<field name="attribute_id" ref="product_attribute_1"/>
</record>
<record id="product_attribute_7" model="product.attribute">
<field name="name">Weight</field>
<field name="category_id" ref="product_attribute_category_2"/>
</record>
<record id="product_attribute_value_7" model="product.attribute.value">
<field name="name">308 g</field>
<field name="attribute_id" ref="product_attribute_7"/>
</record>
<record id="product_attribute_8" model="product.attribute">
<field name="name">Dimensions</field>
<field name="category_id" ref="product_attribute_category_2"/>
</record>
<record id="product_attribute_value_8" model="product.attribute.value">
<field name="name">134.7 x 200 x 7.2 mm</field>
<field name="attribute_id" ref="product_attribute_8"/>
</record>
<record id="product_6_attribute_1_product_template_attribute_line" model="product.template.attribute.line">
<field name="product_tmpl_id" ref="product.product_product_6_product_template"/>
<field name="attribute_id" ref="product_attribute_1"/>
<field name="value_ids" eval="[(6,0,[ref('product_attribute_value_1')])]"/>
</record>
<record id="product_6_attribute_7_product_template_attribute_line" model="product.template.attribute.line">
<field name="product_tmpl_id" ref="product.product_product_6_product_template"/>
<field name="attribute_id" ref="product_attribute_7"/>
<field name="value_ids" eval="[(6,0,[ref('product_attribute_value_7')])]"/>
</record>
<record id="product_6_attribute_8_template_attribute_line" model="product.template.attribute.line">
<field name="product_tmpl_id" ref="product.product_product_6_product_template"/>
<field name="attribute_id" ref="product_attribute_8"/>
<field name="value_ids" eval="[(6,0,[ref('product_attribute_value_8')])]"/>
</record>
</odoo>
|