odoo-addon-shopfloor 16.0.1.0.0.25__py3-none-any.whl → 16.0.2.1.0.1__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 (76) hide show
  1. odoo/addons/shopfloor/README.rst +1 -1
  2. odoo/addons/shopfloor/__manifest__.py +1 -1
  3. odoo/addons/shopfloor/actions/data.py +69 -34
  4. odoo/addons/shopfloor/actions/data_detail.py +20 -0
  5. odoo/addons/shopfloor/actions/message.py +94 -2
  6. odoo/addons/shopfloor/actions/move_line_search.py +2 -2
  7. odoo/addons/shopfloor/actions/packaging.py +10 -0
  8. odoo/addons/shopfloor/actions/schema.py +11 -0
  9. odoo/addons/shopfloor/actions/schema_detail.py +14 -8
  10. odoo/addons/shopfloor/actions/search.py +9 -6
  11. odoo/addons/shopfloor/components/scan_handler_product.py +2 -0
  12. odoo/addons/shopfloor/data/shopfloor_scenario_data.xml +4 -2
  13. odoo/addons/shopfloor/docs/checkout_diag_seq.plantuml +19 -5
  14. odoo/addons/shopfloor/docs/checkout_diag_seq.png +0 -0
  15. odoo/addons/shopfloor/docs/single_pack_transfer_diag_seq.plantuml +4 -4
  16. odoo/addons/shopfloor/docs/single_pack_transfer_diag_seq.png +0 -0
  17. odoo/addons/shopfloor/i18n/ca.po +373 -143
  18. odoo/addons/shopfloor/i18n/de.po +357 -145
  19. odoo/addons/shopfloor/i18n/es_AR.po +489 -174
  20. odoo/addons/shopfloor/i18n/it.po +642 -252
  21. odoo/addons/shopfloor/i18n/pt_BR.po +357 -145
  22. odoo/addons/shopfloor/i18n/shopfloor.pot +133 -8
  23. odoo/addons/shopfloor/migrations/16.0.2.0.0/post-migration.py +43 -0
  24. odoo/addons/shopfloor/models/shopfloor_menu.py +29 -5
  25. odoo/addons/shopfloor/models/stock_move_line.py +3 -0
  26. odoo/addons/shopfloor/models/stock_picking.py +11 -0
  27. odoo/addons/shopfloor/services/checkout.py +216 -61
  28. odoo/addons/shopfloor/services/cluster_picking.py +33 -18
  29. odoo/addons/shopfloor/services/delivery.py +25 -7
  30. odoo/addons/shopfloor/services/location_content_transfer.py +42 -28
  31. odoo/addons/shopfloor/services/single_pack_transfer.py +36 -13
  32. odoo/addons/shopfloor/services/zone_picking.py +187 -67
  33. odoo/addons/shopfloor/static/description/index.html +1 -1
  34. odoo/addons/shopfloor/tests/__init__.py +2 -0
  35. odoo/addons/shopfloor/tests/common.py +3 -1
  36. odoo/addons/shopfloor/tests/test_actions_data.py +46 -7
  37. odoo/addons/shopfloor/tests/test_actions_data_base.py +15 -0
  38. odoo/addons/shopfloor/tests/test_actions_data_detail.py +30 -8
  39. odoo/addons/shopfloor/tests/test_actions_packaging.py +43 -0
  40. odoo/addons/shopfloor/tests/test_checkout_base.py +15 -5
  41. odoo/addons/shopfloor/tests/test_checkout_done.py +40 -5
  42. odoo/addons/shopfloor/tests/test_checkout_list_delivery_packaging.py +1 -0
  43. odoo/addons/shopfloor/tests/test_checkout_list_package.py +3 -1
  44. odoo/addons/shopfloor/tests/test_checkout_scan.py +19 -0
  45. odoo/addons/shopfloor/tests/test_checkout_scan_dest_location.py +99 -0
  46. odoo/addons/shopfloor/tests/test_checkout_scan_line.py +3 -2
  47. odoo/addons/shopfloor/tests/test_checkout_scan_line_no_prefill_qty.py +48 -0
  48. odoo/addons/shopfloor/tests/test_checkout_scan_package_action.py +26 -0
  49. odoo/addons/shopfloor/tests/test_checkout_scan_package_action_no_prefill_qty.py +16 -0
  50. odoo/addons/shopfloor/tests/test_checkout_select_package_base.py +4 -1
  51. odoo/addons/shopfloor/tests/test_checkout_summary.py +1 -1
  52. odoo/addons/shopfloor/tests/test_cluster_picking_unload.py +37 -8
  53. odoo/addons/shopfloor/tests/test_delivery_list_stock_picking.py +5 -0
  54. odoo/addons/shopfloor/tests/test_location_content_transfer_base.py +4 -4
  55. odoo/addons/shopfloor/tests/test_location_content_transfer_set_destination_all.py +24 -2
  56. odoo/addons/shopfloor/tests/test_location_content_transfer_set_destination_package_or_line.py +6 -4
  57. odoo/addons/shopfloor/tests/test_location_content_transfer_single.py +45 -0
  58. odoo/addons/shopfloor/tests/test_scan_anything.py +7 -0
  59. odoo/addons/shopfloor/tests/test_single_pack_transfer.py +59 -8
  60. odoo/addons/shopfloor/tests/test_zone_picking_base.py +36 -10
  61. odoo/addons/shopfloor/tests/test_zone_picking_change_pack_lot.py +2 -0
  62. odoo/addons/shopfloor/tests/test_zone_picking_complete_mix_pack_flux.py +59 -0
  63. odoo/addons/shopfloor/tests/test_zone_picking_select_line.py +33 -2
  64. odoo/addons/shopfloor/tests/test_zone_picking_select_line_first_scan_location.py +8 -3
  65. odoo/addons/shopfloor/tests/test_zone_picking_select_line_no_prefill_qty.py +19 -2
  66. odoo/addons/shopfloor/tests/test_zone_picking_set_line_destination.py +88 -19
  67. odoo/addons/shopfloor/tests/test_zone_picking_set_line_destination_package_not_allowed.py +94 -0
  68. odoo/addons/shopfloor/tests/test_zone_picking_set_line_destination_pick_pack.py +1 -5
  69. odoo/addons/shopfloor/tests/test_zone_picking_start.py +4 -4
  70. odoo/addons/shopfloor/tests/test_zone_picking_unload_all.py +1 -1
  71. odoo/addons/shopfloor/tests/test_zone_picking_unload_set_destination.py +4 -4
  72. odoo/addons/shopfloor/views/shopfloor_menu.xml +30 -0
  73. {odoo_addon_shopfloor-16.0.1.0.0.25.dist-info → odoo_addon_shopfloor-16.0.2.1.0.1.dist-info}/METADATA +2 -2
  74. {odoo_addon_shopfloor-16.0.1.0.0.25.dist-info → odoo_addon_shopfloor-16.0.2.1.0.1.dist-info}/RECORD +76 -71
  75. {odoo_addon_shopfloor-16.0.1.0.0.25.dist-info → odoo_addon_shopfloor-16.0.2.1.0.1.dist-info}/WHEEL +0 -0
  76. {odoo_addon_shopfloor-16.0.1.0.0.25.dist-info → odoo_addon_shopfloor-16.0.2.1.0.1.dist-info}/top_level.txt +0 -0
@@ -46,6 +46,16 @@ msgid ""
46
46
  "decreasing the delivered quantity of the related SO line.\n"
47
47
  msgstr ""
48
48
 
49
+ #. module: shopfloor
50
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__allow_alternative_destination_package
51
+ msgid ""
52
+ "\n"
53
+ "When moving a whole package, the user normally scans\n"
54
+ "a destination location.\n"
55
+ "If enabled, they will also be allowed\n"
56
+ "to scan a destination package.\n"
57
+ msgstr ""
58
+
49
59
  #. module: shopfloor
50
60
  #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__multiple_move_single_pack
51
61
  msgid ""
@@ -80,6 +90,14 @@ msgid ""
80
90
  msgstr ""
81
91
 
82
92
  #. module: shopfloor
93
+ #. odoo-python
94
+ #: code:addons/shopfloor/actions/message.py:0
95
+ #, python-format
96
+ msgid "%(qty)s %(product_name)s put in %(package_name)s"
97
+ msgstr ""
98
+
99
+ #. module: shopfloor
100
+ #. odoo-python
83
101
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
84
102
  #, python-format
85
103
  msgid ""
@@ -88,6 +106,7 @@ msgid ""
88
106
  msgstr ""
89
107
 
90
108
  #. module: shopfloor
109
+ #. odoo-python
91
110
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
92
111
  #, python-format
93
112
  msgid ""
@@ -101,17 +120,12 @@ msgid "A Shopfloor application"
101
120
  msgstr ""
102
121
 
103
122
  #. module: shopfloor
123
+ #. odoo-python
104
124
  #: code:addons/shopfloor/actions/message.py:0
105
125
  #, python-format
106
126
  msgid "A destination package is required."
107
127
  msgstr ""
108
128
 
109
- #. module: shopfloor
110
- #: code:addons/shopfloor/actions/change_package_lot.py:0
111
- #, python-format
112
- msgid "A draft inventory has been created for control."
113
- msgstr ""
114
-
115
129
  #. module: shopfloor
116
130
  #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_type__shopfloor_zero_check
117
131
  msgid "Activate Zero Check"
@@ -123,6 +137,7 @@ msgid "Adds shopfloor priority/postpone fields"
123
137
  msgstr ""
124
138
 
125
139
  #. module: shopfloor
140
+ #. odoo-python
126
141
  #: code:addons/shopfloor/actions/message.py:0
127
142
  #, python-format
128
143
  msgid "All packages processed."
@@ -133,6 +148,11 @@ msgstr ""
133
148
  msgid "Allow Alternative Destination Is Possible"
134
149
  msgstr ""
135
150
 
151
+ #. module: shopfloor
152
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_alternative_destination_package_is_possible
153
+ msgid "Allow Alternative Destination Package Is Possible"
154
+ msgstr ""
155
+
136
156
  #. module: shopfloor
137
157
  #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_force_reservation_is_possible
138
158
  msgid "Allow Force Reservation Is Possible"
@@ -158,6 +178,11 @@ msgstr ""
158
178
  msgid "Allow create returns"
159
179
  msgstr ""
160
180
 
181
+ #. module: shopfloor
182
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_alternative_destination_package
183
+ msgid "Allow to change the destination package"
184
+ msgstr ""
185
+
161
186
  #. module: shopfloor
162
187
  #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_unreserve_other_moves
163
188
  msgid "Allow to process reserved quantities"
@@ -169,6 +194,7 @@ msgid "Allow to scan alternative destination locations"
169
194
  msgstr ""
170
195
 
171
196
  #. module: shopfloor
197
+ #. odoo-python
172
198
  #: code:addons/shopfloor/actions/message.py:0
173
199
  #, python-format
174
200
  msgid "Are you sure?"
@@ -185,12 +211,14 @@ msgid "Automatically post line"
185
211
  msgstr ""
186
212
 
187
213
  #. module: shopfloor
214
+ #. odoo-python
188
215
  #: code:addons/shopfloor/actions/message.py:0
189
216
  #, python-format
190
217
  msgid "Barcode does not match with {}."
191
218
  msgstr ""
192
219
 
193
220
  #. module: shopfloor
221
+ #. odoo-python
194
222
  #: code:addons/shopfloor/actions/message.py:0
195
223
  #, python-format
196
224
  msgid "Barcode not found"
@@ -202,18 +230,21 @@ msgid "Batch Transfer"
202
230
  msgstr ""
203
231
 
204
232
  #. module: shopfloor
233
+ #. odoo-python
205
234
  #: code:addons/shopfloor/actions/message.py:0
206
235
  #, python-format
207
236
  msgid "Batch Transfer complete"
208
237
  msgstr ""
209
238
 
210
239
  #. module: shopfloor
240
+ #. odoo-python
211
241
  #: code:addons/shopfloor/actions/message.py:0
212
242
  #, python-format
213
243
  msgid "Batch Transfer line done"
214
244
  msgstr ""
215
245
 
216
246
  #. module: shopfloor
247
+ #. odoo-python
217
248
  #: code:addons/shopfloor/actions/message.py:0
218
249
  #, python-format
219
250
  msgid "Bin %s doesn't exist"
@@ -225,12 +256,14 @@ msgid "Bulk Line Count"
225
256
  msgstr ""
226
257
 
227
258
  #. module: shopfloor
259
+ #. odoo-python
228
260
  #: code:addons/shopfloor/actions/message.py:0
229
261
  #, python-format
230
262
  msgid "Canceled, you can scan a new pack."
231
263
  msgstr ""
232
264
 
233
265
  #. module: shopfloor
266
+ #. odoo-python
234
267
  #: code:addons/shopfloor/actions/message.py:0
235
268
  #, python-format
236
269
  msgid "Cannot change to lot {} which is entirely picked."
@@ -261,36 +294,35 @@ msgid "Collect multiple moves on a same destination package"
261
294
  msgstr ""
262
295
 
263
296
  #. module: shopfloor
297
+ #. odoo-python
264
298
  #: code:addons/shopfloor/actions/message.py:0
265
299
  #, python-format
266
- msgid "Confirm location change from %s to %s?"
300
+ msgid "Confirm location change from %(location_from)s to %(location_to)s?"
267
301
  msgstr ""
268
302
 
269
303
  #. module: shopfloor
304
+ #. odoo-python
270
305
  #: code:addons/shopfloor/actions/message.py:0
271
306
  #, python-format
272
307
  msgid "Content transfer to {} completed"
273
308
  msgstr ""
274
309
 
275
310
  #. module: shopfloor
311
+ #. odoo-python
276
312
  #: code:addons/shopfloor/actions/message.py:0
277
313
  #, python-format
278
314
  msgid "Content transferred from %(location_name)s to %(location_dest_name)s."
279
315
  msgstr ""
280
316
 
281
317
  #. module: shopfloor
282
- #: code:addons/shopfloor/actions/inventory.py:0
283
- #, python-format
284
- msgid "Control stock issue in location {} for {}"
285
- msgstr ""
286
-
287
- #. module: shopfloor
318
+ #. odoo-python
288
319
  #: code:addons/shopfloor/actions/message.py:0
289
320
  #, python-format
290
321
  msgid "Create new PACK {}? Scan it again to confirm."
291
322
  msgstr ""
292
323
 
293
324
  #. module: shopfloor
325
+ #. odoo-python
294
326
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
295
327
  #, python-format
296
328
  msgid "Creation of moves is not allowed for menu {}."
@@ -309,6 +341,7 @@ msgid "Delivery"
309
341
  msgstr ""
310
342
 
311
343
  #. module: shopfloor
344
+ #. odoo-python
312
345
  #: code:addons/shopfloor/actions/message.py:0
313
346
  #, python-format
314
347
  msgid ""
@@ -316,6 +349,11 @@ msgid ""
316
349
  "the same package."
317
350
  msgstr ""
318
351
 
352
+ #. module: shopfloor
353
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__result_package_id
354
+ msgid "Destination Package"
355
+ msgstr ""
356
+
319
357
  #. module: shopfloor
320
358
  #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__disable_full_bin_action_is_possible
321
359
  msgid "Disable Full Bin Action Is Possible"
@@ -326,23 +364,6 @@ msgstr ""
326
364
  msgid "Disable full bin action"
327
365
  msgstr ""
328
366
 
329
- #. module: shopfloor
330
- #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_app__display_name
331
- #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__display_name
332
- #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_priority_postpone_mixin__display_name
333
- #: model:ir.model.fields,field_description:shopfloor.field_stock_inventory__display_name
334
- #: model:ir.model.fields,field_description:shopfloor.field_stock_location__display_name
335
- #: model:ir.model.fields,field_description:shopfloor.field_stock_move__display_name
336
- #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__display_name
337
- #: model:ir.model.fields,field_description:shopfloor.field_stock_package_level__display_name
338
- #: model:ir.model.fields,field_description:shopfloor.field_stock_picking__display_name
339
- #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_batch__display_name
340
- #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_type__display_name
341
- #: model:ir.model.fields,field_description:shopfloor.field_stock_quant__display_name
342
- #: model:ir.model.fields,field_description:shopfloor.field_stock_quant_package__display_name
343
- msgid "Display Name"
344
- msgstr ""
345
-
346
367
  #. module: shopfloor
347
368
  #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__show_oneline_package_content
348
369
  msgid "Display the content of package if it contains 1 line only"
@@ -372,26 +393,15 @@ msgid "From"
372
393
  msgstr ""
373
394
 
374
395
  #. module: shopfloor
396
+ #. odoo-python
375
397
  #: code:addons/shopfloor/actions/message.py:0
376
398
  #, python-format
377
399
  msgid "Goods packed into {0.name}"
378
400
  msgstr ""
379
401
 
380
402
  #. module: shopfloor
381
- #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_app__id
382
- #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__id
383
- #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_priority_postpone_mixin__id
384
- #: model:ir.model.fields,field_description:shopfloor.field_stock_inventory__id
385
- #: model:ir.model.fields,field_description:shopfloor.field_stock_location__id
386
- #: model:ir.model.fields,field_description:shopfloor.field_stock_move__id
387
- #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__id
388
- #: model:ir.model.fields,field_description:shopfloor.field_stock_package_level__id
389
- #: model:ir.model.fields,field_description:shopfloor.field_stock_picking__id
390
- #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_batch__id
391
- #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_type__id
392
- #: model:ir.model.fields,field_description:shopfloor.field_stock_quant__id
393
- #: model:ir.model.fields,field_description:shopfloor.field_stock_quant_package__id
394
- msgid "ID"
403
+ #: model:ir.model.fields,help:shopfloor.field_stock_move_line__result_package_id
404
+ msgid "If set, the operations are packed into this package"
395
405
  msgstr ""
396
406
 
397
407
  #. module: shopfloor
@@ -420,57 +430,42 @@ msgid "Ignore transfers when no put-away is available"
420
430
  msgstr ""
421
431
 
422
432
  #. module: shopfloor
433
+ #. odoo-python
423
434
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
424
435
  #, python-format
425
436
  msgid "Ignoring not found putaway is not allowed for menu {}."
426
437
  msgstr ""
427
438
 
428
- #. module: shopfloor
429
- #: model:ir.model,name:shopfloor.model_stock_inventory
430
- msgid "Inventory"
431
- msgstr ""
432
-
433
439
  #. module: shopfloor
434
440
  #: model:ir.model,name:shopfloor.model_stock_location
435
441
  msgid "Inventory Locations"
436
442
  msgstr ""
437
443
 
438
444
  #. module: shopfloor
439
- #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_app____last_update
440
- #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu____last_update
441
- #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_priority_postpone_mixin____last_update
442
- #: model:ir.model.fields,field_description:shopfloor.field_stock_inventory____last_update
443
- #: model:ir.model.fields,field_description:shopfloor.field_stock_location____last_update
444
- #: model:ir.model.fields,field_description:shopfloor.field_stock_move____last_update
445
- #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line____last_update
446
- #: model:ir.model.fields,field_description:shopfloor.field_stock_package_level____last_update
447
- #: model:ir.model.fields,field_description:shopfloor.field_stock_picking____last_update
448
- #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_batch____last_update
449
- #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_type____last_update
450
- #: model:ir.model.fields,field_description:shopfloor.field_stock_quant____last_update
451
- #: model:ir.model.fields,field_description:shopfloor.field_stock_quant_package____last_update
452
- msgid "Last Modified on"
453
- msgstr ""
454
-
455
- #. module: shopfloor
445
+ #. odoo-python
456
446
  #: code:addons/shopfloor/actions/completion_info.py:0
457
447
  #, python-format
458
- msgid "Last operation of transfer %(picking_names)s. Next operation (%(next_picking_names)s) is ready to "
448
+ msgid ""
449
+ "Last operation of transfer %(picking_names)s. Next operation "
450
+ "(%(next_picking_names)s) is ready to proceed."
459
451
  msgstr ""
460
452
 
461
453
  #. module: shopfloor
454
+ #. odoo-python
462
455
  #: code:addons/shopfloor/services/checkout.py:0
463
456
  #, python-format
464
457
  msgid "Line cancelled"
465
458
  msgstr ""
466
459
 
467
460
  #. module: shopfloor
461
+ #. odoo-python
468
462
  #: code:addons/shopfloor/actions/message.py:0
469
463
  #, python-format
470
464
  msgid "Lines have different destination location."
471
465
  msgstr ""
472
466
 
473
467
  #. module: shopfloor
468
+ #. odoo-python
474
469
  #: code:addons/shopfloor/actions/message.py:0
475
470
  #, python-format
476
471
  msgid "Location %s doesn't contain any package."
@@ -488,30 +483,56 @@ msgid "Location content transfer"
488
483
  msgstr ""
489
484
 
490
485
  #. module: shopfloor
486
+ #. odoo-python
491
487
  #: code:addons/shopfloor/actions/message.py:0
492
488
  #, python-format
493
489
  msgid "Location empty. Try scanning a package"
494
490
  msgstr ""
495
491
 
496
492
  #. module: shopfloor
493
+ #. odoo-python
497
494
  #: code:addons/shopfloor/actions/message.py:0
498
495
  #, python-format
499
496
  msgid "Location not allowed here."
500
497
  msgstr ""
501
498
 
502
499
  #. module: shopfloor
500
+ #. odoo-python
503
501
  #: code:addons/shopfloor/actions/message.py:0
504
502
  #, python-format
505
503
  msgid "Location {} empty"
506
504
  msgstr ""
507
505
 
508
506
  #. module: shopfloor
507
+ #. odoo-python
508
+ #: code:addons/shopfloor/actions/message.py:0
509
+ #, python-format
510
+ msgid "Lot %(lot_name)s not found in location %(location_name)s"
511
+ msgstr ""
512
+
513
+ #. module: shopfloor
514
+ #. odoo-python
515
+ #: code:addons/shopfloor/actions/message.py:0
516
+ #, python-format
517
+ msgid "Lot %(lot_name)s not found in transfer %(picking_name)s"
518
+ msgstr ""
519
+
520
+ #. module: shopfloor
521
+ #. odoo-python
522
+ #: code:addons/shopfloor/actions/message.py:0
523
+ #, python-format
524
+ msgid "Lot %(old_lot_name)s replaced by lot %(new_lot_name)s."
525
+ msgstr ""
526
+
527
+ #. module: shopfloor
528
+ #. odoo-python
509
529
  #: code:addons/shopfloor/services/checkout.py:0
510
530
  #, python-format
511
531
  msgid "Lot is not in the current transfer."
512
532
  msgstr ""
513
533
 
514
534
  #. module: shopfloor
535
+ #. odoo-python
515
536
  #: code:addons/shopfloor/actions/message.py:0
516
537
  #, python-format
517
538
  msgid ""
@@ -520,24 +541,21 @@ msgid ""
520
541
  msgstr ""
521
542
 
522
543
  #. module: shopfloor
544
+ #. odoo-python
523
545
  #: code:addons/shopfloor/services/delivery.py:0
524
546
  #, python-format
525
547
  msgid "Lot {} belongs to a picking without a valid state."
526
548
  msgstr ""
527
549
 
528
550
  #. module: shopfloor
551
+ #. odoo-python
529
552
  #: code:addons/shopfloor/actions/message.py:0
530
553
  #, python-format
531
554
  msgid "Lot {} is for another product."
532
555
  msgstr ""
533
556
 
534
557
  #. module: shopfloor
535
- #: code:addons/shopfloor/actions/message.py:0
536
- #, python-format
537
- msgid "Lot %(old_lot_name)s replaced by lot %(new_lot_name)s."
538
- msgstr ""
539
-
540
- #. module: shopfloor
558
+ #. odoo-python
541
559
  #: code:addons/shopfloor/actions/inventory.py:0
542
560
  #, python-format
543
561
  msgid "Lot: "
@@ -549,6 +567,7 @@ msgid "Menu displayed in the scanner application"
549
567
  msgstr ""
550
568
 
551
569
  #. module: shopfloor
570
+ #. odoo-python
552
571
  #: code:addons/shopfloor/actions/message.py:0
553
572
  #, python-format
554
573
  msgid "Missing expiration date."
@@ -571,12 +590,14 @@ msgid "Move Line Count"
571
590
  msgstr ""
572
591
 
573
592
  #. module: shopfloor
593
+ #. odoo-python
574
594
  #: code:addons/shopfloor/actions/message.py:0
575
595
  #, python-format
576
596
  msgid "Move already processed."
577
597
  msgstr ""
578
598
 
579
599
  #. module: shopfloor
600
+ #. odoo-python
580
601
  #: code:addons/shopfloor/models/stock_move_line.py:0
581
602
  #, python-format
582
603
  msgid "Move lines processed have to share the same source location."
@@ -588,12 +609,14 @@ msgid "Multiple Move Single Pack Is Possible"
588
609
  msgstr ""
589
610
 
590
611
  #. module: shopfloor
612
+ #. odoo-python
591
613
  #: code:addons/shopfloor/services/checkout.py:0
592
614
  #, python-format
593
615
  msgid "Negative quantity not allowed."
594
616
  msgstr ""
595
617
 
596
618
  #. module: shopfloor
619
+ #. odoo-python
597
620
  #: code:addons/shopfloor/actions/message.py:0
598
621
  #, python-format
599
622
  msgid "New move lines cannot be assigned: canceled."
@@ -605,138 +628,168 @@ msgid "No Prefill Qty Is Possible"
605
628
  msgstr ""
606
629
 
607
630
  #. module: shopfloor
631
+ #. odoo-python
608
632
  #: code:addons/shopfloor/actions/message.py:0
609
633
  #, python-format
610
634
  msgid "No available work could be found."
611
635
  msgstr ""
612
636
 
613
637
  #. module: shopfloor
638
+ #. odoo-python
614
639
  #: code:addons/shopfloor/actions/message.py:0
615
640
  #, python-format
616
641
  msgid "No delivery package type available."
617
642
  msgstr ""
618
643
 
619
644
  #. module: shopfloor
645
+ #. odoo-python
620
646
  #: code:addons/shopfloor/actions/message.py:0
621
647
  #, python-format
622
648
  msgid "No line to pack found."
623
649
  msgstr ""
624
650
 
625
651
  #. module: shopfloor
652
+ #. odoo-python
653
+ #: code:addons/shopfloor/actions/message.py:0
654
+ #, python-format
655
+ msgid "No lines to process, set quantities on some"
656
+ msgstr ""
657
+
658
+ #. module: shopfloor
659
+ #. odoo-python
626
660
  #: code:addons/shopfloor/actions/message.py:0
627
661
  #, python-format
628
662
  msgid "No lines to process."
629
663
  msgstr ""
630
664
 
631
665
  #. module: shopfloor
666
+ #. odoo-python
632
667
  #: code:addons/shopfloor/actions/message.py:0
633
668
  #, python-format
634
669
  msgid "No location found for this barcode."
635
670
  msgstr ""
636
671
 
637
672
  #. module: shopfloor
673
+ #. odoo-python
638
674
  #: code:addons/shopfloor/actions/message.py:0
639
675
  #, python-format
640
676
  msgid "No lot found for {}"
641
677
  msgstr ""
642
678
 
643
679
  #. module: shopfloor
680
+ #. odoo-python
644
681
  #: code:addons/shopfloor/services/cluster_picking.py:0
645
682
  #, python-format
646
683
  msgid "No more work to do, please create a new batch transfer"
647
684
  msgstr ""
648
685
 
649
686
  #. module: shopfloor
687
+ #. odoo-python
650
688
  #: code:addons/shopfloor/actions/message.py:0
651
689
  #, python-format
652
690
  msgid "No operation found for this menu and profile."
653
691
  msgstr ""
654
692
 
655
693
  #. module: shopfloor
694
+ #. odoo-python
656
695
  #: code:addons/shopfloor/actions/message.py:0
657
696
  #, python-format
658
697
  msgid "No operation type found for this menu and profile."
659
698
  msgstr ""
660
699
 
661
700
  #. module: shopfloor
701
+ #. odoo-python
662
702
  #: code:addons/shopfloor/services/service.py:0
663
703
  #, python-format
664
704
  msgid "No operation types configured on menu {}."
665
705
  msgstr ""
666
706
 
667
707
  #. module: shopfloor
708
+ #. odoo-python
668
709
  #: code:addons/shopfloor/actions/message.py:0
669
710
  #, python-format
670
711
  msgid "No package or lot found for barcode {}."
671
712
  msgstr ""
672
713
 
673
714
  #. module: shopfloor
715
+ #. odoo-python
674
716
  #: code:addons/shopfloor/actions/message.py:0
675
717
  #, python-format
676
718
  msgid "No pending operation for package %s."
677
719
  msgstr ""
678
720
 
679
721
  #. module: shopfloor
722
+ #. odoo-python
680
723
  #: code:addons/shopfloor/actions/message.py:0
681
724
  #, python-format
682
725
  msgid "No product found for {}"
683
726
  msgstr ""
684
727
 
685
728
  #. module: shopfloor
729
+ #. odoo-python
686
730
  #: code:addons/shopfloor/actions/message.py:0
687
731
  #, python-format
688
732
  msgid "No product found in {}"
689
733
  msgstr ""
690
734
 
691
735
  #. module: shopfloor
736
+ #. odoo-python
692
737
  #: code:addons/shopfloor/actions/message.py:0
693
738
  #, python-format
694
739
  msgid "No putaway destination is available."
695
740
  msgstr ""
696
741
 
697
742
  #. module: shopfloor
743
+ #. odoo-python
698
744
  #: code:addons/shopfloor/actions/message.py:0
699
745
  #, python-format
700
746
  msgid "No quantity has been processed, unable to complete the transfer."
701
747
  msgstr ""
702
748
 
703
749
  #. module: shopfloor
750
+ #. odoo-python
704
751
  #: code:addons/shopfloor/actions/message.py:0
705
752
  #, python-format
706
753
  msgid "No transfer found for the scanned lot."
707
754
  msgstr ""
708
755
 
709
756
  #. module: shopfloor
757
+ #. odoo-python
710
758
  #: code:addons/shopfloor/actions/message.py:0
711
759
  #, python-format
712
760
  msgid "No transfer found for the scanned packaging."
713
761
  msgstr ""
714
762
 
715
763
  #. module: shopfloor
764
+ #. odoo-python
716
765
  #: code:addons/shopfloor/actions/message.py:0
717
766
  #, python-format
718
767
  msgid "No transfer found for this lot."
719
768
  msgstr ""
720
769
 
721
770
  #. module: shopfloor
771
+ #. odoo-python
722
772
  #: code:addons/shopfloor/actions/message.py:0
723
773
  #, python-format
724
774
  msgid "No transfer found for this product."
725
775
  msgstr ""
726
776
 
727
777
  #. module: shopfloor
778
+ #. odoo-python
728
779
  #: code:addons/shopfloor/actions/message.py:0
729
780
  #, python-format
730
781
  msgid "No valid package to select."
731
782
  msgstr ""
732
783
 
733
784
  #. module: shopfloor
785
+ #. odoo-python
734
786
  #: code:addons/shopfloor/actions/message.py:0
735
787
  #, python-format
736
788
  msgid "No value"
737
789
  msgstr ""
738
790
 
739
791
  #. module: shopfloor
792
+ #. odoo-python
740
793
  #: code:addons/shopfloor/actions/message.py:0
741
794
  #, python-format
742
795
  msgid ""
@@ -750,12 +803,14 @@ msgid "Operation Types"
750
803
  msgstr ""
751
804
 
752
805
  #. module: shopfloor
806
+ #. odoo-python
753
807
  #: code:addons/shopfloor/actions/message.py:0
754
808
  #, python-format
755
809
  msgid "Operation already processed."
756
810
  msgstr ""
757
811
 
758
812
  #. module: shopfloor
813
+ #. odoo-python
759
814
  #: code:addons/shopfloor/actions/message.py:0
760
815
  #, python-format
761
816
  msgid ""
@@ -764,6 +819,7 @@ msgid ""
764
819
  msgstr ""
765
820
 
766
821
  #. module: shopfloor
822
+ #. odoo-python
767
823
  #: code:addons/shopfloor/actions/message.py:0
768
824
  #, python-format
769
825
  msgid "Operation's already running. Would you like to take it over?"
@@ -775,99 +831,133 @@ msgid "Package"
775
831
  msgstr ""
776
832
 
777
833
  #. module: shopfloor
778
- #: model:ir.model.fields,field_description:shopfloor.field_stock_picking__package_level_count
779
- msgid "Package Level Count"
834
+ #. odoo-python
835
+ #: code:addons/shopfloor/actions/message.py:0
836
+ #, python-format
837
+ msgid "Package %(old_package_name)s replaced by package %(new_package_name)s."
780
838
  msgstr ""
781
839
 
782
840
  #. module: shopfloor
783
- #: code:addons/shopfloor/services/checkout.py:0
841
+ #. odoo-python
842
+ #: code:addons/shopfloor/actions/message.py:0
784
843
  #, python-format
785
- msgid "Package cancelled"
844
+ msgid ""
845
+ "Package %(package_name)s cannot be picked, already moved by transfer "
846
+ "%(picking_name)s."
786
847
  msgstr ""
787
848
 
788
849
  #. module: shopfloor
850
+ #. odoo-python
789
851
  #: code:addons/shopfloor/actions/message.py:0
790
852
  #, python-format
791
- msgid "Package has been opened. You can move partial quantities."
853
+ msgid "Package %(package_name)s cannot be used: %(error)s"
792
854
  msgstr ""
793
855
 
794
856
  #. module: shopfloor
795
- #: code:addons/shopfloor/services/location_content_transfer.py:0
857
+ #. odoo-python
858
+ #: code:addons/shopfloor/actions/message.py:0
796
859
  #, python-format
797
- msgid "Package level has to be in draft"
860
+ msgid ""
861
+ "Package %(package_name)s contains already lines from a different operation "
862
+ "type %(picking_type_name)s."
798
863
  msgstr ""
799
864
 
800
865
  #. module: shopfloor
801
- #: code:addons/shopfloor/models/stock_quant_package.py:0
866
+ #. odoo-python
867
+ #: code:addons/shopfloor/models/stock_move_line.py:0
802
868
  #, python-format
803
- msgid "Package name must be unique!"
869
+ msgid ""
870
+ "Package %(package_name)s does not contain available product "
871
+ "%(product_name)s, cannot replace package."
804
872
  msgstr ""
805
873
 
806
874
  #. module: shopfloor
807
- #: code:addons/shopfloor/services/delivery.py:0
875
+ #. odoo-python
876
+ #: code:addons/shopfloor/actions/message.py:0
808
877
  #, python-format
809
- msgid "Package {} belongs to a picking without a valid state."
878
+ msgid "Package %(package_name)s is not available in transfer %(picking_name)s."
810
879
  msgstr ""
811
880
 
812
881
  #. module: shopfloor
882
+ #. odoo-python
813
883
  #: code:addons/shopfloor/actions/message.py:0
814
884
  #, python-format
815
- msgid "Package %(package_name)s cannot be picked, already moved by transfer %(picking_name)s."
885
+ msgid "Package %(package_name)s not found in location %(location_name)s"
816
886
  msgstr ""
817
887
 
818
888
  #. module: shopfloor
889
+ #. odoo-python
819
890
  #: code:addons/shopfloor/actions/message.py:0
820
891
  #, python-format
821
- msgid "Package %(package_name)s cannot be used: %(error)s"
892
+ msgid "Package %(package_name)s not found in transfer %(picking_name)s"
822
893
  msgstr ""
823
894
 
824
895
  #. module: shopfloor
825
- #: code:addons/shopfloor/models/stock_move_line.py:0
896
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_picking__package_level_count
897
+ msgid "Package Level Count"
898
+ msgstr ""
899
+
900
+ #. module: shopfloor
901
+ #. odoo-python
902
+ #: code:addons/shopfloor/services/checkout.py:0
826
903
  #, python-format
827
- msgid ""
828
- "Package %(package_name)s does not contain available product %(product_name)s, cannot replace package."
904
+ msgid "Package cancelled"
829
905
  msgstr ""
830
906
 
831
907
  #. module: shopfloor
908
+ #. odoo-python
832
909
  #: code:addons/shopfloor/actions/message.py:0
833
910
  #, python-format
834
- msgid "Package {} has a different content."
911
+ msgid "Package has been opened. You can move partial quantities."
835
912
  msgstr ""
836
913
 
837
914
  #. module: shopfloor
838
- #: code:addons/shopfloor/models/stock_move_line.py:0
915
+ #. odoo-python
916
+ #: code:addons/shopfloor/models/stock_quant_package.py:0
839
917
  #, python-format
840
- msgid "Package {} has been partially picked in another location"
918
+ msgid "Package name must be unique!"
841
919
  msgstr ""
842
920
 
843
921
  #. module: shopfloor
844
- #: code:addons/shopfloor/actions/message.py:0
922
+ #. odoo-python
923
+ #: code:addons/shopfloor/services/delivery.py:0
845
924
  #, python-format
846
- msgid "Package {} is already used."
925
+ msgid "Package {} belongs to a picking without a valid state."
847
926
  msgstr ""
848
927
 
849
928
  #. module: shopfloor
929
+ #. odoo-python
850
930
  #: code:addons/shopfloor/actions/message.py:0
851
931
  #, python-format
852
- msgid "Package %(package_name)s is not available in transfer %(picking_name)s."
932
+ msgid "Package {} has a different content."
853
933
  msgstr ""
854
934
 
855
935
  #. module: shopfloor
856
- #: code:addons/shopfloor/actions/message.py:0
936
+ #. odoo-python
937
+ #: code:addons/shopfloor/models/stock_move_line.py:0
857
938
  #, python-format
858
- msgid "Package {} is not empty."
939
+ msgid "Package {} has been partially picked in another location"
859
940
  msgstr ""
860
941
 
861
942
  #. module: shopfloor
862
- #: code:addons/shopfloor/services/checkout.py:0
943
+ #. odoo-python
944
+ #: code:addons/shopfloor/actions/message.py:0
863
945
  #, python-format
864
- msgid "Package {} is not in the current transfer."
946
+ msgid "Package {} is already used."
865
947
  msgstr ""
866
948
 
867
949
  #. module: shopfloor
950
+ #. odoo-python
868
951
  #: code:addons/shopfloor/actions/message.py:0
869
952
  #, python-format
870
- msgid "Package %(old_package_name)s replaced by package %(new_package_name)s."
953
+ msgid "Package {} is not empty."
954
+ msgstr ""
955
+
956
+ #. module: shopfloor
957
+ #. odoo-python
958
+ #: code:addons/shopfloor/services/checkout.py:0
959
+ #, python-format
960
+ msgid "Package {} is not in the current transfer."
871
961
  msgstr ""
872
962
 
873
963
  #. module: shopfloor
@@ -876,24 +966,37 @@ msgid "Packages"
876
966
  msgstr ""
877
967
 
878
968
  #. module: shopfloor
969
+ #. odoo-python
879
970
  #: code:addons/shopfloor/actions/message.py:0
880
971
  #, python-format
881
- msgid "Packaging '%(package_name)s' is not allowed for carrier %(carrier_name)s."
972
+ msgid ""
973
+ "Packaging '%(package_name)s' is not allowed for carrier %(carrier_name)s.or "
974
+ "carrier %(carrier_name)s."
882
975
  msgstr ""
883
976
 
884
977
  #. module: shopfloor
978
+ #. odoo-python
885
979
  #: code:addons/shopfloor/services/checkout.py:0
886
980
  #, python-format
887
981
  msgid "Packaging changed on package {}"
888
982
  msgstr ""
889
983
 
890
984
  #. module: shopfloor
985
+ #. odoo-python
891
986
  #: code:addons/shopfloor/actions/message.py:0
892
987
  #, python-format
893
988
  msgid "Packaging not found in the current transfer."
894
989
  msgstr ""
895
990
 
896
991
  #. module: shopfloor
992
+ #. odoo-python
993
+ #: code:addons/shopfloor/actions/message.py:0
994
+ #, python-format
995
+ msgid "Packaging {} dimension updated."
996
+ msgstr ""
997
+
998
+ #. module: shopfloor
999
+ #. odoo-python
897
1000
  #: code:addons/shopfloor/actions/message.py:0
898
1001
  #, python-format
899
1002
  msgid ""
@@ -912,6 +1015,7 @@ msgid "Pick and pack at the same time"
912
1015
  msgstr ""
913
1016
 
914
1017
  #. module: shopfloor
1018
+ #. odoo-python
915
1019
  #: code:addons/shopfloor/actions/change_package_lot.py:0
916
1020
  #, python-format
917
1021
  msgid "Pick: stock issue on lot: %(lot_name)s found in %(location_name)s"
@@ -933,18 +1037,21 @@ msgid "Picking Type"
933
1037
  msgstr ""
934
1038
 
935
1039
  #. module: shopfloor
1040
+ #. odoo-python
936
1041
  #: code:addons/shopfloor/actions/message.py:0
937
1042
  #, python-format
938
1043
  msgid "Picking has already been started in this location in transfer(s): {}"
939
1044
  msgstr ""
940
1045
 
941
1046
  #. module: shopfloor
1047
+ #. odoo-python
942
1048
  #: code:addons/shopfloor/actions/message.py:0
943
1049
  #, python-format
944
1050
  msgid "Picking type {} complete."
945
1051
  msgstr ""
946
1052
 
947
1053
  #. module: shopfloor
1054
+ #. odoo-python
948
1055
  #: code:addons/shopfloor/actions/message.py:0
949
1056
  #, python-format
950
1057
  msgid "Place it in {}?"
@@ -956,6 +1063,7 @@ msgid "Planned Move Line"
956
1063
  msgstr ""
957
1064
 
958
1065
  #. module: shopfloor
1066
+ #. odoo-python
959
1067
  #: code:addons/shopfloor/actions/message.py:0
960
1068
  #, python-format
961
1069
  msgid ""
@@ -963,12 +1071,14 @@ msgid ""
963
1071
  msgstr ""
964
1072
 
965
1073
  #. module: shopfloor
1074
+ #. odoo-python
966
1075
  #: code:addons/shopfloor/actions/message.py:0
967
1076
  #, python-format
968
1077
  msgid "Please scan the location first."
969
1078
  msgstr ""
970
1079
 
971
1080
  #. module: shopfloor
1081
+ #. odoo-python
972
1082
  #: code:addons/shopfloor/actions/message.py:0
973
1083
  #, python-format
974
1084
  msgid "Please scan the package."
@@ -985,41 +1095,56 @@ msgid "Process as pre-packaged"
985
1095
  msgstr ""
986
1096
 
987
1097
  #. module: shopfloor
1098
+ #. odoo-python
988
1099
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
989
1100
  #, python-format
990
1101
  msgid "Processing reserved quantities is not allowed for menu {}."
991
1102
  msgstr ""
992
1103
 
1104
+ #. module: shopfloor
1105
+ #. odoo-python
1106
+ #: code:addons/shopfloor/actions/message.py:0
1107
+ #, python-format
1108
+ msgid ""
1109
+ "Product %(product_name)s not found in location %(location_name)s or transfer "
1110
+ "%(picking_name)s."
1111
+ msgstr ""
1112
+
993
1113
  #. module: shopfloor
994
1114
  #: model:ir.model,name:shopfloor.model_stock_move_line
995
1115
  msgid "Product Moves (Stock Move Line)"
996
1116
  msgstr ""
997
1117
 
998
1118
  #. module: shopfloor
1119
+ #. odoo-python
999
1120
  #: code:addons/shopfloor/actions/message.py:0
1000
1121
  #, python-format
1001
1122
  msgid "Product is not in the current transfer."
1002
1123
  msgstr ""
1003
1124
 
1004
1125
  #. module: shopfloor
1126
+ #. odoo-python
1005
1127
  #: code:addons/shopfloor/actions/message.py:0
1006
1128
  #, python-format
1007
1129
  msgid "Product tracked by lot, please scan one."
1008
1130
  msgstr ""
1009
1131
 
1010
1132
  #. module: shopfloor
1133
+ #. odoo-python
1011
1134
  #: code:addons/shopfloor/services/delivery.py:0
1012
1135
  #, python-format
1013
1136
  msgid "Product {} belongs to a picking without a valid state."
1014
1137
  msgstr ""
1015
1138
 
1016
1139
  #. module: shopfloor
1140
+ #. odoo-python
1017
1141
  #: code:addons/shopfloor/actions/message.py:0
1018
1142
  #, python-format
1019
1143
  msgid "Product {} found in multiple locations. Scan your location first."
1020
1144
  msgstr ""
1021
1145
 
1022
1146
  #. module: shopfloor
1147
+ #. odoo-python
1023
1148
  #: code:addons/shopfloor/services/checkout.py:0
1024
1149
  #, python-format
1025
1150
  msgid "Product(s) processed as raw product(s)"
@@ -1036,12 +1161,14 @@ msgid "Real pack weight or the estimated one."
1036
1161
  msgstr ""
1037
1162
 
1038
1163
  #. module: shopfloor
1164
+ #. odoo-python
1039
1165
  #: code:addons/shopfloor/actions/message.py:0
1040
1166
  #, python-format
1041
1167
  msgid "Recovered previous session."
1042
1168
  msgstr ""
1043
1169
 
1044
1170
  #. module: shopfloor
1171
+ #. odoo-python
1045
1172
  #: code:addons/shopfloor/services/checkout.py:0
1046
1173
  #, python-format
1047
1174
  msgid "Remaining raw product not packed, proceed anyway?"
@@ -1054,11 +1181,17 @@ msgid "Reserved Move Line"
1054
1181
  msgstr ""
1055
1182
 
1056
1183
  #. module: shopfloor
1184
+ #. odoo-python
1057
1185
  #: code:addons/shopfloor/actions/message.py:0
1058
1186
  #, python-format
1059
1187
  msgid "Restart the operation, someone has canceled it."
1060
1188
  msgstr ""
1061
1189
 
1190
+ #. module: shopfloor
1191
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__scan_location_or_pack_first
1192
+ msgid "Restrict scannable barcode at work selection"
1193
+ msgstr ""
1194
+
1062
1195
  #. module: shopfloor
1063
1196
  #: model_terms:ir.ui.view,arch_db:shopfloor.view_stock_move_line_detailed_operation_tree
1064
1197
  msgid "SF Priority"
@@ -1080,6 +1213,7 @@ msgid "SF unloaded"
1080
1213
  msgstr ""
1081
1214
 
1082
1215
  #. module: shopfloor
1216
+ #. odoo-python
1083
1217
  #: code:addons/shopfloor/actions/message.py:0
1084
1218
  #, python-format
1085
1219
  msgid "Same package {} is already assigned."
@@ -1091,27 +1225,26 @@ msgid "Scan Location Or Pack First Is Possible"
1091
1225
  msgstr ""
1092
1226
 
1093
1227
  #. module: shopfloor
1094
- #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__scan_location_or_pack_first
1095
- msgid "Scan first location or pack"
1096
- msgstr ""
1097
-
1098
- #. module: shopfloor
1228
+ #. odoo-python
1099
1229
  #: code:addons/shopfloor/actions/message.py:0
1100
1230
  #, python-format
1101
1231
  msgid "Scan the destination location"
1102
1232
  msgstr ""
1103
1233
 
1104
1234
  #. module: shopfloor
1235
+ #. odoo-python
1105
1236
  #: code:addons/shopfloor/services/location_content_transfer.py:0
1106
1237
  #, python-format
1107
1238
  msgid "Scan the package"
1108
1239
  msgstr ""
1109
1240
 
1110
1241
  #. module: shopfloor
1242
+ #. odoo-python
1111
1243
  #: code:addons/shopfloor/models/shopfloor_menu.py:0
1112
1244
  #, python-format
1113
1245
  msgid ""
1114
- "Scenario `%(scenario_name)s` require(s) 'Move Entire Packages' to be enabled.\n"
1246
+ "Scenario `%(scenario_name)s` require(s) 'Move Entire Packages' to be "
1247
+ "enabled.\n"
1115
1248
  "These type(s) do not satisfy this constraint: \n"
1116
1249
  "%(bad_picking_types)s.\n"
1117
1250
  "Please, adjust your configuration."
@@ -1123,24 +1256,28 @@ msgid "Scheduled date until move is done, then date of actual move processing"
1123
1256
  msgstr ""
1124
1257
 
1125
1258
  #. module: shopfloor
1259
+ #. odoo-python
1126
1260
  #: code:addons/shopfloor/actions/message.py:0
1127
1261
  #, python-format
1128
- msgid "Several lots found in %s, please scan a lot."
1262
+ msgid "Several lots found in %(name)s, please scan the lot."
1129
1263
  msgstr ""
1130
1264
 
1131
1265
  #. module: shopfloor
1266
+ #. odoo-python
1132
1267
  #: code:addons/shopfloor/actions/message.py:0
1133
1268
  #, python-format
1134
- msgid "Several lots found in %s, please scan the lot."
1269
+ msgid "Several lots found in %s, please scan a lot."
1135
1270
  msgstr ""
1136
1271
 
1137
1272
  #. module: shopfloor
1273
+ #. odoo-python
1138
1274
  #: code:addons/shopfloor/actions/message.py:0
1139
1275
  #, python-format
1140
1276
  msgid "Several moves found for different lots, please scan the lot."
1141
1277
  msgstr ""
1142
1278
 
1143
1279
  #. module: shopfloor
1280
+ #. odoo-python
1144
1281
  #: code:addons/shopfloor/actions/message.py:0
1145
1282
  #, python-format
1146
1283
  msgid ""
@@ -1148,30 +1285,35 @@ msgid ""
1148
1285
  msgstr ""
1149
1286
 
1150
1287
  #. module: shopfloor
1288
+ #. odoo-python
1151
1289
  #: code:addons/shopfloor/actions/message.py:0
1152
1290
  #, python-format
1153
1291
  msgid "Several operation types found for this menu and profile."
1154
1292
  msgstr ""
1155
1293
 
1156
1294
  #. module: shopfloor
1295
+ #. odoo-python
1157
1296
  #: code:addons/shopfloor/actions/message.py:0
1158
1297
  #, python-format
1159
- msgid "Several packages found in %s, please scan a package."
1298
+ msgid "Several packages found in %(name)s, please scan a package."
1160
1299
  msgstr ""
1161
1300
 
1162
1301
  #. module: shopfloor
1302
+ #. odoo-python
1163
1303
  #: code:addons/shopfloor/actions/message.py:0
1164
1304
  #, python-format
1165
- msgid "Several products found in %s, please scan a product."
1305
+ msgid "Several products found in %(name)s, please scan a product."
1166
1306
  msgstr ""
1167
1307
 
1168
1308
  #. module: shopfloor
1309
+ #. odoo-python
1169
1310
  #: code:addons/shopfloor/actions/message.py:0
1170
1311
  #, python-format
1171
- msgid "Several products found in %s, please scan the product."
1312
+ msgid "Several products found in %(name)s, please scan the product."
1172
1313
  msgstr ""
1173
1314
 
1174
1315
  #. module: shopfloor
1316
+ #. odoo-python
1175
1317
  #: code:addons/shopfloor/services/checkout.py:0
1176
1318
  #, python-format
1177
1319
  msgid ""
@@ -1179,6 +1321,7 @@ msgid ""
1179
1321
  msgstr ""
1180
1322
 
1181
1323
  #. module: shopfloor
1324
+ #. odoo-python
1182
1325
  #: code:addons/shopfloor/actions/message.py:0
1183
1326
  #, python-format
1184
1327
  msgid "Several transfers found, please select a transfer manually."
@@ -1274,6 +1417,7 @@ msgid ""
1274
1417
  msgstr ""
1275
1418
 
1276
1419
  #. module: shopfloor
1420
+ #. odoo-python
1277
1421
  #: code:addons/shopfloor/actions/stock.py:0
1278
1422
  #, python-format
1279
1423
  msgid "Someone is already working on these transfers"
@@ -1354,50 +1498,65 @@ msgid "Technical field. Overrides operation priority in barcode scenario."
1354
1498
  msgstr ""
1355
1499
 
1356
1500
  #. module: shopfloor
1501
+ #. odoo-python
1357
1502
  #: code:addons/shopfloor/models/stock_picking.py:0
1358
1503
  #, python-format
1359
1504
  msgid ""
1360
- "The backorder <a href=\"#\" data-oe-model=\"stock.picking\" data-oe-id=\"%d"
1361
- "\">%s</a> has been created."
1505
+ "The backorder <a href=\"#\" data-oe-model=\"stock.picking\" data-oe-id="
1506
+ "\"%(new_picking_id)d\">%(new_picking_name)s</a> has been created."
1362
1507
  msgstr ""
1363
1508
 
1364
1509
  #. module: shopfloor
1510
+ #. odoo-python
1365
1511
  #: code:addons/shopfloor/actions/message.py:0
1366
1512
  #, python-format
1367
1513
  msgid "The content of {} cannot be transferred with this scenario."
1368
1514
  msgstr ""
1369
1515
 
1370
1516
  #. module: shopfloor
1517
+ #. odoo-python
1518
+ #: code:addons/shopfloor/models/stock_move_line.py:0
1519
+ #, python-format
1520
+ msgid "The demand cannot be negative"
1521
+ msgstr ""
1522
+
1523
+ #. module: shopfloor
1524
+ #. odoo-python
1371
1525
  #: code:addons/shopfloor/services/cluster_picking.py:0
1372
1526
  #, python-format
1373
1527
  msgid "The destination bin {} is not empty, please take another."
1374
1528
  msgstr ""
1375
1529
 
1376
1530
  #. module: shopfloor
1531
+ #. odoo-python
1377
1532
  #: code:addons/shopfloor/actions/message.py:0
1378
1533
  #, python-format
1379
1534
  msgid "The pack has been moved, you can scan a new pack."
1380
1535
  msgstr ""
1381
1536
 
1382
1537
  #. module: shopfloor
1538
+ #. odoo-python
1383
1539
  #: code:addons/shopfloor/actions/message.py:0
1384
1540
  #, python-format
1385
1541
  msgid "The package %s cannot be transferred with this scenario."
1386
1542
  msgstr ""
1387
1543
 
1388
1544
  #. module: shopfloor
1545
+ #. odoo-python
1389
1546
  #: code:addons/shopfloor/actions/message.py:0
1390
1547
  #, python-format
1391
1548
  msgid "The package %s doesn't contain any product to take."
1392
1549
  msgstr ""
1393
1550
 
1394
1551
  #. module: shopfloor
1552
+ #. odoo-python
1395
1553
  #: code:addons/shopfloor/actions/message.py:0
1396
1554
  #, python-format
1397
1555
  msgid "The package %s doesn't exist"
1398
1556
  msgstr ""
1399
1557
 
1400
1558
  #. module: shopfloor
1559
+ #. odoo-python
1401
1560
  #: code:addons/shopfloor/actions/message.py:0
1402
1561
  #, python-format
1403
1562
  msgid "The picked quantity must be a value above zero."
@@ -1414,12 +1573,14 @@ msgid ""
1414
1573
  msgstr ""
1415
1574
 
1416
1575
  #. module: shopfloor
1576
+ #. odoo-python
1417
1577
  #: code:addons/shopfloor/actions/message.py:0
1418
1578
  #, python-format
1419
1579
  msgid "The product/packaging you selected has already been returned."
1420
1580
  msgstr ""
1421
1581
 
1422
1582
  #. module: shopfloor
1583
+ #. odoo-python
1423
1584
  #: code:addons/shopfloor/actions/message.py:0
1424
1585
  #, python-format
1425
1586
  msgid ""
@@ -1428,12 +1589,21 @@ msgid ""
1428
1589
  msgstr ""
1429
1590
 
1430
1591
  #. module: shopfloor
1592
+ #. odoo-python
1593
+ #: code:addons/shopfloor/actions/change_package_lot.py:0
1594
+ #, python-format
1595
+ msgid "The quantity to do has changed!"
1596
+ msgstr ""
1597
+
1598
+ #. module: shopfloor
1599
+ #. odoo-python
1431
1600
  #: code:addons/shopfloor/actions/message.py:0
1432
1601
  #, python-format
1433
1602
  msgid "The record you were working on does not exist anymore."
1434
1603
  msgstr ""
1435
1604
 
1436
1605
  #. module: shopfloor
1606
+ #. odoo-python
1437
1607
  #: code:addons/shopfloor/models/stock_move.py:0
1438
1608
  #, python-format
1439
1609
  msgid "The split order {} has been created."
@@ -1445,48 +1615,56 @@ msgid "The stock operation where the packing has been made"
1445
1615
  msgstr ""
1446
1616
 
1447
1617
  #. module: shopfloor
1618
+ #. odoo-python
1448
1619
  #: code:addons/shopfloor/services/cluster_picking.py:0
1449
1620
  #, python-format
1450
1621
  msgid "This batch cannot be selected."
1451
1622
  msgstr ""
1452
1623
 
1453
1624
  #. module: shopfloor
1625
+ #. odoo-python
1454
1626
  #: code:addons/shopfloor/actions/message.py:0
1455
1627
  #, python-format
1456
1628
  msgid "This line has a package, please select the package instead."
1457
1629
  msgstr ""
1458
1630
 
1459
1631
  #. module: shopfloor
1632
+ #. odoo-python
1460
1633
  #: code:addons/shopfloor/actions/message.py:0
1461
1634
  #, python-format
1462
1635
  msgid "This line is not available in transfer {}."
1463
1636
  msgstr ""
1464
1637
 
1465
1638
  #. module: shopfloor
1639
+ #. odoo-python
1466
1640
  #: code:addons/shopfloor/services/location_content_transfer.py:0
1467
1641
  #, python-format
1468
1642
  msgid "This location content can't be moved at once."
1469
1643
  msgstr ""
1470
1644
 
1471
1645
  #. module: shopfloor
1646
+ #. odoo-python
1472
1647
  #: code:addons/shopfloor/actions/message.py:0
1473
1648
  #, python-format
1474
1649
  msgid "This location does not exist."
1475
1650
  msgstr ""
1476
1651
 
1477
1652
  #. module: shopfloor
1653
+ #. odoo-python
1478
1654
  #: code:addons/shopfloor/actions/message.py:0
1479
1655
  #, python-format
1480
1656
  msgid "This location only contains packages, please scan one of them."
1481
1657
  msgstr ""
1482
1658
 
1483
1659
  #. module: shopfloor
1660
+ #. odoo-python
1484
1661
  #: code:addons/shopfloor/actions/message.py:0
1485
1662
  #, python-format
1486
1663
  msgid "This location requires packages. Please scan a destination package."
1487
1664
  msgstr ""
1488
1665
 
1489
1666
  #. module: shopfloor
1667
+ #. odoo-python
1490
1668
  #: code:addons/shopfloor/actions/message.py:0
1491
1669
  #, python-format
1492
1670
  msgid ""
@@ -1494,30 +1672,35 @@ msgid ""
1494
1672
  msgstr ""
1495
1673
 
1496
1674
  #. module: shopfloor
1675
+ #. odoo-python
1497
1676
  #: code:addons/shopfloor/actions/message.py:0
1498
1677
  #, python-format
1499
1678
  msgid "This lot is part of multiple packages, please scan a package."
1500
1679
  msgstr ""
1501
1680
 
1502
1681
  #. module: shopfloor
1682
+ #. odoo-python
1503
1683
  #: code:addons/shopfloor/actions/message.py:0
1504
1684
  #, python-format
1505
1685
  msgid "This operation does not exist anymore."
1506
1686
  msgstr ""
1507
1687
 
1508
1688
  #. module: shopfloor
1689
+ #. odoo-python
1509
1690
  #: code:addons/shopfloor/actions/message.py:0
1510
1691
  #, python-format
1511
1692
  msgid "This package does not exist anymore."
1512
1693
  msgstr ""
1513
1694
 
1514
1695
  #. module: shopfloor
1696
+ #. odoo-python
1515
1697
  #: code:addons/shopfloor/actions/message.py:0
1516
1698
  #, python-format
1517
1699
  msgid "This product does not exist anymore."
1518
1700
  msgstr ""
1519
1701
 
1520
1702
  #. module: shopfloor
1703
+ #. odoo-python
1521
1704
  #: code:addons/shopfloor/actions/message.py:0
1522
1705
  #, python-format
1523
1706
  msgid ""
@@ -1525,18 +1708,21 @@ msgid ""
1525
1708
  msgstr ""
1526
1709
 
1527
1710
  #. module: shopfloor
1711
+ #. odoo-python
1528
1712
  #: code:addons/shopfloor/actions/message.py:0
1529
1713
  #, python-format
1530
1714
  msgid "This product is part of a package, please scan a package."
1531
1715
  msgstr ""
1532
1716
 
1533
1717
  #. module: shopfloor
1718
+ #. odoo-python
1534
1719
  #: code:addons/shopfloor/actions/message.py:0
1535
1720
  #, python-format
1536
1721
  msgid "This product is part of multiple packages, please scan a package."
1537
1722
  msgstr ""
1538
1723
 
1539
1724
  #. module: shopfloor
1725
+ #. odoo-python
1540
1726
  #: code:addons/shopfloor/actions/message.py:0
1541
1727
  #, python-format
1542
1728
  msgid ""
@@ -1544,6 +1730,7 @@ msgid ""
1544
1730
  msgstr ""
1545
1731
 
1546
1732
  #. module: shopfloor
1733
+ #. odoo-python
1547
1734
  #: code:addons/shopfloor/actions/message.py:0
1548
1735
  #, python-format
1549
1736
  msgid "This transfer does not exist or is not available anymore."
@@ -1562,24 +1749,37 @@ msgid "Transfer"
1562
1749
  msgstr ""
1563
1750
 
1564
1751
  #. module: shopfloor
1752
+ #. odoo-python
1565
1753
  #: code:addons/shopfloor/actions/message.py:0
1566
1754
  #, python-format
1567
1755
  msgid "Transfer {} complete"
1568
1756
  msgstr ""
1569
1757
 
1570
1758
  #. module: shopfloor
1759
+ #. odoo-python
1571
1760
  #: code:addons/shopfloor/actions/message.py:0
1572
1761
  #, python-format
1573
1762
  msgid "Transfer {} done"
1574
1763
  msgstr ""
1575
1764
 
1576
1765
  #. module: shopfloor
1766
+ #. odoo-python
1577
1767
  #: code:addons/shopfloor/actions/message.py:0
1578
1768
  #, python-format
1579
1769
  msgid "Transfer {} is not available."
1580
1770
  msgstr ""
1581
1771
 
1582
1772
  #. module: shopfloor
1773
+ #. odoo-python
1774
+ #: code:addons/shopfloor/actions/message.py:0
1775
+ #, python-format
1776
+ msgid ""
1777
+ "Transferring to a different package is not allowed, please scan a location "
1778
+ "instead."
1779
+ msgstr ""
1780
+
1781
+ #. module: shopfloor
1782
+ #. odoo-python
1583
1783
  #: code:addons/shopfloor/actions/message.py:0
1584
1784
  #, python-format
1585
1785
  msgid "Units replaced by package {}."
@@ -1596,6 +1796,7 @@ msgid "Unload package at destination"
1596
1796
  msgstr ""
1597
1797
 
1598
1798
  #. module: shopfloor
1799
+ #. odoo-python
1599
1800
  #: code:addons/shopfloor/actions/message.py:0
1600
1801
  #, python-format
1601
1802
  msgid "Unrecoverable error, please restart."
@@ -1634,6 +1835,18 @@ msgid ""
1634
1835
  "with the remaining lines."
1635
1836
  msgstr ""
1636
1837
 
1838
+ #. module: shopfloor
1839
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__scan_location_or_pack_first
1840
+ msgid ""
1841
+ "When checked, the user will be restricted by the type of object barcode "
1842
+ "that he can scan to select the document/transfer/move line to work on."
1843
+ msgstr ""
1844
+
1845
+ #. module: shopfloor
1846
+ #: model_terms:ir.ui.view,arch_db:shopfloor.shopfloor_menu_form_view
1847
+ msgid "When choosing an order to pack, do not allow to scan a product."
1848
+ msgstr ""
1849
+
1637
1850
  #. module: shopfloor
1638
1851
  #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__allow_get_work
1639
1852
  msgid ""
@@ -1653,91 +1866,113 @@ msgid "When picking, prevent unloading the whole bin when full."
1653
1866
  msgstr ""
1654
1867
 
1655
1868
  #. module: shopfloor
1656
- #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__scan_location_or_pack_first
1869
+ #: model_terms:ir.ui.view,arch_db:shopfloor.shopfloor_menu_form_view
1657
1870
  msgid ""
1658
- "When selecting work, force the user to first scan a location or pack,then "
1659
- "the product or lot."
1871
+ "When selecting a move line, force the user to first scan a package or a "
1872
+ "location and not a product or a lot."
1660
1873
  msgstr ""
1661
1874
 
1662
1875
  #. module: shopfloor
1876
+ #. odoo-python
1663
1877
  #: code:addons/shopfloor/actions/message.py:0
1664
1878
  #, python-format
1665
1879
  msgid "Working location changed to {}"
1666
1880
  msgstr ""
1667
1881
 
1668
1882
  #. module: shopfloor
1883
+ #. odoo-python
1669
1884
  #: code:addons/shopfloor/services/cluster_picking.py:0
1670
1885
  #, python-format
1671
1886
  msgid "Wrong bin"
1672
1887
  msgstr ""
1673
1888
 
1674
1889
  #. module: shopfloor
1890
+ #. odoo-python
1675
1891
  #: code:addons/shopfloor/actions/message.py:0
1676
1892
  #, python-format
1677
1893
  msgid "Wrong location."
1678
1894
  msgstr ""
1679
1895
 
1680
1896
  #. module: shopfloor
1897
+ #. odoo-python
1681
1898
  #: code:addons/shopfloor/actions/message.py:0
1682
1899
  #, python-format
1683
1900
  msgid "Wrong lot."
1684
1901
  msgstr ""
1685
1902
 
1686
1903
  #. module: shopfloor
1904
+ #. odoo-python
1687
1905
  #: code:addons/shopfloor/actions/message.py:0
1688
1906
  #, python-format
1689
1907
  msgid "Wrong pack."
1690
1908
  msgstr ""
1691
1909
 
1692
1910
  #. module: shopfloor
1911
+ #. odoo-python
1693
1912
  #: code:addons/shopfloor/actions/message.py:0
1694
1913
  #, python-format
1695
1914
  msgid "Wrong packaging."
1696
1915
  msgstr ""
1697
1916
 
1698
1917
  #. module: shopfloor
1918
+ #. odoo-python
1699
1919
  #: code:addons/shopfloor/actions/message.py:0
1700
1920
  #, python-format
1701
1921
  msgid "Wrong product."
1702
1922
  msgstr ""
1703
1923
 
1704
1924
  #. module: shopfloor
1925
+ #. odoo-python
1705
1926
  #: code:addons/shopfloor/actions/message.py:0
1706
1927
  #, python-format
1707
1928
  msgid "Wrong."
1708
1929
  msgstr ""
1709
1930
 
1710
1931
  #. module: shopfloor
1932
+ #. odoo-python
1711
1933
  #: code:addons/shopfloor/actions/message.py:0
1712
1934
  #, python-format
1713
1935
  msgid "You cannot move this using this menu."
1714
1936
  msgstr ""
1715
1937
 
1716
1938
  #. module: shopfloor
1939
+ #. odoo-python
1717
1940
  #: code:addons/shopfloor/actions/message.py:0
1718
1941
  #, python-format
1719
1942
  msgid "You cannot place it here"
1720
1943
  msgstr ""
1721
1944
 
1722
1945
  #. module: shopfloor
1946
+ #. odoo-python
1947
+ #: code:addons/shopfloor/actions/message.py:0
1948
+ #, python-format
1949
+ msgid "You cannot process that much units."
1950
+ msgstr ""
1951
+
1952
+ #. module: shopfloor
1953
+ #. odoo-python
1723
1954
  #: code:addons/shopfloor/actions/message.py:0
1724
1955
  #, python-format
1725
1956
  msgid "You cannot return more quantity than what was initially sent."
1726
1957
  msgstr ""
1727
1958
 
1728
1959
  #. module: shopfloor
1960
+ #. odoo-python
1729
1961
  #: code:addons/shopfloor/actions/message.py:0
1730
1962
  #, python-format
1731
- msgid "You cannot work on a package (%s) outside of locations: %s"
1963
+ msgid ""
1964
+ "You cannot work on a package (%(barcode)s) outside of locations: %(names)s"
1732
1965
  msgstr ""
1733
1966
 
1734
1967
  #. module: shopfloor
1968
+ #. odoo-python
1735
1969
  #: code:addons/shopfloor/actions/message.py:0
1736
1970
  #, python-format
1737
1971
  msgid "You must not pick more than {} units."
1738
1972
  msgstr ""
1739
1973
 
1740
1974
  #. module: shopfloor
1975
+ #. odoo-python
1741
1976
  #: code:addons/shopfloor/actions/message.py:0
1742
1977
  #, python-format
1743
1978
  msgid ""
@@ -1745,18 +1980,6 @@ msgid ""
1745
1980
  "pack? Scan it again to confirm"
1746
1981
  msgstr ""
1747
1982
 
1748
- #. module: shopfloor
1749
- #: code:addons/shopfloor/actions/inventory.py:0
1750
- #, python-format
1751
- msgid "Zero check issue on location {}"
1752
- msgstr ""
1753
-
1754
- #. module: shopfloor
1755
- #: code:addons/shopfloor/actions/inventory.py:0
1756
- #, python-format
1757
- msgid "Zero check issue on location {} ({})"
1758
- msgstr ""
1759
-
1760
1983
  #. module: shopfloor
1761
1984
  #: model:shopfloor.menu,name:shopfloor.shopfloor_menu_demo_zone_picking
1762
1985
  #: model:shopfloor.scenario,name:shopfloor.scenario_zone_picking
@@ -1765,27 +1988,16 @@ msgid "Zone Picking"
1765
1988
  msgstr ""
1766
1989
 
1767
1990
  #. module: shopfloor
1768
- #: code:addons/shopfloor/actions/inventory.py:0
1991
+ #. odoo-python
1992
+ #: code:addons/shopfloor/actions/message.py:0
1769
1993
  #, python-format
1770
1994
  msgid ""
1771
- "{picking.name} stock correction in location {location.name} for "
1772
- "{product_desc}"
1995
+ "{message_code} not found in the current transfer or already in a package."
1773
1996
  msgstr ""
1774
1997
 
1775
1998
  #. module: shopfloor
1999
+ #. odoo-python
1776
2000
  #: code:addons/shopfloor/actions/message.py:0
1777
2001
  #, python-format
1778
2002
  msgid "{} is not a valid destination package."
1779
2003
  msgstr ""
1780
-
1781
- #. module: shopfloor
1782
- #: code:addons/shopfloor/actions/message.py:0
1783
- #, python-format
1784
- msgid "{} not found in the current transfer or already in a package."
1785
- msgstr ""
1786
-
1787
- #. module: shopfloor
1788
- #: code:addons/shopfloor/actions/message.py:0
1789
- #, python-format
1790
- msgid "%(qty)s %(product_name)s put in %(package_name)s"
1791
- msgstr ""