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