odoo-addon-shopfloor 16.0.2.12.0.1__py3-none-any.whl → 18.0.0.1.0.15__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. odoo/addons/shopfloor/README.rst +79 -52
  2. odoo/addons/shopfloor/__manifest__.py +11 -4
  3. odoo/addons/shopfloor/actions/__init__.py +0 -1
  4. odoo/addons/shopfloor/actions/change_package_lot.py +4 -6
  5. odoo/addons/shopfloor/actions/data.py +7 -6
  6. odoo/addons/shopfloor/actions/inventory.py +1 -1
  7. odoo/addons/shopfloor/actions/message.py +1 -1
  8. odoo/addons/shopfloor/actions/move_line_search.py +1 -1
  9. odoo/addons/shopfloor/actions/search.py +8 -32
  10. odoo/addons/shopfloor/actions/stock.py +7 -6
  11. odoo/addons/shopfloor/i18n/ca.po +0 -5
  12. odoo/addons/shopfloor/i18n/de.po +0 -5
  13. odoo/addons/shopfloor/i18n/es_AR.po +0 -5
  14. odoo/addons/shopfloor/i18n/it.po +2 -8
  15. odoo/addons/shopfloor/i18n/pt_BR.po +0 -5
  16. odoo/addons/shopfloor/i18n/shopfloor.pot +7 -194
  17. odoo/addons/shopfloor/models/stock_location.py +5 -5
  18. odoo/addons/shopfloor/models/stock_move.py +24 -7
  19. odoo/addons/shopfloor/models/stock_move_line.py +29 -82
  20. odoo/addons/shopfloor/models/stock_picking.py +8 -6
  21. odoo/addons/shopfloor/models/stock_quant_package.py +2 -2
  22. odoo/addons/shopfloor/readme/CONTRIBUTORS.md +17 -0
  23. odoo/addons/shopfloor/readme/CREDITS.md +5 -0
  24. odoo/addons/shopfloor/readme/DESCRIPTION.md +37 -0
  25. odoo/addons/shopfloor/readme/{HISTORY.rst → HISTORY.md} +1 -2
  26. odoo/addons/shopfloor/readme/ROADMAP.md +10 -0
  27. odoo/addons/shopfloor/readme/USAGE.md +6 -0
  28. odoo/addons/shopfloor/services/checkout.py +9 -9
  29. odoo/addons/shopfloor/services/cluster_picking.py +2 -2
  30. odoo/addons/shopfloor/services/delivery.py +4 -6
  31. odoo/addons/shopfloor/services/forms/picking_form.py +4 -1
  32. odoo/addons/shopfloor/services/location_content_transfer.py +1 -1
  33. odoo/addons/shopfloor/services/single_pack_transfer.py +1 -1
  34. odoo/addons/shopfloor/services/zone_picking.py +5 -9
  35. odoo/addons/shopfloor/static/description/index.html +41 -18
  36. odoo/addons/shopfloor/tests/__init__.py +74 -73
  37. odoo/addons/shopfloor/tests/common.py +9 -9
  38. odoo/addons/shopfloor/tests/test_actions_change_package_lot.py +104 -71
  39. odoo/addons/shopfloor/tests/test_actions_data.py +17 -21
  40. odoo/addons/shopfloor/tests/test_actions_data_base.py +9 -3
  41. odoo/addons/shopfloor/tests/test_actions_data_detail.py +17 -19
  42. odoo/addons/shopfloor/tests/test_actions_search.py +2 -1
  43. odoo/addons/shopfloor/tests/test_actions_stock.py +0 -1
  44. odoo/addons/shopfloor/tests/test_checkout_auto_post.py +3 -3
  45. odoo/addons/shopfloor/tests/test_checkout_base.py +1 -1
  46. odoo/addons/shopfloor/tests/test_checkout_list_delivery_packaging.py +1 -1
  47. odoo/addons/shopfloor/tests/test_checkout_list_package.py +4 -4
  48. odoo/addons/shopfloor/tests/test_checkout_new_package.py +3 -3
  49. odoo/addons/shopfloor/tests/test_checkout_no_package.py +3 -3
  50. odoo/addons/shopfloor/tests/test_checkout_scan_dest_location.py +1 -1
  51. odoo/addons/shopfloor/tests/test_checkout_scan_package_action.py +11 -11
  52. odoo/addons/shopfloor/tests/test_checkout_select_package_base.py +1 -1
  53. odoo/addons/shopfloor/tests/test_checkout_set_qty.py +17 -17
  54. odoo/addons/shopfloor/tests/test_checkout_summary.py +2 -2
  55. odoo/addons/shopfloor/tests/test_cluster_picking_base.py +1 -1
  56. odoo/addons/shopfloor/tests/test_cluster_picking_batch.py +2 -2
  57. odoo/addons/shopfloor/tests/test_cluster_picking_change_pack_lot.py +1 -1
  58. odoo/addons/shopfloor/tests/test_cluster_picking_is_zero.py +1 -1
  59. odoo/addons/shopfloor/tests/test_cluster_picking_scan_destination.py +17 -19
  60. odoo/addons/shopfloor/tests/test_cluster_picking_scan_line_no_prefill_qty.py +1 -1
  61. odoo/addons/shopfloor/tests/test_cluster_picking_stock_issue.py +5 -5
  62. odoo/addons/shopfloor/tests/test_delivery_base.py +4 -6
  63. odoo/addons/shopfloor/tests/test_delivery_done.py +1 -1
  64. odoo/addons/shopfloor/tests/test_delivery_reset_qty_done_line.py +1 -1
  65. odoo/addons/shopfloor/tests/test_delivery_reset_qty_done_pack.py +1 -1
  66. odoo/addons/shopfloor/tests/test_delivery_scan_deliver.py +6 -6
  67. odoo/addons/shopfloor/tests/test_location_content_transfer_base.py +2 -2
  68. odoo/addons/shopfloor/tests/test_location_content_transfer_mix.py +8 -8
  69. odoo/addons/shopfloor/tests/test_location_content_transfer_set_destination_package_or_line.py +41 -41
  70. odoo/addons/shopfloor/tests/test_location_content_transfer_single.py +3 -3
  71. odoo/addons/shopfloor/tests/test_menu_base.py +4 -4
  72. odoo/addons/shopfloor/tests/test_move_action_assign.py +19 -4
  73. odoo/addons/shopfloor/tests/test_single_pack_transfer.py +3 -3
  74. odoo/addons/shopfloor/tests/test_stock_split.py +77 -17
  75. odoo/addons/shopfloor/tests/test_zone_picking_base.py +5 -5
  76. odoo/addons/shopfloor/tests/test_zone_picking_change_pack_lot.py +2 -2
  77. odoo/addons/shopfloor/tests/test_zone_picking_complete_mix_pack_flux.py +2 -2
  78. odoo/addons/shopfloor/tests/test_zone_picking_require_destination_package.py +3 -3
  79. odoo/addons/shopfloor/tests/test_zone_picking_select_line.py +4 -4
  80. odoo/addons/shopfloor/tests/test_zone_picking_set_line_destination.py +29 -29
  81. odoo/addons/shopfloor/tests/test_zone_picking_set_line_destination_package_not_allowed.py +2 -2
  82. odoo/addons/shopfloor/tests/test_zone_picking_set_line_destination_pick_pack.py +12 -12
  83. odoo/addons/shopfloor/tests/test_zone_picking_start.py +1 -1
  84. odoo/addons/shopfloor/tests/test_zone_picking_unload_all.py +12 -12
  85. odoo/addons/shopfloor/tests/test_zone_picking_unload_buffer_lines.py +4 -4
  86. odoo/addons/shopfloor/tests/test_zone_picking_unload_set_destination.py +10 -10
  87. odoo/addons/shopfloor/tests/test_zone_picking_unload_single.py +3 -3
  88. odoo/addons/shopfloor/views/shopfloor_menu.xml +33 -102
  89. odoo/addons/shopfloor/views/stock_move_line.xml +2 -2
  90. odoo/addons/shopfloor/views/stock_picking_type.xml +1 -1
  91. odoo_addon_shopfloor-18.0.0.1.0.15.dist-info/METADATA +222 -0
  92. {odoo_addon_shopfloor-16.0.2.12.0.1.dist-info → odoo_addon_shopfloor-18.0.0.1.0.15.dist-info}/RECORD +94 -98
  93. {odoo_addon_shopfloor-16.0.2.12.0.1.dist-info → odoo_addon_shopfloor-18.0.0.1.0.15.dist-info}/WHEEL +1 -1
  94. odoo_addon_shopfloor-18.0.0.1.0.15.dist-info/top_level.txt +1 -0
  95. odoo/addons/shopfloor/actions/barcode_parser.py +0 -44
  96. odoo/addons/shopfloor/migrations/16.0.2.0.0/post-migration.py +0 -41
  97. odoo/addons/shopfloor/migrations/16.0.2.4.2/post-init_search_move_line_options.py +0 -33
  98. odoo/addons/shopfloor/migrations/16.0.2.4.2/post-migration.py +0 -29
  99. odoo/addons/shopfloor/readme/CONTRIBUTORS.rst +0 -18
  100. odoo/addons/shopfloor/readme/CREDITS.rst +0 -5
  101. odoo/addons/shopfloor/readme/DESCRIPTION.rst +0 -17
  102. odoo/addons/shopfloor/readme/ROADMAP.rst +0 -4
  103. odoo/addons/shopfloor/readme/USAGE.rst +0 -6
  104. odoo_addon_shopfloor-16.0.2.12.0.1.dist-info/METADATA +0 -193
  105. odoo_addon_shopfloor-16.0.2.12.0.1.dist-info/top_level.txt +0 -1
@@ -4,7 +4,7 @@
4
4
  #
5
5
  msgid ""
6
6
  msgstr ""
7
- "Project-Id-Version: Odoo Server 16.0\n"
7
+ "Project-Id-Version: Odoo Server 18.0\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
9
  "Last-Translator: \n"
10
10
  "Language-Team: \n"
@@ -88,7 +88,6 @@ msgstr ""
88
88
  #. module: shopfloor
89
89
  #. odoo-python
90
90
  #: code:addons/shopfloor/actions/message.py:0
91
- #, python-format
92
91
  msgid ""
93
92
  "%(message_code)s not found in the current transfer or already in a package."
94
93
  msgstr ""
@@ -96,14 +95,12 @@ msgstr ""
96
95
  #. module: shopfloor
97
96
  #. odoo-python
98
97
  #: code:addons/shopfloor/actions/message.py:0
99
- #, python-format
100
98
  msgid "%(qty)s %(product_name)s put in %(package_name)s"
101
99
  msgstr ""
102
100
 
103
101
  #. module: shopfloor
104
102
  #. odoo-python
105
103
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
106
- #, python-format
107
104
  msgid ""
108
105
  "'No destination package required' is incompatible with 'Pick and pack at the"
109
106
  " same time','Unload package at destination' and 'Multiple moves same "
@@ -113,7 +110,6 @@ msgstr ""
113
110
  #. module: shopfloor
114
111
  #. odoo-python
115
112
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
116
- #, python-format
117
113
  msgid ""
118
114
  "'Pick and pack at the same time' is incompatible with 'Multiple moves same "
119
115
  "destination package'."
@@ -122,7 +118,6 @@ msgstr ""
122
118
  #. module: shopfloor
123
119
  #. odoo-python
124
120
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
125
- #, python-format
126
121
  msgid ""
127
122
  "'Pick and pack at the same time' is incompatible with 'Unload package at "
128
123
  "destination'."
@@ -162,7 +157,6 @@ msgstr ""
162
157
  #. module: shopfloor
163
158
  #. odoo-python
164
159
  #: code:addons/shopfloor/actions/message.py:0
165
- #, python-format
166
160
  msgid "A destination package is required."
167
161
  msgstr ""
168
162
 
@@ -184,7 +178,6 @@ msgstr ""
184
178
  #. module: shopfloor
185
179
  #. odoo-python
186
180
  #: code:addons/shopfloor/actions/message.py:0
187
- #, python-format
188
181
  msgid "All packages processed."
189
182
  msgstr ""
190
183
 
@@ -241,7 +234,6 @@ msgstr ""
241
234
  #. module: shopfloor
242
235
  #. odoo-python
243
236
  #: code:addons/shopfloor/actions/message.py:0
244
- #, python-format
245
237
  msgid "Are you sure?"
246
238
  msgstr ""
247
239
 
@@ -258,14 +250,12 @@ msgstr ""
258
250
  #. module: shopfloor
259
251
  #. odoo-python
260
252
  #: code:addons/shopfloor/actions/message.py:0
261
- #, python-format
262
253
  msgid "Barcode does not match with {}."
263
254
  msgstr ""
264
255
 
265
256
  #. module: shopfloor
266
257
  #. odoo-python
267
258
  #: code:addons/shopfloor/actions/message.py:0
268
- #, python-format
269
259
  msgid "Barcode not found"
270
260
  msgstr ""
271
261
 
@@ -277,21 +267,18 @@ msgstr ""
277
267
  #. module: shopfloor
278
268
  #. odoo-python
279
269
  #: code:addons/shopfloor/actions/message.py:0
280
- #, python-format
281
270
  msgid "Batch Transfer complete"
282
271
  msgstr ""
283
272
 
284
273
  #. module: shopfloor
285
274
  #. odoo-python
286
275
  #: code:addons/shopfloor/actions/message.py:0
287
- #, python-format
288
276
  msgid "Batch Transfer line done"
289
277
  msgstr ""
290
278
 
291
279
  #. module: shopfloor
292
280
  #. odoo-python
293
281
  #: code:addons/shopfloor/actions/message.py:0
294
- #, python-format
295
282
  msgid "Bin %s doesn't exist"
296
283
  msgstr ""
297
284
 
@@ -303,14 +290,12 @@ msgstr ""
303
290
  #. module: shopfloor
304
291
  #. odoo-python
305
292
  #: code:addons/shopfloor/actions/message.py:0
306
- #, python-format
307
293
  msgid "Canceled, you can scan a new pack."
308
294
  msgstr ""
309
295
 
310
296
  #. module: shopfloor
311
297
  #. odoo-python
312
298
  #: code:addons/shopfloor/actions/message.py:0
313
- #, python-format
314
299
  msgid "Cannot change to lot {} which is entirely picked."
315
300
  msgstr ""
316
301
 
@@ -341,35 +326,30 @@ msgstr ""
341
326
  #. module: shopfloor
342
327
  #. odoo-python
343
328
  #: code:addons/shopfloor/actions/message.py:0
344
- #, python-format
345
329
  msgid "Confirm location change from %(location_from)s to %(location_to)s?"
346
330
  msgstr ""
347
331
 
348
332
  #. module: shopfloor
349
333
  #. odoo-python
350
334
  #: code:addons/shopfloor/actions/message.py:0
351
- #, python-format
352
335
  msgid "Content transfer to {} completed"
353
336
  msgstr ""
354
337
 
355
338
  #. module: shopfloor
356
339
  #. odoo-python
357
340
  #: code:addons/shopfloor/actions/message.py:0
358
- #, python-format
359
341
  msgid "Content transferred from %(location_name)s to %(location_dest_name)s."
360
342
  msgstr ""
361
343
 
362
344
  #. module: shopfloor
363
345
  #. odoo-python
364
346
  #: code:addons/shopfloor/actions/message.py:0
365
- #, python-format
366
347
  msgid "Create new PACK {}? Scan it again to confirm."
367
348
  msgstr ""
368
349
 
369
350
  #. module: shopfloor
370
351
  #. odoo-python
371
352
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
372
- #, python-format
373
353
  msgid "Creation of moves is not allowed for menu {}."
374
354
  msgstr ""
375
355
 
@@ -391,14 +371,12 @@ msgstr ""
391
371
  #. module: shopfloor
392
372
  #. odoo-python
393
373
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
394
- #, python-format
395
374
  msgid "Custom sort key code is only allowed when 'Custom code' is selected."
396
375
  msgstr ""
397
376
 
398
377
  #. module: shopfloor
399
378
  #. odoo-python
400
379
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
401
- #, python-format
402
380
  msgid "Custom sort key code is required when 'Custom code' is selected."
403
381
  msgstr ""
404
382
 
@@ -417,7 +395,6 @@ msgstr ""
417
395
  #. module: shopfloor
418
396
  #. odoo-python
419
397
  #: code:addons/shopfloor/actions/message.py:0
420
- #, python-format
421
398
  msgid ""
422
399
  "Delivery package type scanned: %(name)s. Scan again to place all goods in "
423
400
  "the same package."
@@ -474,7 +451,6 @@ msgstr ""
474
451
  #. module: shopfloor
475
452
  #. odoo-python
476
453
  #: code:addons/shopfloor/actions/message.py:0
477
- #, python-format
478
454
  msgid "Goods packed into {0.name}"
479
455
  msgstr ""
480
456
 
@@ -518,7 +494,6 @@ msgstr ""
518
494
  #. module: shopfloor
519
495
  #. odoo-python
520
496
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
521
- #, python-format
522
497
  msgid "Ignoring not found putaway is not allowed for menu {}."
523
498
  msgstr ""
524
499
 
@@ -528,6 +503,7 @@ msgid "Inventory Locations"
528
503
  msgstr ""
529
504
 
530
505
  #. module: shopfloor
506
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__is_shopfloor_created
531
507
  #: model:ir.model.fields,field_description:shopfloor.field_stock_picking__is_shopfloor_created
532
508
  msgid "Is Shopfloor Created"
533
509
  msgstr ""
@@ -535,7 +511,6 @@ msgstr ""
535
511
  #. module: shopfloor
536
512
  #. odoo-python
537
513
  #: code:addons/shopfloor/actions/completion_info.py:0
538
- #, python-format
539
514
  msgid ""
540
515
  "Last operation of transfer %(picking_names)s. Next operation "
541
516
  "(%(next_picking_names)s) is ready to proceed."
@@ -544,14 +519,12 @@ msgstr ""
544
519
  #. module: shopfloor
545
520
  #. odoo-python
546
521
  #: code:addons/shopfloor/services/checkout.py:0
547
- #, python-format
548
522
  msgid "Line cancelled"
549
523
  msgstr ""
550
524
 
551
525
  #. module: shopfloor
552
526
  #. odoo-python
553
527
  #: code:addons/shopfloor/actions/message.py:0
554
- #, python-format
555
528
  msgid "Lines have different destination location."
556
529
  msgstr ""
557
530
 
@@ -563,7 +536,6 @@ msgstr ""
563
536
  #. module: shopfloor
564
537
  #. odoo-python
565
538
  #: code:addons/shopfloor/actions/message.py:0
566
- #, python-format
567
539
  msgid "Location %s doesn't contain any package."
568
540
  msgstr ""
569
541
 
@@ -581,56 +553,48 @@ msgstr ""
581
553
  #. module: shopfloor
582
554
  #. odoo-python
583
555
  #: code:addons/shopfloor/actions/message.py:0
584
- #, python-format
585
556
  msgid "Location empty. Try scanning a package"
586
557
  msgstr ""
587
558
 
588
559
  #. module: shopfloor
589
560
  #. odoo-python
590
561
  #: code:addons/shopfloor/actions/message.py:0
591
- #, python-format
592
562
  msgid "Location not allowed here."
593
563
  msgstr ""
594
564
 
595
565
  #. module: shopfloor
596
566
  #. odoo-python
597
567
  #: code:addons/shopfloor/actions/message.py:0
598
- #, python-format
599
568
  msgid "Location {} empty"
600
569
  msgstr ""
601
570
 
602
571
  #. module: shopfloor
603
572
  #. odoo-python
604
573
  #: code:addons/shopfloor/actions/message.py:0
605
- #, python-format
606
574
  msgid "Lot %(lot_name)s not found in location %(location_name)s"
607
575
  msgstr ""
608
576
 
609
577
  #. module: shopfloor
610
578
  #. odoo-python
611
579
  #: code:addons/shopfloor/actions/message.py:0
612
- #, python-format
613
580
  msgid "Lot %(lot_name)s not found in transfer %(picking_name)s"
614
581
  msgstr ""
615
582
 
616
583
  #. module: shopfloor
617
584
  #. odoo-python
618
585
  #: code:addons/shopfloor/actions/message.py:0
619
- #, python-format
620
586
  msgid "Lot %(old_lot_name)s replaced by lot %(new_lot_name)s."
621
587
  msgstr ""
622
588
 
623
589
  #. module: shopfloor
624
590
  #. odoo-python
625
591
  #: code:addons/shopfloor/actions/message.py:0
626
- #, python-format
627
592
  msgid "Lot changed"
628
593
  msgstr ""
629
594
 
630
595
  #. module: shopfloor
631
596
  #. odoo-python
632
597
  #: code:addons/shopfloor/actions/message.py:0
633
- #, python-format
634
598
  msgid ""
635
599
  "Lot {lot} for product {product} found in multiple locations. Scan your "
636
600
  "location first."
@@ -639,21 +603,18 @@ msgstr ""
639
603
  #. module: shopfloor
640
604
  #. odoo-python
641
605
  #: code:addons/shopfloor/services/delivery.py:0
642
- #, python-format
643
606
  msgid "Lot {} belongs to a picking without a valid state."
644
607
  msgstr ""
645
608
 
646
609
  #. module: shopfloor
647
610
  #. odoo-python
648
611
  #: code:addons/shopfloor/actions/message.py:0
649
- #, python-format
650
612
  msgid "Lot {} is for another product."
651
613
  msgstr ""
652
614
 
653
615
  #. module: shopfloor
654
616
  #. odoo-python
655
617
  #: code:addons/shopfloor/actions/inventory.py:0
656
- #, python-format
657
618
  msgid "Lot: "
658
619
  msgstr ""
659
620
 
@@ -665,7 +626,6 @@ msgstr ""
665
626
  #. module: shopfloor
666
627
  #. odoo-python
667
628
  #: code:addons/shopfloor/actions/message.py:0
668
- #, python-format
669
629
  msgid "Missing expiration date."
670
630
  msgstr ""
671
631
 
@@ -698,17 +658,9 @@ msgstr ""
698
658
  #. module: shopfloor
699
659
  #. odoo-python
700
660
  #: code:addons/shopfloor/actions/message.py:0
701
- #, python-format
702
661
  msgid "Move already processed."
703
662
  msgstr ""
704
663
 
705
- #. module: shopfloor
706
- #. odoo-python
707
- #: code:addons/shopfloor/models/stock_move_line.py:0
708
- #, python-format
709
- msgid "Move lines processed have to share the same source location."
710
- msgstr ""
711
-
712
664
  #. module: shopfloor
713
665
  #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__multiple_move_single_pack_is_possible
714
666
  msgid "Multiple Move Single Pack Is Possible"
@@ -717,14 +669,12 @@ msgstr ""
717
669
  #. module: shopfloor
718
670
  #. odoo-python
719
671
  #: code:addons/shopfloor/services/checkout.py:0
720
- #, python-format
721
672
  msgid "Negative quantity not allowed."
722
673
  msgstr ""
723
674
 
724
675
  #. module: shopfloor
725
676
  #. odoo-python
726
677
  #: code:addons/shopfloor/actions/message.py:0
727
- #, python-format
728
678
  msgid "New move lines cannot be assigned: canceled."
729
679
  msgstr ""
730
680
 
@@ -736,182 +686,156 @@ msgstr ""
736
686
  #. module: shopfloor
737
687
  #. odoo-python
738
688
  #: code:addons/shopfloor/actions/message.py:0
739
- #, python-format
740
689
  msgid "No available work could be found."
741
690
  msgstr ""
742
691
 
743
692
  #. module: shopfloor
744
693
  #. odoo-python
745
694
  #: code:addons/shopfloor/actions/message.py:0
746
- #, python-format
747
695
  msgid "No delivery package type available."
748
696
  msgstr ""
749
697
 
750
698
  #. module: shopfloor
751
699
  #. odoo-python
752
700
  #: code:addons/shopfloor/actions/message.py:0
753
- #, python-format
754
701
  msgid "No line to pack found."
755
702
  msgstr ""
756
703
 
757
704
  #. module: shopfloor
758
705
  #. odoo-python
759
706
  #: code:addons/shopfloor/actions/message.py:0
760
- #, python-format
761
707
  msgid "No lines to process, set quantities on some"
762
708
  msgstr ""
763
709
 
764
710
  #. module: shopfloor
765
711
  #. odoo-python
766
712
  #: code:addons/shopfloor/actions/message.py:0
767
- #, python-format
768
713
  msgid "No lines to process."
769
714
  msgstr ""
770
715
 
771
716
  #. module: shopfloor
772
717
  #. odoo-python
773
718
  #: code:addons/shopfloor/actions/message.py:0
774
- #, python-format
775
719
  msgid "No location found for this barcode."
776
720
  msgstr ""
777
721
 
778
722
  #. module: shopfloor
779
723
  #. odoo-python
780
724
  #: code:addons/shopfloor/actions/message.py:0
781
- #, python-format
782
725
  msgid "No lot found for {}"
783
726
  msgstr ""
784
727
 
785
728
  #. module: shopfloor
786
729
  #. odoo-python
787
730
  #: code:addons/shopfloor/services/cluster_picking.py:0
788
- #, python-format
789
731
  msgid "No more work to do, please create a new batch transfer"
790
732
  msgstr ""
791
733
 
792
734
  #. module: shopfloor
793
735
  #. odoo-python
794
736
  #: code:addons/shopfloor/actions/message.py:0
795
- #, python-format
796
737
  msgid "No operation found for this menu and profile."
797
738
  msgstr ""
798
739
 
799
740
  #. module: shopfloor
800
741
  #. odoo-python
801
742
  #: code:addons/shopfloor/actions/message.py:0
802
- #, python-format
803
743
  msgid "No operation type found for this menu and profile."
804
744
  msgstr ""
805
745
 
806
746
  #. module: shopfloor
807
747
  #. odoo-python
808
748
  #: code:addons/shopfloor/services/service.py:0
809
- #, python-format
810
749
  msgid "No operation types configured on menu {}."
811
750
  msgstr ""
812
751
 
813
752
  #. module: shopfloor
814
753
  #. odoo-python
815
754
  #: code:addons/shopfloor/actions/message.py:0
816
- #, python-format
817
755
  msgid "No package or lot found for barcode {}."
818
756
  msgstr ""
819
757
 
820
758
  #. module: shopfloor
821
759
  #. odoo-python
822
760
  #: code:addons/shopfloor/actions/message.py:0
823
- #, python-format
824
761
  msgid "No pending operation for package %s."
825
762
  msgstr ""
826
763
 
827
764
  #. module: shopfloor
828
765
  #. odoo-python
829
766
  #: code:addons/shopfloor/actions/message.py:0
830
- #, python-format
831
767
  msgid "No product found for {}"
832
768
  msgstr ""
833
769
 
834
770
  #. module: shopfloor
835
771
  #. odoo-python
836
772
  #: code:addons/shopfloor/actions/message.py:0
837
- #, python-format
838
773
  msgid "No product found in {}"
839
774
  msgstr ""
840
775
 
841
776
  #. module: shopfloor
842
777
  #. odoo-python
843
778
  #: code:addons/shopfloor/actions/message.py:0
844
- #, python-format
845
779
  msgid "No putaway destination is available."
846
780
  msgstr ""
847
781
 
848
782
  #. module: shopfloor
849
783
  #. odoo-python
850
784
  #: code:addons/shopfloor/actions/message.py:0
851
- #, python-format
852
785
  msgid "No quantity has been processed, unable to complete the transfer."
853
786
  msgstr ""
854
787
 
855
788
  #. module: shopfloor
856
789
  #. odoo-python
857
790
  #: code:addons/shopfloor/actions/message.py:0
858
- #, python-format
859
791
  msgid "No transfer found for %(model_name)s %(record_name)s"
860
792
  msgstr ""
861
793
 
862
794
  #. module: shopfloor
863
795
  #. odoo-python
864
796
  #: code:addons/shopfloor/actions/message.py:0
865
- #, python-format
866
797
  msgid "No transfer found for barcode %s"
867
798
  msgstr ""
868
799
 
869
800
  #. module: shopfloor
870
801
  #. odoo-python
871
802
  #: code:addons/shopfloor/actions/message.py:0
872
- #, python-format
873
803
  msgid "No transfer found for the scanned lot."
874
804
  msgstr ""
875
805
 
876
806
  #. module: shopfloor
877
807
  #. odoo-python
878
808
  #: code:addons/shopfloor/actions/message.py:0
879
- #, python-format
880
809
  msgid "No transfer found for the scanned packaging."
881
810
  msgstr ""
882
811
 
883
812
  #. module: shopfloor
884
813
  #. odoo-python
885
814
  #: code:addons/shopfloor/actions/message.py:0
886
- #, python-format
887
815
  msgid "No transfer found for this lot."
888
816
  msgstr ""
889
817
 
890
818
  #. module: shopfloor
891
819
  #. odoo-python
892
820
  #: code:addons/shopfloor/actions/message.py:0
893
- #, python-format
894
821
  msgid "No transfer found for this product."
895
822
  msgstr ""
896
823
 
897
824
  #. module: shopfloor
898
825
  #. odoo-python
899
826
  #: code:addons/shopfloor/actions/message.py:0
900
- #, python-format
901
827
  msgid "No valid package to select."
902
828
  msgstr ""
903
829
 
904
830
  #. module: shopfloor
905
831
  #. odoo-python
906
832
  #: code:addons/shopfloor/actions/message.py:0
907
- #, python-format
908
833
  msgid "No value"
909
834
  msgstr ""
910
835
 
911
836
  #. module: shopfloor
912
837
  #. odoo-python
913
838
  #: code:addons/shopfloor/actions/message.py:0
914
- #, python-format
915
839
  msgid ""
916
840
  "Not all lines have been processed with full quantity. Do you confirm partial"
917
841
  " operation?"
@@ -925,14 +849,12 @@ msgstr ""
925
849
  #. module: shopfloor
926
850
  #. odoo-python
927
851
  #: code:addons/shopfloor/actions/message.py:0
928
- #, python-format
929
852
  msgid "Operation already processed."
930
853
  msgstr ""
931
854
 
932
855
  #. module: shopfloor
933
856
  #. odoo-python
934
857
  #: code:addons/shopfloor/actions/message.py:0
935
- #, python-format
936
858
  msgid ""
937
859
  "Operation types for this menu are missing default source and destination "
938
860
  "locations."
@@ -941,7 +863,6 @@ msgstr ""
941
863
  #. module: shopfloor
942
864
  #. odoo-python
943
865
  #: code:addons/shopfloor/actions/message.py:0
944
- #, python-format
945
866
  msgid "Operation's already running. Would you like to take it over?"
946
867
  msgstr ""
947
868
 
@@ -953,14 +874,12 @@ msgstr ""
953
874
  #. module: shopfloor
954
875
  #. odoo-python
955
876
  #: code:addons/shopfloor/actions/message.py:0
956
- #, python-format
957
877
  msgid "Package %(old_package_name)s replaced by package %(new_package_name)s."
958
878
  msgstr ""
959
879
 
960
880
  #. module: shopfloor
961
881
  #. odoo-python
962
882
  #: code:addons/shopfloor/actions/message.py:0
963
- #, python-format
964
883
  msgid ""
965
884
  "Package %(package_name)s cannot be picked, already moved by transfer "
966
885
  "%(picking_name)s."
@@ -969,14 +888,12 @@ msgstr ""
969
888
  #. module: shopfloor
970
889
  #. odoo-python
971
890
  #: code:addons/shopfloor/actions/message.py:0
972
- #, python-format
973
891
  msgid "Package %(package_name)s cannot be used: %(error)s"
974
892
  msgstr ""
975
893
 
976
894
  #. module: shopfloor
977
895
  #. odoo-python
978
896
  #: code:addons/shopfloor/actions/message.py:0
979
- #, python-format
980
897
  msgid ""
981
898
  "Package %(package_name)s contains already lines from a different operation "
982
899
  "type %(picking_type_name)s."
@@ -985,7 +902,6 @@ msgstr ""
985
902
  #. module: shopfloor
986
903
  #. odoo-python
987
904
  #: code:addons/shopfloor/models/stock_move_line.py:0
988
- #, python-format
989
905
  msgid ""
990
906
  "Package %(package_name)s does not contain available product "
991
907
  "%(product_name)s, cannot replace package."
@@ -994,7 +910,6 @@ msgstr ""
994
910
  #. module: shopfloor
995
911
  #. odoo-python
996
912
  #: code:addons/shopfloor/actions/message.py:0
997
- #, python-format
998
913
  msgid ""
999
914
  "Package %(package_name)s is not available in transfer %(picking_name)s."
1000
915
  msgstr ""
@@ -1002,14 +917,12 @@ msgstr ""
1002
917
  #. module: shopfloor
1003
918
  #. odoo-python
1004
919
  #: code:addons/shopfloor/actions/message.py:0
1005
- #, python-format
1006
920
  msgid "Package %(package_name)s not found in location %(location_name)s"
1007
921
  msgstr ""
1008
922
 
1009
923
  #. module: shopfloor
1010
924
  #. odoo-python
1011
925
  #: code:addons/shopfloor/actions/message.py:0
1012
- #, python-format
1013
926
  msgid "Package %(package_name)s not found in transfer %(picking_name)s"
1014
927
  msgstr ""
1015
928
 
@@ -1021,56 +934,48 @@ msgstr ""
1021
934
  #. module: shopfloor
1022
935
  #. odoo-python
1023
936
  #: code:addons/shopfloor/services/checkout.py:0
1024
- #, python-format
1025
937
  msgid "Package cancelled"
1026
938
  msgstr ""
1027
939
 
1028
940
  #. module: shopfloor
1029
941
  #. odoo-python
1030
942
  #: code:addons/shopfloor/actions/message.py:0
1031
- #, python-format
1032
943
  msgid "Package has been opened. You can move partial quantities."
1033
944
  msgstr ""
1034
945
 
1035
946
  #. module: shopfloor
1036
947
  #. odoo-python
1037
948
  #: code:addons/shopfloor/models/stock_quant_package.py:0
1038
- #, python-format
1039
949
  msgid "Package name must be unique!"
1040
950
  msgstr ""
1041
951
 
1042
952
  #. module: shopfloor
1043
953
  #. odoo-python
1044
954
  #: code:addons/shopfloor/services/delivery.py:0
1045
- #, python-format
1046
955
  msgid "Package {} belongs to a picking without a valid state."
1047
956
  msgstr ""
1048
957
 
1049
958
  #. module: shopfloor
1050
959
  #. odoo-python
1051
960
  #: code:addons/shopfloor/actions/message.py:0
1052
- #, python-format
1053
961
  msgid "Package {} has a different content."
1054
962
  msgstr ""
1055
963
 
1056
964
  #. module: shopfloor
1057
965
  #. odoo-python
1058
966
  #: code:addons/shopfloor/models/stock_move_line.py:0
1059
- #, python-format
1060
967
  msgid "Package {} has been partially picked in another location"
1061
968
  msgstr ""
1062
969
 
1063
970
  #. module: shopfloor
1064
971
  #. odoo-python
1065
972
  #: code:addons/shopfloor/actions/message.py:0
1066
- #, python-format
1067
973
  msgid "Package {} is already used."
1068
974
  msgstr ""
1069
975
 
1070
976
  #. module: shopfloor
1071
977
  #. odoo-python
1072
978
  #: code:addons/shopfloor/actions/message.py:0
1073
- #, python-format
1074
979
  msgid "Package {} is not empty."
1075
980
  msgstr ""
1076
981
 
@@ -1082,7 +987,6 @@ msgstr ""
1082
987
  #. module: shopfloor
1083
988
  #. odoo-python
1084
989
  #: code:addons/shopfloor/actions/message.py:0
1085
- #, python-format
1086
990
  msgid ""
1087
991
  "Packaging '%(package_name)s' is not allowed for carrier %(carrier_name)s.or "
1088
992
  "carrier %(carrier_name)s."
@@ -1091,28 +995,24 @@ msgstr ""
1091
995
  #. module: shopfloor
1092
996
  #. odoo-python
1093
997
  #: code:addons/shopfloor/services/checkout.py:0
1094
- #, python-format
1095
998
  msgid "Packaging changed on package {}"
1096
999
  msgstr ""
1097
1000
 
1098
1001
  #. module: shopfloor
1099
1002
  #. odoo-python
1100
1003
  #: code:addons/shopfloor/actions/message.py:0
1101
- #, python-format
1102
1004
  msgid "Packaging not found in the current transfer."
1103
1005
  msgstr ""
1104
1006
 
1105
1007
  #. module: shopfloor
1106
1008
  #. odoo-python
1107
1009
  #: code:addons/shopfloor/actions/message.py:0
1108
- #, python-format
1109
1010
  msgid "Packaging {} dimension updated."
1110
1011
  msgstr ""
1111
1012
 
1112
1013
  #. module: shopfloor
1113
1014
  #. odoo-python
1114
1015
  #: code:addons/shopfloor/actions/message.py:0
1115
- #, python-format
1116
1016
  msgid ""
1117
1017
  "Pick + Pack mode ON: the picking {0.name} has no carrier set. The system "
1118
1018
  "couldn't pack goods automatically."
@@ -1131,7 +1031,6 @@ msgstr ""
1131
1031
  #. module: shopfloor
1132
1032
  #. odoo-python
1133
1033
  #: code:addons/shopfloor/actions/change_package_lot.py:0
1134
- #, python-format
1135
1034
  msgid "Pick: stock issue on lot: %(lot_name)s found in %(location_name)s"
1136
1035
  msgstr ""
1137
1036
 
@@ -1153,21 +1052,18 @@ msgstr ""
1153
1052
  #. module: shopfloor
1154
1053
  #. odoo-python
1155
1054
  #: code:addons/shopfloor/actions/message.py:0
1156
- #, python-format
1157
1055
  msgid "Picking has already been started in this location in transfer(s): {}"
1158
1056
  msgstr ""
1159
1057
 
1160
1058
  #. module: shopfloor
1161
1059
  #. odoo-python
1162
1060
  #: code:addons/shopfloor/actions/message.py:0
1163
- #, python-format
1164
1061
  msgid "Picking type {} complete."
1165
1062
  msgstr ""
1166
1063
 
1167
1064
  #. module: shopfloor
1168
1065
  #. odoo-python
1169
1066
  #: code:addons/shopfloor/actions/message.py:0
1170
- #, python-format
1171
1067
  msgid "Place it in {}?"
1172
1068
  msgstr ""
1173
1069
 
@@ -1179,7 +1075,6 @@ msgstr ""
1179
1075
  #. module: shopfloor
1180
1076
  #. odoo-python
1181
1077
  #: code:addons/shopfloor/actions/message.py:0
1182
- #, python-format
1183
1078
  msgid ""
1184
1079
  "Please note that the scanned quantity is higher than the maximum allowed."
1185
1080
  msgstr ""
@@ -1187,14 +1082,12 @@ msgstr ""
1187
1082
  #. module: shopfloor
1188
1083
  #. odoo-python
1189
1084
  #: code:addons/shopfloor/actions/message.py:0
1190
- #, python-format
1191
1085
  msgid "Please scan the location first."
1192
1086
  msgstr ""
1193
1087
 
1194
1088
  #. module: shopfloor
1195
1089
  #. odoo-python
1196
1090
  #: code:addons/shopfloor/actions/message.py:0
1197
- #, python-format
1198
1091
  msgid "Please scan the package."
1199
1092
  msgstr ""
1200
1093
 
@@ -1216,14 +1109,12 @@ msgstr ""
1216
1109
  #. module: shopfloor
1217
1110
  #. odoo-python
1218
1111
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
1219
- #, python-format
1220
1112
  msgid "Processing reserved quantities is not allowed for menu {}."
1221
1113
  msgstr ""
1222
1114
 
1223
1115
  #. module: shopfloor
1224
1116
  #. odoo-python
1225
1117
  #: code:addons/shopfloor/actions/message.py:0
1226
- #, python-format
1227
1118
  msgid ""
1228
1119
  "Product %(product_name)s not found in location %(location_name)s or transfer"
1229
1120
  " %(picking_name)s."
@@ -1232,7 +1123,6 @@ msgstr ""
1232
1123
  #. module: shopfloor
1233
1124
  #. odoo-python
1234
1125
  #: code:addons/shopfloor/actions/message.py:0
1235
- #, python-format
1236
1126
  msgid "Product %s is not in the current transfer."
1237
1127
  msgstr ""
1238
1128
 
@@ -1244,28 +1134,24 @@ msgstr ""
1244
1134
  #. module: shopfloor
1245
1135
  #. odoo-python
1246
1136
  #: code:addons/shopfloor/actions/message.py:0
1247
- #, python-format
1248
1137
  msgid "Product tracked by lot, please scan one."
1249
1138
  msgstr ""
1250
1139
 
1251
1140
  #. module: shopfloor
1252
1141
  #. odoo-python
1253
1142
  #: code:addons/shopfloor/services/delivery.py:0
1254
- #, python-format
1255
1143
  msgid "Product {} belongs to a picking without a valid state."
1256
1144
  msgstr ""
1257
1145
 
1258
1146
  #. module: shopfloor
1259
1147
  #. odoo-python
1260
1148
  #: code:addons/shopfloor/actions/message.py:0
1261
- #, python-format
1262
1149
  msgid "Product {} found in multiple locations. Scan your location first."
1263
1150
  msgstr ""
1264
1151
 
1265
1152
  #. module: shopfloor
1266
1153
  #. odoo-python
1267
1154
  #: code:addons/shopfloor/services/checkout.py:0
1268
- #, python-format
1269
1155
  msgid "Product(s) processed as raw product(s)"
1270
1156
  msgstr ""
1271
1157
 
@@ -1274,6 +1160,11 @@ msgstr ""
1274
1160
  msgid "Python code to sort move lines. "
1275
1161
  msgstr ""
1276
1162
 
1163
+ #. module: shopfloor
1164
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move__quantity_picked
1165
+ msgid "Quantity Picked"
1166
+ msgstr ""
1167
+
1277
1168
  #. module: shopfloor
1278
1169
  #: model:ir.model,name:shopfloor.model_stock_quant
1279
1170
  msgid "Quants"
@@ -1287,14 +1178,12 @@ msgstr ""
1287
1178
  #. module: shopfloor
1288
1179
  #. odoo-python
1289
1180
  #: code:addons/shopfloor/actions/message.py:0
1290
- #, python-format
1291
1181
  msgid "Recovered previous session."
1292
1182
  msgstr ""
1293
1183
 
1294
1184
  #. module: shopfloor
1295
1185
  #. odoo-python
1296
1186
  #: code:addons/shopfloor/services/checkout.py:0
1297
- #, python-format
1298
1187
  msgid "Remaining raw product not packed, proceed anyway?"
1299
1188
  msgstr ""
1300
1189
 
@@ -1312,14 +1201,12 @@ msgstr ""
1312
1201
  #. module: shopfloor
1313
1202
  #. odoo-python
1314
1203
  #: code:addons/shopfloor/actions/message.py:0
1315
- #, python-format
1316
1204
  msgid "Reserved for %(picking_type)s %(picking_name)s"
1317
1205
  msgstr ""
1318
1206
 
1319
1207
  #. module: shopfloor
1320
1208
  #. odoo-python
1321
1209
  #: code:addons/shopfloor/actions/message.py:0
1322
- #, python-format
1323
1210
  msgid "Restart the operation, someone has canceled it."
1324
1211
  msgstr ""
1325
1212
 
@@ -1351,7 +1238,6 @@ msgstr ""
1351
1238
  #. module: shopfloor
1352
1239
  #. odoo-python
1353
1240
  #: code:addons/shopfloor/actions/message.py:0
1354
- #, python-format
1355
1241
  msgid "Same package {} is already assigned."
1356
1242
  msgstr ""
1357
1243
 
@@ -1363,29 +1249,24 @@ msgstr ""
1363
1249
  #. module: shopfloor
1364
1250
  #. odoo-python
1365
1251
  #: code:addons/shopfloor/actions/message.py:0
1366
- #, python-format
1367
1252
  msgid "Scan the destination location"
1368
1253
  msgstr ""
1369
1254
 
1370
1255
  #. module: shopfloor
1371
1256
  #. odoo-python
1372
1257
  #: code:addons/shopfloor/services/location_content_transfer.py:0
1373
- #: code:addons/shopfloor/services/location_content_transfer.py:0
1374
- #, python-format
1375
1258
  msgid "Scan the package"
1376
1259
  msgstr ""
1377
1260
 
1378
1261
  #. module: shopfloor
1379
1262
  #. odoo-python
1380
1263
  #: code:addons/shopfloor/actions/message.py:0
1381
- #, python-format
1382
1264
  msgid "Scanned lot differs from the previous scan: %(lot)s."
1383
1265
  msgstr ""
1384
1266
 
1385
1267
  #. module: shopfloor
1386
1268
  #. odoo-python
1387
1269
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
1388
- #, python-format
1389
1270
  msgid ""
1390
1271
  "Scenario `%(scenario_name)s` require(s) 'Move Entire Packages' to be enabled.\n"
1391
1272
  "These type(s) do not satisfy this constraint: \n"
@@ -1401,28 +1282,24 @@ msgstr ""
1401
1282
  #. module: shopfloor
1402
1283
  #. odoo-python
1403
1284
  #: code:addons/shopfloor/actions/message.py:0
1404
- #, python-format
1405
1285
  msgid "Several lots found in %(name)s, please scan the lot."
1406
1286
  msgstr ""
1407
1287
 
1408
1288
  #. module: shopfloor
1409
1289
  #. odoo-python
1410
1290
  #: code:addons/shopfloor/actions/message.py:0
1411
- #, python-format
1412
1291
  msgid "Several lots found in %s, please scan a lot."
1413
1292
  msgstr ""
1414
1293
 
1415
1294
  #. module: shopfloor
1416
1295
  #. odoo-python
1417
1296
  #: code:addons/shopfloor/actions/message.py:0
1418
- #, python-format
1419
1297
  msgid "Several moves found for different lots, please scan the lot."
1420
1298
  msgstr ""
1421
1299
 
1422
1300
  #. module: shopfloor
1423
1301
  #. odoo-python
1424
1302
  #: code:addons/shopfloor/actions/message.py:0
1425
- #, python-format
1426
1303
  msgid ""
1427
1304
  "Several moves found on different locations, please scan first the location."
1428
1305
  msgstr ""
@@ -1430,35 +1307,30 @@ msgstr ""
1430
1307
  #. module: shopfloor
1431
1308
  #. odoo-python
1432
1309
  #: code:addons/shopfloor/actions/message.py:0
1433
- #, python-format
1434
1310
  msgid "Several operation types found for this menu and profile."
1435
1311
  msgstr ""
1436
1312
 
1437
1313
  #. module: shopfloor
1438
1314
  #. odoo-python
1439
1315
  #: code:addons/shopfloor/actions/message.py:0
1440
- #, python-format
1441
1316
  msgid "Several packages found in %(name)s, please scan a package."
1442
1317
  msgstr ""
1443
1318
 
1444
1319
  #. module: shopfloor
1445
1320
  #. odoo-python
1446
1321
  #: code:addons/shopfloor/actions/message.py:0
1447
- #, python-format
1448
1322
  msgid "Several products found in %(name)s, please scan a product."
1449
1323
  msgstr ""
1450
1324
 
1451
1325
  #. module: shopfloor
1452
1326
  #. odoo-python
1453
1327
  #: code:addons/shopfloor/actions/message.py:0
1454
- #, python-format
1455
1328
  msgid "Several products found in %(name)s, please scan the product."
1456
1329
  msgstr ""
1457
1330
 
1458
1331
  #. module: shopfloor
1459
1332
  #. odoo-python
1460
1333
  #: code:addons/shopfloor/services/checkout.py:0
1461
- #, python-format
1462
1334
  msgid ""
1463
1335
  "Several transfers found, please scan a package or select a transfer "
1464
1336
  "manually."
@@ -1467,7 +1339,6 @@ msgstr ""
1467
1339
  #. module: shopfloor
1468
1340
  #. odoo-python
1469
1341
  #: code:addons/shopfloor/actions/message.py:0
1470
- #, python-format
1471
1342
  msgid "Several transfers found, please select a transfer manually."
1472
1343
  msgstr ""
1473
1344
 
@@ -1563,7 +1434,6 @@ msgstr ""
1563
1434
  #. module: shopfloor
1564
1435
  #. odoo-python
1565
1436
  #: code:addons/shopfloor/actions/stock.py:0
1566
- #, python-format
1567
1437
  msgid "Someone is already working on these transfers"
1568
1438
  msgstr ""
1569
1439
 
@@ -1649,7 +1519,6 @@ msgstr ""
1649
1519
  #. module: shopfloor
1650
1520
  #. odoo-python
1651
1521
  #: code:addons/shopfloor/models/stock_picking.py:0
1652
- #, python-format
1653
1522
  msgid ""
1654
1523
  "The backorder <a href=\"#\" data-oe-model=\"stock.picking\" data-oe-"
1655
1524
  "id=\"%(new_picking_id)d\">%(new_picking_name)s</a> has been created."
@@ -1658,56 +1527,48 @@ msgstr ""
1658
1527
  #. module: shopfloor
1659
1528
  #. odoo-python
1660
1529
  #: code:addons/shopfloor/actions/message.py:0
1661
- #, python-format
1662
1530
  msgid "The content of {} cannot be transferred with this scenario."
1663
1531
  msgstr ""
1664
1532
 
1665
1533
  #. module: shopfloor
1666
1534
  #. odoo-python
1667
1535
  #: code:addons/shopfloor/models/stock_move_line.py:0
1668
- #, python-format
1669
1536
  msgid "The demand cannot be negative"
1670
1537
  msgstr ""
1671
1538
 
1672
1539
  #. module: shopfloor
1673
1540
  #. odoo-python
1674
1541
  #: code:addons/shopfloor/services/cluster_picking.py:0
1675
- #, python-format
1676
1542
  msgid "The destination bin {} is not empty, please take another."
1677
1543
  msgstr ""
1678
1544
 
1679
1545
  #. module: shopfloor
1680
1546
  #. odoo-python
1681
1547
  #: code:addons/shopfloor/actions/message.py:0
1682
- #, python-format
1683
1548
  msgid "The pack has been moved, you can scan a new pack."
1684
1549
  msgstr ""
1685
1550
 
1686
1551
  #. module: shopfloor
1687
1552
  #. odoo-python
1688
1553
  #: code:addons/shopfloor/actions/message.py:0
1689
- #, python-format
1690
1554
  msgid "The package %s cannot be transferred with this scenario."
1691
1555
  msgstr ""
1692
1556
 
1693
1557
  #. module: shopfloor
1694
1558
  #. odoo-python
1695
1559
  #: code:addons/shopfloor/actions/message.py:0
1696
- #, python-format
1697
1560
  msgid "The package %s doesn't contain any product to take."
1698
1561
  msgstr ""
1699
1562
 
1700
1563
  #. module: shopfloor
1701
1564
  #. odoo-python
1702
1565
  #: code:addons/shopfloor/actions/message.py:0
1703
- #, python-format
1704
1566
  msgid "The package %s doesn't exist"
1705
1567
  msgstr ""
1706
1568
 
1707
1569
  #. module: shopfloor
1708
1570
  #. odoo-python
1709
1571
  #: code:addons/shopfloor/actions/message.py:0
1710
- #, python-format
1711
1572
  msgid "The picked quantity must be a value above zero."
1712
1573
  msgstr ""
1713
1574
 
@@ -1724,14 +1585,12 @@ msgstr ""
1724
1585
  #. module: shopfloor
1725
1586
  #. odoo-python
1726
1587
  #: code:addons/shopfloor/actions/message.py:0
1727
- #, python-format
1728
1588
  msgid "The product/packaging you selected has already been returned."
1729
1589
  msgstr ""
1730
1590
 
1731
1591
  #. module: shopfloor
1732
1592
  #. odoo-python
1733
1593
  #: code:addons/shopfloor/actions/message.py:0
1734
- #, python-format
1735
1594
  msgid ""
1736
1595
  "The quantity scanned for one or more lines cannot be higher than the maximum"
1737
1596
  " allowed. (%(product_name)s : %(quantity_done)s > %(quantity_reserved)s)"
@@ -1740,21 +1599,18 @@ msgstr ""
1740
1599
  #. module: shopfloor
1741
1600
  #. odoo-python
1742
1601
  #: code:addons/shopfloor/actions/change_package_lot.py:0
1743
- #, python-format
1744
1602
  msgid "The quantity to do has changed!"
1745
1603
  msgstr ""
1746
1604
 
1747
1605
  #. module: shopfloor
1748
1606
  #. odoo-python
1749
1607
  #: code:addons/shopfloor/actions/message.py:0
1750
- #, python-format
1751
1608
  msgid "The record you were working on does not exist anymore."
1752
1609
  msgstr ""
1753
1610
 
1754
1611
  #. module: shopfloor
1755
1612
  #. odoo-python
1756
1613
  #: code:addons/shopfloor/models/stock_move.py:0
1757
- #, python-format
1758
1614
  msgid "The split order {} has been created."
1759
1615
  msgstr ""
1760
1616
 
@@ -1766,63 +1622,54 @@ msgstr ""
1766
1622
  #. module: shopfloor
1767
1623
  #. odoo-python
1768
1624
  #: code:addons/shopfloor/services/cluster_picking.py:0
1769
- #, python-format
1770
1625
  msgid "This batch cannot be selected."
1771
1626
  msgstr ""
1772
1627
 
1773
1628
  #. module: shopfloor
1774
1629
  #. odoo-python
1775
1630
  #: code:addons/shopfloor/actions/message.py:0
1776
- #, python-format
1777
1631
  msgid "This line has a package, please select the package instead."
1778
1632
  msgstr ""
1779
1633
 
1780
1634
  #. module: shopfloor
1781
1635
  #. odoo-python
1782
1636
  #: code:addons/shopfloor/actions/message.py:0
1783
- #, python-format
1784
1637
  msgid "This line is not available in transfer {}."
1785
1638
  msgstr ""
1786
1639
 
1787
1640
  #. module: shopfloor
1788
1641
  #. odoo-python
1789
1642
  #: code:addons/shopfloor/services/location_content_transfer.py:0
1790
- #, python-format
1791
1643
  msgid "This location content can't be moved at once."
1792
1644
  msgstr ""
1793
1645
 
1794
1646
  #. module: shopfloor
1795
1647
  #. odoo-python
1796
1648
  #: code:addons/shopfloor/actions/message.py:0
1797
- #, python-format
1798
1649
  msgid "This location does not exist."
1799
1650
  msgstr ""
1800
1651
 
1801
1652
  #. module: shopfloor
1802
1653
  #. odoo-python
1803
1654
  #: code:addons/shopfloor/actions/message.py:0
1804
- #, python-format
1805
1655
  msgid "This location only contains packages, please scan one of them."
1806
1656
  msgstr ""
1807
1657
 
1808
1658
  #. module: shopfloor
1809
1659
  #. odoo-python
1810
1660
  #: code:addons/shopfloor/actions/message.py:0
1811
- #, python-format
1812
1661
  msgid "This location requires packages. Please scan a destination package."
1813
1662
  msgstr ""
1814
1663
 
1815
1664
  #. module: shopfloor
1816
1665
  #. odoo-python
1817
1666
  #: code:addons/shopfloor/actions/message.py:0
1818
- #, python-format
1819
1667
  msgid "This lot does not exist anymore."
1820
1668
  msgstr ""
1821
1669
 
1822
1670
  #. module: shopfloor
1823
1671
  #. odoo-python
1824
1672
  #: code:addons/shopfloor/actions/message.py:0
1825
- #, python-format
1826
1673
  msgid ""
1827
1674
  "This lot is part of a package with other products, please scan a package."
1828
1675
  msgstr ""
@@ -1830,35 +1677,30 @@ msgstr ""
1830
1677
  #. module: shopfloor
1831
1678
  #. odoo-python
1832
1679
  #: code:addons/shopfloor/actions/message.py:0
1833
- #, python-format
1834
1680
  msgid "This lot is part of multiple packages, please scan a package."
1835
1681
  msgstr ""
1836
1682
 
1837
1683
  #. module: shopfloor
1838
1684
  #. odoo-python
1839
1685
  #: code:addons/shopfloor/actions/message.py:0
1840
- #, python-format
1841
1686
  msgid "This operation does not exist anymore."
1842
1687
  msgstr ""
1843
1688
 
1844
1689
  #. module: shopfloor
1845
1690
  #. odoo-python
1846
1691
  #: code:addons/shopfloor/actions/message.py:0
1847
- #, python-format
1848
1692
  msgid "This package does not exist anymore."
1849
1693
  msgstr ""
1850
1694
 
1851
1695
  #. module: shopfloor
1852
1696
  #. odoo-python
1853
1697
  #: code:addons/shopfloor/actions/message.py:0
1854
- #, python-format
1855
1698
  msgid "This product does not exist anymore."
1856
1699
  msgstr ""
1857
1700
 
1858
1701
  #. module: shopfloor
1859
1702
  #. odoo-python
1860
1703
  #: code:addons/shopfloor/actions/message.py:0
1861
- #, python-format
1862
1704
  msgid ""
1863
1705
  "This product is part of a package with other products, please scan a "
1864
1706
  "package."
@@ -1867,21 +1709,18 @@ msgstr ""
1867
1709
  #. module: shopfloor
1868
1710
  #. odoo-python
1869
1711
  #: code:addons/shopfloor/actions/message.py:0
1870
- #, python-format
1871
1712
  msgid "This product is part of a package, please scan a package."
1872
1713
  msgstr ""
1873
1714
 
1874
1715
  #. module: shopfloor
1875
1716
  #. odoo-python
1876
1717
  #: code:addons/shopfloor/actions/message.py:0
1877
- #, python-format
1878
1718
  msgid "This product is part of multiple packages, please scan a package."
1879
1719
  msgstr ""
1880
1720
 
1881
1721
  #. module: shopfloor
1882
1722
  #. odoo-python
1883
1723
  #: code:addons/shopfloor/actions/message.py:0
1884
- #, python-format
1885
1724
  msgid ""
1886
1725
  "This source document is part of multiple transfers, please scan a package."
1887
1726
  msgstr ""
@@ -1889,7 +1728,6 @@ msgstr ""
1889
1728
  #. module: shopfloor
1890
1729
  #. odoo-python
1891
1730
  #: code:addons/shopfloor/actions/message.py:0
1892
- #, python-format
1893
1731
  msgid "This transfer does not exist or is not available anymore."
1894
1732
  msgstr ""
1895
1733
 
@@ -1920,7 +1758,6 @@ msgstr ""
1920
1758
  #. module: shopfloor
1921
1759
  #. odoo-python
1922
1760
  #: code:addons/shopfloor/actions/message.py:0
1923
- #, python-format
1924
1761
  msgid ""
1925
1762
  "Transfer has been canceled. This cannot be processed using this scenario"
1926
1763
  msgstr ""
@@ -1928,28 +1765,24 @@ msgstr ""
1928
1765
  #. module: shopfloor
1929
1766
  #. odoo-python
1930
1767
  #: code:addons/shopfloor/actions/message.py:0
1931
- #, python-format
1932
1768
  msgid "Transfer {} complete"
1933
1769
  msgstr ""
1934
1770
 
1935
1771
  #. module: shopfloor
1936
1772
  #. odoo-python
1937
1773
  #: code:addons/shopfloor/actions/message.py:0
1938
- #, python-format
1939
1774
  msgid "Transfer {} done"
1940
1775
  msgstr ""
1941
1776
 
1942
1777
  #. module: shopfloor
1943
1778
  #. odoo-python
1944
1779
  #: code:addons/shopfloor/actions/message.py:0
1945
- #, python-format
1946
1780
  msgid "Transfer {} is not available."
1947
1781
  msgstr ""
1948
1782
 
1949
1783
  #. module: shopfloor
1950
1784
  #. odoo-python
1951
1785
  #: code:addons/shopfloor/actions/message.py:0
1952
- #, python-format
1953
1786
  msgid ""
1954
1787
  "Transferring to a different package is not allowed, please scan a location "
1955
1788
  "instead."
@@ -1958,14 +1791,12 @@ msgstr ""
1958
1791
  #. module: shopfloor
1959
1792
  #. odoo-python
1960
1793
  #: code:addons/shopfloor/actions/message.py:0
1961
- #, python-format
1962
1794
  msgid "Unable to find a line with the same product but different lot."
1963
1795
  msgstr ""
1964
1796
 
1965
1797
  #. module: shopfloor
1966
1798
  #. odoo-python
1967
1799
  #: code:addons/shopfloor/actions/message.py:0
1968
- #, python-format
1969
1800
  msgid "Units replaced by package {}."
1970
1801
  msgstr ""
1971
1802
 
@@ -1982,7 +1813,6 @@ msgstr ""
1982
1813
  #. module: shopfloor
1983
1814
  #. odoo-python
1984
1815
  #: code:addons/shopfloor/actions/message.py:0
1985
- #, python-format
1986
1816
  msgid "Unrecoverable error, please restart."
1987
1817
  msgstr ""
1988
1818
 
@@ -2059,91 +1889,78 @@ msgstr ""
2059
1889
  #. module: shopfloor
2060
1890
  #. odoo-python
2061
1891
  #: code:addons/shopfloor/actions/message.py:0
2062
- #, python-format
2063
1892
  msgid "Working location changed to {}"
2064
1893
  msgstr ""
2065
1894
 
2066
1895
  #. module: shopfloor
2067
1896
  #. odoo-python
2068
1897
  #: code:addons/shopfloor/services/cluster_picking.py:0
2069
- #, python-format
2070
1898
  msgid "Wrong bin"
2071
1899
  msgstr ""
2072
1900
 
2073
1901
  #. module: shopfloor
2074
1902
  #. odoo-python
2075
1903
  #: code:addons/shopfloor/actions/message.py:0
2076
- #, python-format
2077
1904
  msgid "Wrong location."
2078
1905
  msgstr ""
2079
1906
 
2080
1907
  #. module: shopfloor
2081
1908
  #. odoo-python
2082
1909
  #: code:addons/shopfloor/actions/message.py:0
2083
- #, python-format
2084
1910
  msgid "Wrong lot."
2085
1911
  msgstr ""
2086
1912
 
2087
1913
  #. module: shopfloor
2088
1914
  #. odoo-python
2089
1915
  #: code:addons/shopfloor/actions/message.py:0
2090
- #, python-format
2091
1916
  msgid "Wrong pack."
2092
1917
  msgstr ""
2093
1918
 
2094
1919
  #. module: shopfloor
2095
1920
  #. odoo-python
2096
1921
  #: code:addons/shopfloor/actions/message.py:0
2097
- #, python-format
2098
1922
  msgid "Wrong packaging."
2099
1923
  msgstr ""
2100
1924
 
2101
1925
  #. module: shopfloor
2102
1926
  #. odoo-python
2103
1927
  #: code:addons/shopfloor/actions/message.py:0
2104
- #, python-format
2105
1928
  msgid "Wrong product."
2106
1929
  msgstr ""
2107
1930
 
2108
1931
  #. module: shopfloor
2109
1932
  #. odoo-python
2110
1933
  #: code:addons/shopfloor/actions/message.py:0
2111
- #, python-format
2112
1934
  msgid "Wrong."
2113
1935
  msgstr ""
2114
1936
 
2115
1937
  #. module: shopfloor
2116
1938
  #. odoo-python
2117
1939
  #: code:addons/shopfloor/actions/message.py:0
2118
- #, python-format
2119
1940
  msgid "You cannot move this using this menu."
2120
1941
  msgstr ""
2121
1942
 
2122
1943
  #. module: shopfloor
2123
1944
  #. odoo-python
2124
1945
  #: code:addons/shopfloor/actions/message.py:0
2125
- #, python-format
2126
1946
  msgid "You cannot place it here"
2127
1947
  msgstr ""
2128
1948
 
2129
1949
  #. module: shopfloor
2130
1950
  #. odoo-python
2131
1951
  #: code:addons/shopfloor/actions/message.py:0
2132
- #, python-format
2133
1952
  msgid "You cannot process that much units."
2134
1953
  msgstr ""
2135
1954
 
2136
1955
  #. module: shopfloor
2137
1956
  #. odoo-python
2138
1957
  #: code:addons/shopfloor/actions/message.py:0
2139
- #, python-format
2140
1958
  msgid "You cannot return more quantity than what was initially sent."
2141
1959
  msgstr ""
2142
1960
 
2143
1961
  #. module: shopfloor
2144
1962
  #. odoo-python
2145
1963
  #: code:addons/shopfloor/actions/message.py:0
2146
- #, python-format
2147
1964
  msgid ""
2148
1965
  "You cannot work on a package (%(barcode)s) outside of locations: %(names)s"
2149
1966
  msgstr ""
@@ -2151,14 +1968,12 @@ msgstr ""
2151
1968
  #. module: shopfloor
2152
1969
  #. odoo-python
2153
1970
  #: code:addons/shopfloor/actions/message.py:0
2154
- #, python-format
2155
1971
  msgid "You must not pick more than {} units."
2156
1972
  msgstr ""
2157
1973
 
2158
1974
  #. module: shopfloor
2159
1975
  #. odoo-python
2160
1976
  #: code:addons/shopfloor/actions/message.py:0
2161
- #, python-format
2162
1977
  msgid ""
2163
1978
  "You scanned a different lot with the same product, do you want to change "
2164
1979
  "lot? Scan it again to confirm. The first line matching this product will be "
@@ -2168,7 +1983,6 @@ msgstr ""
2168
1983
  #. module: shopfloor
2169
1984
  #. odoo-python
2170
1985
  #: code:addons/shopfloor/actions/message.py:0
2171
- #, python-format
2172
1986
  msgid ""
2173
1987
  "You scanned a different package with the same product, do you want to change"
2174
1988
  " pack? Scan it again to confirm"
@@ -2184,6 +1998,5 @@ msgstr ""
2184
1998
  #. module: shopfloor
2185
1999
  #. odoo-python
2186
2000
  #: code:addons/shopfloor/actions/message.py:0
2187
- #, python-format
2188
2001
  msgid "{} is not a valid destination package."
2189
2002
  msgstr ""