495
by ced
Move less used modules to extra_addons repo |
1 |
<terp>
|
2 |
<data noupdate="1"> |
|
3 |
||
4 |
<record id="product_uom_categ_vol" model="product.uom.categ"> |
|
5 |
<field name="name">LTR</field> |
|
6 |
</record>
|
|
7 |
<record id="product_uom_ltr" model="product.uom"> |
|
8 |
<field name="category_id" ref="product_uom_categ_vol"/> |
|
9 |
<field name="name">LTR</field> |
|
10 |
</record>
|
|
11 |
||
12 |
<record id="product_product_jambon" model="product.product"> |
|
13 |
<field name="supply_method">buy</field> |
|
14 |
<field name="list_price">7.0</field> |
|
15 |
<field name="standard_price">5.0</field> |
|
16 |
<field name="uom_id" ref="product.product_uom_unit"/> |
|
17 |
<field name="uom_po_id" ref="product.product_uom_unit"/> |
|
18 |
<field name="uos_id" ref="product.product_uom_kgm" /> |
|
19 |
<field name="uos_coeff">3</field> |
|
20 |
<field name="name">French cheese Camenbert</field> |
|
21 |
<field name="life_time">15</field> |
|
22 |
<field name="use_time">10</field> |
|
23 |
<field name="removal_time">6</field> |
|
24 |
<field name="alert_time">5</field> |
|
25 |
<field name="default_code">JKB</field> |
|
26 |
<field name="ean13">3307630302014</field> |
|
27 |
<field name="categ_id" search="[]" model="product.category"/> |
|
28 |
</record>
|
|
29 |
<record model="product.packaging"> |
|
30 |
<field name="name">box of 10</field> |
|
31 |
<field name="qty">12</field> |
|
32 |
<field name="ul" ref="product.product_ul_box" /> |
|
33 |
<field name="ul_qty">6</field> |
|
34 |
<field name="rows">4</field> |
|
35 |
<field name="product_id" ref="product_product_jambon" /> |
|
36 |
<field name="ean">12345678901234</field> |
|
37 |
<field name="weight">10</field> |
|
38 |
<field name="weight_ul">240</field> |
|
39 |
</record>
|
|
40 |
||
41 |
<record id="product_product_from" model="product.product"> |
|
42 |
<field name="supply_method">buy</field> |
|
43 |
<field name="list_price">8.0</field> |
|
44 |
<field name="standard_price">6.0</field> |
|
45 |
<field name="uom_id" ref="product.product_uom_unit"/> |
|
46 |
<field name="uom_po_id" ref="product.product_uom_unit"/> |
|
47 |
<field name="uos_id" ref="product.product_uom_kgm" /> |
|
48 |
<field name="uos_coeff">0.5</field> |
|
49 |
<field name="name">Ham</field> |
|
50 |
<field name="life_time">30</field> |
|
51 |
<field name="use_time">25</field> |
|
52 |
<field name="removal_time">20</field> |
|
53 |
<field name="alert_time">19</field> |
|
54 |
<field name="default_code">FKS</field> |
|
55 |
<field name="ean13">3307631101876</field> |
|
56 |
<field name="categ_id" search="[]" model="product.category"/> |
|
57 |
</record>
|
|
58 |
<record model="product.packaging"> |
|
59 |
<field name="name">Box of 5</field> |
|
60 |
<field name="qty">12</field> |
|
61 |
<field name="ul" ref="product.product_ul_box" /> |
|
62 |
<field name="ul_qty">6</field> |
|
63 |
<field name="rows">4</field> |
|
64 |
<field name="product_id" ref="product_product_from" /> |
|
65 |
<field name="ean">12345678901234</field> |
|
66 |
<field name="weight">10</field> |
|
67 |
<field name="weight_ul">240</field> |
|
68 |
</record>
|
|
69 |
||
70 |
<record id="product_product_pain" model="product.product"> |
|
71 |
<field name="supply_method">buy</field> |
|
72 |
<field name="list_price">8.0</field> |
|
73 |
<field name="standard_price">6.0</field> |
|
74 |
<field name="uom_id" ref="product.product_uom_unit"/> |
|
75 |
<field name="uom_po_id" ref="product.product_uom_unit"/> |
|
770
by Fabien Pinckaers
Bugfixes |
76 |
<field name="uos_id" ref="product.product_uom_kgm" /> |
495
by ced
Move less used modules to extra_addons repo |
77 |
<field name="uos_coeff">0.5</field> |
78 |
<field name="name">Bread</field> |
|
79 |
<field name="life_time">30</field> |
|
80 |
<field name="use_time">25</field> |
|
81 |
<field name="removal_time">20</field> |
|
82 |
<field name="alert_time">19</field> |
|
83 |
<field name="default_code">PKB</field> |
|
84 |
<field name="ean13">3307631102323</field> |
|
85 |
<field name="categ_id" search="[]" model="product.category"/> |
|
86 |
</record>
|
|
87 |
<record model="product.packaging"> |
|
88 |
<field name="name">Bag of 2</field> |
|
89 |
<field name="qty">6</field> |
|
90 |
<field name="ul" ref="product.product_ul_box" /> |
|
91 |
<field name="ul_qty">6</field> |
|
92 |
<field name="rows">4</field> |
|
93 |
<field name="product_id" ref="product_product_pain" /> |
|
94 |
<field name="ean">12345678901234</field> |
|
95 |
<field name="weight">10</field> |
|
96 |
<field name="weight_ul">240</field> |
|
97 |
</record>
|
|
98 |
||
99 |
<record id="product_product_lait" model="product.product"> |
|
100 |
<field name="supply_method">buy</field> |
|
101 |
<field name="list_price">8.0</field> |
|
102 |
<field name="standard_price">6.0</field> |
|
103 |
<field name="uom_id" ref="product.product_uom_unit"/> |
|
104 |
<field name="uom_po_id" ref="product.product_uom_unit"/> |
|
105 |
<field name="uos_id" ref="product_uom_ltr" /> |
|
106 |
<field name="uos_coeff">0.5</field> |
|
107 |
<field name="name">Cow milk</field> |
|
108 |
<field name="life_time">30</field> |
|
109 |
<field name="use_time">25</field> |
|
110 |
<field name="removal_time">20</field> |
|
111 |
<field name="alert_time">19</field> |
|
112 |
<field name="default_code">LEX</field> |
|
113 |
<field name="ean13">3307630302045</field> |
|
114 |
<field name="categ_id" search="[]" model="product.category"/> |
|
115 |
</record>
|
|
116 |
<record model="product.packaging"> |
|
117 |
<field name="name">Boxes of 1liter</field> |
|
118 |
<field name="qty">4</field> |
|
119 |
<field name="ul" ref="product.product_ul_box" /> |
|
120 |
<field name="ul_qty">6</field> |
|
121 |
<field name="rows">4</field> |
|
122 |
<field name="product_id" ref="product_product_lait" /> |
|
123 |
<field name="ean">12345678901234</field> |
|
124 |
<field name="weight">10</field> |
|
125 |
<field name="weight_ul">240</field> |
|
126 |
</record>
|
|
127 |
</data>
|
|
128 |
</terp>
|