odoo-addon-shopfloor 16.0.2.6.0__py3-none-any.whl → 16.0.2.7.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.
- odoo/addons/shopfloor/README.rst +1 -1
- odoo/addons/shopfloor/__manifest__.py +1 -1
- odoo/addons/shopfloor/actions/message.py +50 -5
- odoo/addons/shopfloor/actions/stock_unreserve.py +11 -4
- odoo/addons/shopfloor/i18n/ca.po +35 -13
- odoo/addons/shopfloor/i18n/de.po +35 -13
- odoo/addons/shopfloor/i18n/es_AR.po +44 -14
- odoo/addons/shopfloor/i18n/it.po +44 -14
- odoo/addons/shopfloor/i18n/pt_BR.po +35 -13
- odoo/addons/shopfloor/i18n/shopfloor.pot +35 -13
- odoo/addons/shopfloor/services/checkout.py +129 -105
- odoo/addons/shopfloor/services/delivery.py +89 -64
- odoo/addons/shopfloor/services/location_content_transfer.py +34 -18
- odoo/addons/shopfloor/services/service.py +52 -15
- odoo/addons/shopfloor/static/description/index.html +1 -1
- odoo/addons/shopfloor/tests/test_checkout_scan.py +11 -3
- odoo/addons/shopfloor/tests/test_checkout_scan_line.py +35 -4
- odoo/addons/shopfloor/tests/test_checkout_select.py +3 -1
- odoo/addons/shopfloor/tests/test_delivery_scan_deliver.py +143 -1
- odoo/addons/shopfloor/tests/test_delivery_set_qty_done_line.py +1 -1
- odoo/addons/shopfloor/tests/test_delivery_set_qty_done_pack.py +1 -1
- odoo/addons/shopfloor/tests/test_location_content_transfer_start.py +24 -1
- {odoo_addon_shopfloor-16.0.2.6.0.dist-info → odoo_addon_shopfloor-16.0.2.7.0.1.dist-info}/METADATA +2 -2
- {odoo_addon_shopfloor-16.0.2.6.0.dist-info → odoo_addon_shopfloor-16.0.2.7.0.1.dist-info}/RECORD +26 -26
- {odoo_addon_shopfloor-16.0.2.6.0.dist-info → odoo_addon_shopfloor-16.0.2.7.0.1.dist-info}/WHEEL +0 -0
- {odoo_addon_shopfloor-16.0.2.6.0.dist-info → odoo_addon_shopfloor-16.0.2.7.0.1.dist-info}/top_level.txt +0 -0
odoo/addons/shopfloor/README.rst
CHANGED
@@ -7,7 +7,7 @@ Shopfloor
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
8
8
|
!! changes will be overwritten. !!
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
10
|
-
!! source digest: sha256:
|
10
|
+
!! source digest: sha256:986a6c228f6ee438330907a4be64b74f7291bb1acfc6498a2617ed5e69777d9e
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
12
12
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -214,6 +214,15 @@ class MessageAction(Component):
|
|
214
214
|
def already_done(self):
|
215
215
|
return {"message_type": "info", "body": _("Operation already processed.")}
|
216
216
|
|
217
|
+
def transfer_canceled(self):
|
218
|
+
return {
|
219
|
+
"message_type": "info",
|
220
|
+
"body": _(
|
221
|
+
"Transfer has been canceled. "
|
222
|
+
"This cannot be processed using this scenario"
|
223
|
+
),
|
224
|
+
}
|
225
|
+
|
217
226
|
def move_already_done(self):
|
218
227
|
return {"message_type": "warning", "body": _("Move already processed.")}
|
219
228
|
|
@@ -458,6 +467,34 @@ class MessageAction(Component):
|
|
458
467
|
"body": _("No transfer found for this product."),
|
459
468
|
}
|
460
469
|
|
470
|
+
def transfer_not_found_for_barcode(self, barcode):
|
471
|
+
body = _("No transfer found for barcode %s", barcode)
|
472
|
+
return {
|
473
|
+
"message_type": "error",
|
474
|
+
"body": body,
|
475
|
+
}
|
476
|
+
|
477
|
+
def transfer_not_found_for_record(self, record):
|
478
|
+
model_mapping = {
|
479
|
+
"product.product": "product",
|
480
|
+
"stock.picking": "transfer",
|
481
|
+
"stock.quant.package": "package",
|
482
|
+
"product.packaging": "packaging",
|
483
|
+
"stock.location": "location",
|
484
|
+
"stock.lot": "lot",
|
485
|
+
"stock.move": "move",
|
486
|
+
}
|
487
|
+
model_name = model_mapping.get(record._name)
|
488
|
+
body = _(
|
489
|
+
"No transfer found for %(model_name)s %(record_name)s",
|
490
|
+
model_name=model_name,
|
491
|
+
record_name=record.name,
|
492
|
+
)
|
493
|
+
return {
|
494
|
+
"message_type": "error",
|
495
|
+
"body": body,
|
496
|
+
}
|
497
|
+
|
461
498
|
def product_not_found_in_location_or_transfer(self, product, location, picking):
|
462
499
|
return {
|
463
500
|
"message_type": "error",
|
@@ -526,11 +563,9 @@ class MessageAction(Component):
|
|
526
563
|
"body": _("Place it in {}?").format(location_name),
|
527
564
|
}
|
528
565
|
|
529
|
-
def product_not_found_in_current_picking(self):
|
530
|
-
|
531
|
-
|
532
|
-
"body": _("Product is not in the current transfer."),
|
533
|
-
}
|
566
|
+
def product_not_found_in_current_picking(self, product):
|
567
|
+
body = _("Product %s is not in the current transfer.", product.name)
|
568
|
+
return {"message_type": "error", "body": body}
|
534
569
|
|
535
570
|
def lot_mixed_package_scan_package(self):
|
536
571
|
return {
|
@@ -982,3 +1017,13 @@ class MessageAction(Component):
|
|
982
1017
|
"message_type": "error",
|
983
1018
|
"body": _("Unable to find a line with the same product but different lot."),
|
984
1019
|
}
|
1020
|
+
|
1021
|
+
def reserved_for_other_picking_type(self, picking):
|
1022
|
+
body = _("Reserved for %(picking_type)s %(picking_name)s") % {
|
1023
|
+
"picking_type": picking.picking_type_id.name,
|
1024
|
+
"picking_name": picking.name,
|
1025
|
+
}
|
1026
|
+
return {
|
1027
|
+
"message_type": "error",
|
1028
|
+
"body": body,
|
1029
|
+
}
|
@@ -10,7 +10,9 @@ class StockUnreserve(Component):
|
|
10
10
|
_inherit = "shopfloor.process.action"
|
11
11
|
_usage = "stock.unreserve"
|
12
12
|
|
13
|
-
def check_unreserve(
|
13
|
+
def check_unreserve(
|
14
|
+
self, location, move_lines, product=None, lot=None, allowed_types=None
|
15
|
+
):
|
14
16
|
"""Return a message if there is an ongoing operation in the location.
|
15
17
|
|
16
18
|
It could be a move line with some qty already processed or another
|
@@ -20,12 +22,17 @@ class StockUnreserve(Component):
|
|
20
22
|
:param move_lines: move lines to unreserve
|
21
23
|
:param product: optional product to limit the scope in the location
|
22
24
|
"""
|
25
|
+
if not allowed_types:
|
26
|
+
allowed_types = self.env["stock.picking.type"]
|
23
27
|
location_move_lines = self._find_location_all_move_lines(location, product, lot)
|
24
28
|
extra_move_lines = location_move_lines - move_lines
|
25
29
|
if extra_move_lines:
|
26
|
-
|
27
|
-
|
28
|
-
|
30
|
+
extra_pickings = extra_move_lines.picking_id
|
31
|
+
if allowed_types:
|
32
|
+
for picking in extra_pickings:
|
33
|
+
if picking.picking_type_id not in allowed_types:
|
34
|
+
return self.msg_store.reserved_for_other_picking_type(picking)
|
35
|
+
return self.msg_store.picking_already_started_in_location(extra_pickings)
|
29
36
|
|
30
37
|
def unreserve_moves(self, move_lines, picking_types):
|
31
38
|
"""Unreserve moves from `move_lines'.
|
odoo/addons/shopfloor/i18n/ca.po
CHANGED
@@ -847,6 +847,20 @@ msgstr ""
|
|
847
847
|
msgid "No quantity has been processed, unable to complete the transfer."
|
848
848
|
msgstr ""
|
849
849
|
|
850
|
+
#. module: shopfloor
|
851
|
+
#. odoo-python
|
852
|
+
#: code:addons/shopfloor/actions/message.py:0
|
853
|
+
#, python-format
|
854
|
+
msgid "No transfer found for %(model_name)s %(record_name)s"
|
855
|
+
msgstr ""
|
856
|
+
|
857
|
+
#. module: shopfloor
|
858
|
+
#. odoo-python
|
859
|
+
#: code:addons/shopfloor/actions/message.py:0
|
860
|
+
#, python-format
|
861
|
+
msgid "No transfer found for barcode %s"
|
862
|
+
msgstr ""
|
863
|
+
|
850
864
|
#. module: shopfloor
|
851
865
|
#. odoo-python
|
852
866
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -1054,13 +1068,6 @@ msgstr ""
|
|
1054
1068
|
msgid "Package {} is not empty."
|
1055
1069
|
msgstr ""
|
1056
1070
|
|
1057
|
-
#. module: shopfloor
|
1058
|
-
#. odoo-python
|
1059
|
-
#: code:addons/shopfloor/services/checkout.py:0
|
1060
|
-
#, python-format
|
1061
|
-
msgid "Package {} is not in the current transfer."
|
1062
|
-
msgstr ""
|
1063
|
-
|
1064
1071
|
#. module: shopfloor
|
1065
1072
|
#: model:ir.model,name:shopfloor.model_stock_quant_package
|
1066
1073
|
msgid "Packages"
|
@@ -1216,16 +1223,16 @@ msgid ""
|
|
1216
1223
|
"%(picking_name)s."
|
1217
1224
|
msgstr ""
|
1218
1225
|
|
1219
|
-
#. module: shopfloor
|
1220
|
-
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1221
|
-
msgid "Product Moves (Stock Move Line)"
|
1222
|
-
msgstr ""
|
1223
|
-
|
1224
1226
|
#. module: shopfloor
|
1225
1227
|
#. odoo-python
|
1226
1228
|
#: code:addons/shopfloor/actions/message.py:0
|
1227
1229
|
#, python-format
|
1228
|
-
msgid "Product is not in the current transfer."
|
1230
|
+
msgid "Product %s is not in the current transfer."
|
1231
|
+
msgstr ""
|
1232
|
+
|
1233
|
+
#. module: shopfloor
|
1234
|
+
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1235
|
+
msgid "Product Moves (Stock Move Line)"
|
1229
1236
|
msgstr ""
|
1230
1237
|
|
1231
1238
|
#. module: shopfloor
|
@@ -1296,6 +1303,13 @@ msgstr ""
|
|
1296
1303
|
msgid "Reserved Move Line"
|
1297
1304
|
msgstr ""
|
1298
1305
|
|
1306
|
+
#. module: shopfloor
|
1307
|
+
#. odoo-python
|
1308
|
+
#: code:addons/shopfloor/actions/message.py:0
|
1309
|
+
#, python-format
|
1310
|
+
msgid "Reserved for %(picking_type)s %(picking_name)s"
|
1311
|
+
msgstr ""
|
1312
|
+
|
1299
1313
|
#. module: shopfloor
|
1300
1314
|
#. odoo-python
|
1301
1315
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -1895,6 +1909,14 @@ msgstr ""
|
|
1895
1909
|
msgid "Transfer"
|
1896
1910
|
msgstr ""
|
1897
1911
|
|
1912
|
+
#. module: shopfloor
|
1913
|
+
#. odoo-python
|
1914
|
+
#: code:addons/shopfloor/actions/message.py:0
|
1915
|
+
#, python-format
|
1916
|
+
msgid ""
|
1917
|
+
"Transfer has been canceled. This cannot be processed using this scenario"
|
1918
|
+
msgstr ""
|
1919
|
+
|
1898
1920
|
#. module: shopfloor
|
1899
1921
|
#. odoo-python
|
1900
1922
|
#: code:addons/shopfloor/actions/message.py:0
|
odoo/addons/shopfloor/i18n/de.po
CHANGED
@@ -843,6 +843,20 @@ msgstr ""
|
|
843
843
|
msgid "No quantity has been processed, unable to complete the transfer."
|
844
844
|
msgstr ""
|
845
845
|
|
846
|
+
#. module: shopfloor
|
847
|
+
#. odoo-python
|
848
|
+
#: code:addons/shopfloor/actions/message.py:0
|
849
|
+
#, python-format
|
850
|
+
msgid "No transfer found for %(model_name)s %(record_name)s"
|
851
|
+
msgstr ""
|
852
|
+
|
853
|
+
#. module: shopfloor
|
854
|
+
#. odoo-python
|
855
|
+
#: code:addons/shopfloor/actions/message.py:0
|
856
|
+
#, python-format
|
857
|
+
msgid "No transfer found for barcode %s"
|
858
|
+
msgstr ""
|
859
|
+
|
846
860
|
#. module: shopfloor
|
847
861
|
#. odoo-python
|
848
862
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -1050,13 +1064,6 @@ msgstr ""
|
|
1050
1064
|
msgid "Package {} is not empty."
|
1051
1065
|
msgstr ""
|
1052
1066
|
|
1053
|
-
#. module: shopfloor
|
1054
|
-
#. odoo-python
|
1055
|
-
#: code:addons/shopfloor/services/checkout.py:0
|
1056
|
-
#, python-format
|
1057
|
-
msgid "Package {} is not in the current transfer."
|
1058
|
-
msgstr ""
|
1059
|
-
|
1060
1067
|
#. module: shopfloor
|
1061
1068
|
#: model:ir.model,name:shopfloor.model_stock_quant_package
|
1062
1069
|
msgid "Packages"
|
@@ -1212,16 +1219,16 @@ msgid ""
|
|
1212
1219
|
"%(picking_name)s."
|
1213
1220
|
msgstr ""
|
1214
1221
|
|
1215
|
-
#. module: shopfloor
|
1216
|
-
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1217
|
-
msgid "Product Moves (Stock Move Line)"
|
1218
|
-
msgstr ""
|
1219
|
-
|
1220
1222
|
#. module: shopfloor
|
1221
1223
|
#. odoo-python
|
1222
1224
|
#: code:addons/shopfloor/actions/message.py:0
|
1223
1225
|
#, python-format
|
1224
|
-
msgid "Product is not in the current transfer."
|
1226
|
+
msgid "Product %s is not in the current transfer."
|
1227
|
+
msgstr ""
|
1228
|
+
|
1229
|
+
#. module: shopfloor
|
1230
|
+
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1231
|
+
msgid "Product Moves (Stock Move Line)"
|
1225
1232
|
msgstr ""
|
1226
1233
|
|
1227
1234
|
#. module: shopfloor
|
@@ -1292,6 +1299,13 @@ msgstr ""
|
|
1292
1299
|
msgid "Reserved Move Line"
|
1293
1300
|
msgstr ""
|
1294
1301
|
|
1302
|
+
#. module: shopfloor
|
1303
|
+
#. odoo-python
|
1304
|
+
#: code:addons/shopfloor/actions/message.py:0
|
1305
|
+
#, python-format
|
1306
|
+
msgid "Reserved for %(picking_type)s %(picking_name)s"
|
1307
|
+
msgstr ""
|
1308
|
+
|
1295
1309
|
#. module: shopfloor
|
1296
1310
|
#. odoo-python
|
1297
1311
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -1891,6 +1905,14 @@ msgstr ""
|
|
1891
1905
|
msgid "Transfer"
|
1892
1906
|
msgstr ""
|
1893
1907
|
|
1908
|
+
#. module: shopfloor
|
1909
|
+
#. odoo-python
|
1910
|
+
#: code:addons/shopfloor/actions/message.py:0
|
1911
|
+
#, python-format
|
1912
|
+
msgid ""
|
1913
|
+
"Transfer has been canceled. This cannot be processed using this scenario"
|
1914
|
+
msgstr ""
|
1915
|
+
|
1894
1916
|
#. module: shopfloor
|
1895
1917
|
#. odoo-python
|
1896
1918
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -894,6 +894,20 @@ msgstr ""
|
|
894
894
|
"No se ha procesado ninguna cantidad, no se ha podido completar la "
|
895
895
|
"transferencia."
|
896
896
|
|
897
|
+
#. module: shopfloor
|
898
|
+
#. odoo-python
|
899
|
+
#: code:addons/shopfloor/actions/message.py:0
|
900
|
+
#, python-format
|
901
|
+
msgid "No transfer found for %(model_name)s %(record_name)s"
|
902
|
+
msgstr ""
|
903
|
+
|
904
|
+
#. module: shopfloor
|
905
|
+
#. odoo-python
|
906
|
+
#: code:addons/shopfloor/actions/message.py:0
|
907
|
+
#, python-format
|
908
|
+
msgid "No transfer found for barcode %s"
|
909
|
+
msgstr ""
|
910
|
+
|
897
911
|
#. module: shopfloor
|
898
912
|
#. odoo-python
|
899
913
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -1111,13 +1125,6 @@ msgstr "El Paquete {} está usado."
|
|
1111
1125
|
msgid "Package {} is not empty."
|
1112
1126
|
msgstr "El Paquete {} no está vacío."
|
1113
1127
|
|
1114
|
-
#. module: shopfloor
|
1115
|
-
#. odoo-python
|
1116
|
-
#: code:addons/shopfloor/services/checkout.py:0
|
1117
|
-
#, python-format
|
1118
|
-
msgid "Package {} is not in the current transfer."
|
1119
|
-
msgstr "El Paquete {} no está en la transferencia actual."
|
1120
|
-
|
1121
1128
|
#. module: shopfloor
|
1122
1129
|
#: model:ir.model,name:shopfloor.model_stock_quant_package
|
1123
1130
|
msgid "Packages"
|
@@ -1279,17 +1286,17 @@ msgid ""
|
|
1279
1286
|
"%(picking_name)s."
|
1280
1287
|
msgstr ""
|
1281
1288
|
|
1282
|
-
#. module: shopfloor
|
1283
|
-
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1284
|
-
msgid "Product Moves (Stock Move Line)"
|
1285
|
-
msgstr "Movimientos de Producto (Stock Move Line)"
|
1286
|
-
|
1287
1289
|
#. module: shopfloor
|
1288
1290
|
#. odoo-python
|
1289
1291
|
#: code:addons/shopfloor/actions/message.py:0
|
1290
1292
|
#, python-format
|
1291
|
-
msgid "Product is not in the current transfer."
|
1292
|
-
msgstr "
|
1293
|
+
msgid "Product %s is not in the current transfer."
|
1294
|
+
msgstr ""
|
1295
|
+
|
1296
|
+
#. module: shopfloor
|
1297
|
+
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1298
|
+
msgid "Product Moves (Stock Move Line)"
|
1299
|
+
msgstr "Movimientos de Producto (Stock Move Line)"
|
1293
1300
|
|
1294
1301
|
#. module: shopfloor
|
1295
1302
|
#. odoo-python
|
@@ -1362,6 +1369,13 @@ msgstr ""
|
|
1362
1369
|
msgid "Reserved Move Line"
|
1363
1370
|
msgstr "Movimiento de Línea Reservado"
|
1364
1371
|
|
1372
|
+
#. module: shopfloor
|
1373
|
+
#. odoo-python
|
1374
|
+
#: code:addons/shopfloor/actions/message.py:0
|
1375
|
+
#, python-format
|
1376
|
+
msgid "Reserved for %(picking_type)s %(picking_name)s"
|
1377
|
+
msgstr ""
|
1378
|
+
|
1365
1379
|
#. module: shopfloor
|
1366
1380
|
#. odoo-python
|
1367
1381
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -1993,6 +2007,14 @@ msgstr "Peso Total"
|
|
1993
2007
|
msgid "Transfer"
|
1994
2008
|
msgstr "Transferencia"
|
1995
2009
|
|
2010
|
+
#. module: shopfloor
|
2011
|
+
#. odoo-python
|
2012
|
+
#: code:addons/shopfloor/actions/message.py:0
|
2013
|
+
#, python-format
|
2014
|
+
msgid ""
|
2015
|
+
"Transfer has been canceled. This cannot be processed using this scenario"
|
2016
|
+
msgstr ""
|
2017
|
+
|
1996
2018
|
#. module: shopfloor
|
1997
2019
|
#. odoo-python
|
1998
2020
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -2272,6 +2294,14 @@ msgstr ""
|
|
2272
2294
|
msgid "{} is not a valid destination package."
|
2273
2295
|
msgstr "{} no es un paquete de destino válido."
|
2274
2296
|
|
2297
|
+
#, python-format
|
2298
|
+
#~ msgid "Package {} is not in the current transfer."
|
2299
|
+
#~ msgstr "El Paquete {} no está en la transferencia actual."
|
2300
|
+
|
2301
|
+
#, python-format
|
2302
|
+
#~ msgid "Product is not in the current transfer."
|
2303
|
+
#~ msgstr "El Producto no está en la transferencia actual."
|
2304
|
+
|
2275
2305
|
#, python-format
|
2276
2306
|
#~ msgid "Lot is not in the current transfer."
|
2277
2307
|
#~ msgstr "El Lote no está en la transferencia actual."
|
odoo/addons/shopfloor/i18n/it.po
CHANGED
@@ -929,6 +929,20 @@ msgstr "Nessuna destinazion di inoltro disponibile."
|
|
929
929
|
msgid "No quantity has been processed, unable to complete the transfer."
|
930
930
|
msgstr "Nessuna quantità elaborata, impossibile completare il trasferimento."
|
931
931
|
|
932
|
+
#. module: shopfloor
|
933
|
+
#. odoo-python
|
934
|
+
#: code:addons/shopfloor/actions/message.py:0
|
935
|
+
#, python-format
|
936
|
+
msgid "No transfer found for %(model_name)s %(record_name)s"
|
937
|
+
msgstr ""
|
938
|
+
|
939
|
+
#. module: shopfloor
|
940
|
+
#. odoo-python
|
941
|
+
#: code:addons/shopfloor/actions/message.py:0
|
942
|
+
#, python-format
|
943
|
+
msgid "No transfer found for barcode %s"
|
944
|
+
msgstr ""
|
945
|
+
|
932
946
|
#. module: shopfloor
|
933
947
|
#. odoo-python
|
934
948
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -1152,13 +1166,6 @@ msgstr "Il collo {} è già in uso."
|
|
1152
1166
|
msgid "Package {} is not empty."
|
1153
1167
|
msgstr "Il collo {} non è vuoto."
|
1154
1168
|
|
1155
|
-
#. module: shopfloor
|
1156
|
-
#. odoo-python
|
1157
|
-
#: code:addons/shopfloor/services/checkout.py:0
|
1158
|
-
#, python-format
|
1159
|
-
msgid "Package {} is not in the current transfer."
|
1160
|
-
msgstr "Il collo {} non è nel trasferimento attuale."
|
1161
|
-
|
1162
1169
|
#. module: shopfloor
|
1163
1170
|
#: model:ir.model,name:shopfloor.model_stock_quant_package
|
1164
1171
|
msgid "Packages"
|
@@ -1322,17 +1329,17 @@ msgstr ""
|
|
1322
1329
|
"Prodotto %(product_name)s non trovato nell'ubicazione %(location_name)s o "
|
1323
1330
|
"trasferimento %(picking_name)s."
|
1324
1331
|
|
1325
|
-
#. module: shopfloor
|
1326
|
-
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1327
|
-
msgid "Product Moves (Stock Move Line)"
|
1328
|
-
msgstr "Movimenti prodotto (riga movimento di magazzino)"
|
1329
|
-
|
1330
1332
|
#. module: shopfloor
|
1331
1333
|
#. odoo-python
|
1332
1334
|
#: code:addons/shopfloor/actions/message.py:0
|
1333
1335
|
#, python-format
|
1334
|
-
msgid "Product is not in the current transfer."
|
1335
|
-
msgstr "
|
1336
|
+
msgid "Product %s is not in the current transfer."
|
1337
|
+
msgstr ""
|
1338
|
+
|
1339
|
+
#. module: shopfloor
|
1340
|
+
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1341
|
+
msgid "Product Moves (Stock Move Line)"
|
1342
|
+
msgstr "Movimenti prodotto (riga movimento di magazzino)"
|
1336
1343
|
|
1337
1344
|
#. module: shopfloor
|
1338
1345
|
#. odoo-python
|
@@ -1403,6 +1410,13 @@ msgstr "È possibile richiedere il collo di destinazione"
|
|
1403
1410
|
msgid "Reserved Move Line"
|
1404
1411
|
msgstr "Riga movimento prenotata"
|
1405
1412
|
|
1413
|
+
#. module: shopfloor
|
1414
|
+
#. odoo-python
|
1415
|
+
#: code:addons/shopfloor/actions/message.py:0
|
1416
|
+
#, python-format
|
1417
|
+
msgid "Reserved for %(picking_type)s %(picking_name)s"
|
1418
|
+
msgstr ""
|
1419
|
+
|
1406
1420
|
#. module: shopfloor
|
1407
1421
|
#. odoo-python
|
1408
1422
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -2039,6 +2053,14 @@ msgstr "Peso totale"
|
|
2039
2053
|
msgid "Transfer"
|
2040
2054
|
msgstr "Trasferimento"
|
2041
2055
|
|
2056
|
+
#. module: shopfloor
|
2057
|
+
#. odoo-python
|
2058
|
+
#: code:addons/shopfloor/actions/message.py:0
|
2059
|
+
#, python-format
|
2060
|
+
msgid ""
|
2061
|
+
"Transfer has been canceled. This cannot be processed using this scenario"
|
2062
|
+
msgstr ""
|
2063
|
+
|
2042
2064
|
#. module: shopfloor
|
2043
2065
|
#. odoo-python
|
2044
2066
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -2336,6 +2358,14 @@ msgstr ""
|
|
2336
2358
|
msgid "{} is not a valid destination package."
|
2337
2359
|
msgstr "{} non è un collo destinazione valido."
|
2338
2360
|
|
2361
|
+
#, python-format
|
2362
|
+
#~ msgid "Package {} is not in the current transfer."
|
2363
|
+
#~ msgstr "Il collo {} non è nel trasferimento attuale."
|
2364
|
+
|
2365
|
+
#, python-format
|
2366
|
+
#~ msgid "Product is not in the current transfer."
|
2367
|
+
#~ msgstr "Il prodotto non è nel trasferimento attuale."
|
2368
|
+
|
2339
2369
|
#, python-format
|
2340
2370
|
#~ msgid "Lot is not in the current transfer."
|
2341
2371
|
#~ msgstr "Il lotto non è nel trasferimento attuale."
|
@@ -843,6 +843,20 @@ msgstr ""
|
|
843
843
|
msgid "No quantity has been processed, unable to complete the transfer."
|
844
844
|
msgstr ""
|
845
845
|
|
846
|
+
#. module: shopfloor
|
847
|
+
#. odoo-python
|
848
|
+
#: code:addons/shopfloor/actions/message.py:0
|
849
|
+
#, python-format
|
850
|
+
msgid "No transfer found for %(model_name)s %(record_name)s"
|
851
|
+
msgstr ""
|
852
|
+
|
853
|
+
#. module: shopfloor
|
854
|
+
#. odoo-python
|
855
|
+
#: code:addons/shopfloor/actions/message.py:0
|
856
|
+
#, python-format
|
857
|
+
msgid "No transfer found for barcode %s"
|
858
|
+
msgstr ""
|
859
|
+
|
846
860
|
#. module: shopfloor
|
847
861
|
#. odoo-python
|
848
862
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -1050,13 +1064,6 @@ msgstr ""
|
|
1050
1064
|
msgid "Package {} is not empty."
|
1051
1065
|
msgstr ""
|
1052
1066
|
|
1053
|
-
#. module: shopfloor
|
1054
|
-
#. odoo-python
|
1055
|
-
#: code:addons/shopfloor/services/checkout.py:0
|
1056
|
-
#, python-format
|
1057
|
-
msgid "Package {} is not in the current transfer."
|
1058
|
-
msgstr ""
|
1059
|
-
|
1060
1067
|
#. module: shopfloor
|
1061
1068
|
#: model:ir.model,name:shopfloor.model_stock_quant_package
|
1062
1069
|
msgid "Packages"
|
@@ -1212,16 +1219,16 @@ msgid ""
|
|
1212
1219
|
"%(picking_name)s."
|
1213
1220
|
msgstr ""
|
1214
1221
|
|
1215
|
-
#. module: shopfloor
|
1216
|
-
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1217
|
-
msgid "Product Moves (Stock Move Line)"
|
1218
|
-
msgstr ""
|
1219
|
-
|
1220
1222
|
#. module: shopfloor
|
1221
1223
|
#. odoo-python
|
1222
1224
|
#: code:addons/shopfloor/actions/message.py:0
|
1223
1225
|
#, python-format
|
1224
|
-
msgid "Product is not in the current transfer."
|
1226
|
+
msgid "Product %s is not in the current transfer."
|
1227
|
+
msgstr ""
|
1228
|
+
|
1229
|
+
#. module: shopfloor
|
1230
|
+
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1231
|
+
msgid "Product Moves (Stock Move Line)"
|
1225
1232
|
msgstr ""
|
1226
1233
|
|
1227
1234
|
#. module: shopfloor
|
@@ -1292,6 +1299,13 @@ msgstr ""
|
|
1292
1299
|
msgid "Reserved Move Line"
|
1293
1300
|
msgstr ""
|
1294
1301
|
|
1302
|
+
#. module: shopfloor
|
1303
|
+
#. odoo-python
|
1304
|
+
#: code:addons/shopfloor/actions/message.py:0
|
1305
|
+
#, python-format
|
1306
|
+
msgid "Reserved for %(picking_type)s %(picking_name)s"
|
1307
|
+
msgstr ""
|
1308
|
+
|
1295
1309
|
#. module: shopfloor
|
1296
1310
|
#. odoo-python
|
1297
1311
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -1891,6 +1905,14 @@ msgstr ""
|
|
1891
1905
|
msgid "Transfer"
|
1892
1906
|
msgstr ""
|
1893
1907
|
|
1908
|
+
#. module: shopfloor
|
1909
|
+
#. odoo-python
|
1910
|
+
#: code:addons/shopfloor/actions/message.py:0
|
1911
|
+
#, python-format
|
1912
|
+
msgid ""
|
1913
|
+
"Transfer has been canceled. This cannot be processed using this scenario"
|
1914
|
+
msgstr ""
|
1915
|
+
|
1894
1916
|
#. module: shopfloor
|
1895
1917
|
#. odoo-python
|
1896
1918
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -839,6 +839,20 @@ msgstr ""
|
|
839
839
|
msgid "No quantity has been processed, unable to complete the transfer."
|
840
840
|
msgstr ""
|
841
841
|
|
842
|
+
#. module: shopfloor
|
843
|
+
#. odoo-python
|
844
|
+
#: code:addons/shopfloor/actions/message.py:0
|
845
|
+
#, python-format
|
846
|
+
msgid "No transfer found for %(model_name)s %(record_name)s"
|
847
|
+
msgstr ""
|
848
|
+
|
849
|
+
#. module: shopfloor
|
850
|
+
#. odoo-python
|
851
|
+
#: code:addons/shopfloor/actions/message.py:0
|
852
|
+
#, python-format
|
853
|
+
msgid "No transfer found for barcode %s"
|
854
|
+
msgstr ""
|
855
|
+
|
842
856
|
#. module: shopfloor
|
843
857
|
#. odoo-python
|
844
858
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -1047,13 +1061,6 @@ msgstr ""
|
|
1047
1061
|
msgid "Package {} is not empty."
|
1048
1062
|
msgstr ""
|
1049
1063
|
|
1050
|
-
#. module: shopfloor
|
1051
|
-
#. odoo-python
|
1052
|
-
#: code:addons/shopfloor/services/checkout.py:0
|
1053
|
-
#, python-format
|
1054
|
-
msgid "Package {} is not in the current transfer."
|
1055
|
-
msgstr ""
|
1056
|
-
|
1057
1064
|
#. module: shopfloor
|
1058
1065
|
#: model:ir.model,name:shopfloor.model_stock_quant_package
|
1059
1066
|
msgid "Packages"
|
@@ -1209,16 +1216,16 @@ msgid ""
|
|
1209
1216
|
" %(picking_name)s."
|
1210
1217
|
msgstr ""
|
1211
1218
|
|
1212
|
-
#. module: shopfloor
|
1213
|
-
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1214
|
-
msgid "Product Moves (Stock Move Line)"
|
1215
|
-
msgstr ""
|
1216
|
-
|
1217
1219
|
#. module: shopfloor
|
1218
1220
|
#. odoo-python
|
1219
1221
|
#: code:addons/shopfloor/actions/message.py:0
|
1220
1222
|
#, python-format
|
1221
|
-
msgid "Product is not in the current transfer."
|
1223
|
+
msgid "Product %s is not in the current transfer."
|
1224
|
+
msgstr ""
|
1225
|
+
|
1226
|
+
#. module: shopfloor
|
1227
|
+
#: model:ir.model,name:shopfloor.model_stock_move_line
|
1228
|
+
msgid "Product Moves (Stock Move Line)"
|
1222
1229
|
msgstr ""
|
1223
1230
|
|
1224
1231
|
#. module: shopfloor
|
@@ -1289,6 +1296,13 @@ msgstr ""
|
|
1289
1296
|
msgid "Reserved Move Line"
|
1290
1297
|
msgstr ""
|
1291
1298
|
|
1299
|
+
#. module: shopfloor
|
1300
|
+
#. odoo-python
|
1301
|
+
#: code:addons/shopfloor/actions/message.py:0
|
1302
|
+
#, python-format
|
1303
|
+
msgid "Reserved for %(picking_type)s %(picking_name)s"
|
1304
|
+
msgstr ""
|
1305
|
+
|
1292
1306
|
#. module: shopfloor
|
1293
1307
|
#. odoo-python
|
1294
1308
|
#: code:addons/shopfloor/actions/message.py:0
|
@@ -1890,6 +1904,14 @@ msgstr ""
|
|
1890
1904
|
msgid "Transfer"
|
1891
1905
|
msgstr ""
|
1892
1906
|
|
1907
|
+
#. module: shopfloor
|
1908
|
+
#. odoo-python
|
1909
|
+
#: code:addons/shopfloor/actions/message.py:0
|
1910
|
+
#, python-format
|
1911
|
+
msgid ""
|
1912
|
+
"Transfer has been canceled. This cannot be processed using this scenario"
|
1913
|
+
msgstr ""
|
1914
|
+
|
1893
1915
|
#. module: shopfloor
|
1894
1916
|
#. odoo-python
|
1895
1917
|
#: code:addons/shopfloor/actions/message.py:0
|