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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
|
-
In order to test the threshold value feature, I will create different products
with different rules and test the behavior
-
<---------------- Defining data ---------------->
-
<---------------- Defining supplier ---------------->
-
I create a supplier
-
!record {model: res.partner, id: supplier1}:
name: Supplier 1
supplier: True
-
I create an address for Supplier 1
-
!record {model: res.partner.address, id: addr_supplier1}:
name: Supplier 1
partner_id: supplier1
-
<---------------- Defining product categories ---------------->
-
I create cat1
-
!record {model: product.category, id: cat1}:
name: Categ1
-
I create cat2
-
!record {model: product.category, id: cat2}:
name: Categ2
-
<---------------- Defining products ---------------->
-
I create product1
-
!record {model: product.product, id: product1}:
categ_id: product.cat0
cost_method: standard
mes_type: fixed
name: Product 1
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
-
I create product2
-
!record {model: product.product, id: product2}:
categ_id: product.cat0
cost_method: standard
mes_type: fixed
name: Product 2
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
-
I create product3
-
!record {model: product.product, id: product3}:
categ_id: product.cat0
cost_method: standard
mes_type: fixed
name: Product 3
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
-
I create product4
-
!record {model: product.product, id: product4}:
categ_id: product.cat0
cost_method: standard
mes_type: fixed
name: Product 4
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
-
I create product5
-
!record {model: product.product, id: product5}:
categ_id: product.cat0
cost_method: standard
mes_type: fixed
name: Product 5
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
-
I create product6
-
!record {model: product.product, id: product6}:
categ_id: product.cat0
cost_method: standard
mes_type: fixed
name: Product 6
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
-
I create product7
-
!record {model: product.product, id: product7}:
categ_id: product.cat0
cost_method: standard
mes_type: fixed
name: Product 7
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
-
I create product8
-
!record {model: product.product, id: product8}:
categ_id: product.cat0
cost_method: standard
mes_type: fixed
name: Product 8
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
seller_ids:
- sequence: 10
min_qty: 0.00
name: supplier1
delay: 30
-
I create product9
-
!record {model: product.product, id: product9}:
categ_id: cat1
cost_method: standard
mes_type: fixed
name: Product 9
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
-
I create product10
-
!record {model: product.product, id: product10}:
categ_id: cat1
cost_method: standard
mes_type: fixed
name: Product 10
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
-
I create product11
-
!record {model: product.product, id: product11}:
categ_id: cat2
cost_method: standard
mes_type: fixed
name: Product 11
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
-
I create product12
-
!record {model: product.product, id: product12}:
categ_id: cat2
cost_method: standard
mes_type: fixed
name: Product 12
price_margin: 2.0
procure_method: make_to_stock
property_stock_inventory: stock.location_inventory
property_stock_procurement: stock.location_procurement
property_stock_production: stock.location_production
seller_delay: '1'
standard_price: 100.0
supply_method: buy
type: product
uom_id: product.product_uom_unit
uom_po_id: product.product_uom_unit
volume : 0.0
warranty: 0.0
weight: 0.0
weight_net: 0.0
reviewed_consumption: 45
-
I create a stock move for product1 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc1}:
product_id: product1
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 1
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc1')], context=context)
self.action_done(cr, uid, [ref('sm_amc1')], context=context)
-
I create a stock move for product2 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc2}:
product_id: product2
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 2
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc2')], context=context)
self.action_done(cr, uid, [ref('sm_amc2')], context=context)
-
I create a stock move for product3 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc3}:
product_id: product3
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 3
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc3')], context=context)
self.action_done(cr, uid, [ref('sm_amc3')], context=context)
-
I create a stock move for product4 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc4}:
product_id: product4
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 4
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc4')], context=context)
self.action_done(cr, uid, [ref('sm_amc4')], context=context)
-
I create a stock move for product5 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc5}:
product_id: product5
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 5
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc5')], context=context)
self.action_done(cr, uid, [ref('sm_amc5')], context=context)
-
I create a stock move for product6 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc6}:
product_id: product6
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 6
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc6')], context=context)
self.action_done(cr, uid, [ref('sm_amc6')], context=context)
-
I create a stock move for product7 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc7}:
product_id: product7
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 7
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc7')], context=context)
self.action_done(cr, uid, [ref('sm_amc7')], context=context)
-
I create a stock move for product8 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc8}:
product_id: product8
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 8
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc8')], context=context)
self.action_done(cr, uid, [ref('sm_amc8')], context=context)
-
I create a stock move for product9 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc9}:
product_id: product9
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 9
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc9')], context=context)
self.action_done(cr, uid, [ref('sm_amc9')], context=context)
-
I create a stock move for product10 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc10}:
product_id: product10
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 10
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc10')], context=context)
self.action_done(cr, uid, [ref('sm_amc10')], context=context)
-
I create a stock move for product11 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc11}:
product_id: product11
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 11
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc11')], context=context)
self.action_done(cr, uid, [ref('sm_amc11')], context=context)
-
I create a stock move for product12 to have an AMC different than 0.00
-
!record {model: stock.move, id: sm_amc12}:
product_id: product12
product_uom: product.product_uom_unit
date_expected: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
product_qty: 50.00
location_id: stock.stock_location_stock
location_dest_id: stock.stock_location_customers
reason_type_id: reason_types_moves.reason_type_deliver_partner
type: out
name: AMC for product 12
-
I confirm the stock move
-
!python {model: stock.move}: |
self.action_confirm(cr, uid, [ref('sm_amc12')], context=context)
self.action_done(cr, uid, [ref('sm_amc12')], context=context)
-
I create an inventory
-
!record {model: stock.inventory, id: inv1}:
company_id: base.main_company
date: !eval time.strftime('%Y-%m-%d %H:%M:%S')
date_done: !eval time.strftime('%Y-%m-%d %H:%M:%S')
inventory_line_id:
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product1
product_qty: 100.0
product_uom: product.product_uom_unit
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product2
product_qty: 170.0
product_uom: product.product_uom_unit
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product3
product_qty: 300.0
product_uom: product.product_uom_unit
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product4
product_qty: 200.00
product_uom: product.product_uom_unit
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product5
product_qty: 100.00
product_uom: product.product_uom_unit
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product6
product_qty: 200.0
product_uom: product.product_uom_unit
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product7
product_qty: 300.0
product_uom: product.product_uom_unit
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product8
product_qty: 100.0
product_uom: product.product_uom_unit
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product9
product_qty: 100.0
product_uom: product.product_uom_unit
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product10
product_qty: 300.0
product_uom: product.product_uom_unit
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product11
product_qty: 100.0
product_uom: product.product_uom_unit
- company_id: base.main_company
location_id: stock.stock_location_stock
product_id: product12
product_qty: 300.0
product_uom: product.product_uom_unit
name: Physical inventory
state: draft
-
I confirm the Inventory
-
!python {model: stock.inventory}: |
self.action_confirm(cr,uid,[ref('inv1')])
self.action_done(cr,uid,[ref('inv1')])
|