odoo-addon-shopfloor 16.0.1.0.0.24__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 (182) hide show
  1. odoo/addons/shopfloor/README.rst +160 -0
  2. odoo/addons/shopfloor/__init__.py +4 -0
  3. odoo/addons/shopfloor/__manifest__.py +65 -0
  4. odoo/addons/shopfloor/actions/__init__.py +15 -0
  5. odoo/addons/shopfloor/actions/change_package_lot.py +164 -0
  6. odoo/addons/shopfloor/actions/completion_info.py +42 -0
  7. odoo/addons/shopfloor/actions/data.py +329 -0
  8. odoo/addons/shopfloor/actions/data_detail.py +154 -0
  9. odoo/addons/shopfloor/actions/inventory.py +150 -0
  10. odoo/addons/shopfloor/actions/location_content_transfer_sorter.py +89 -0
  11. odoo/addons/shopfloor/actions/message.py +846 -0
  12. odoo/addons/shopfloor/actions/move_line_search.py +119 -0
  13. odoo/addons/shopfloor/actions/packaging.py +59 -0
  14. odoo/addons/shopfloor/actions/savepoint.py +44 -0
  15. odoo/addons/shopfloor/actions/schema.py +182 -0
  16. odoo/addons/shopfloor/actions/schema_detail.py +98 -0
  17. odoo/addons/shopfloor/actions/search.py +187 -0
  18. odoo/addons/shopfloor/actions/stock.py +239 -0
  19. odoo/addons/shopfloor/actions/stock_unreserve.py +66 -0
  20. odoo/addons/shopfloor/components/__init__.py +5 -0
  21. odoo/addons/shopfloor/components/scan_handler_location.py +26 -0
  22. odoo/addons/shopfloor/components/scan_handler_lot.py +26 -0
  23. odoo/addons/shopfloor/components/scan_handler_package.py +26 -0
  24. odoo/addons/shopfloor/components/scan_handler_product.py +26 -0
  25. odoo/addons/shopfloor/components/scan_handler_transfer.py +26 -0
  26. odoo/addons/shopfloor/data/shopfloor_scenario_data.xml +73 -0
  27. odoo/addons/shopfloor/demo/shopfloor_app_demo.xml +12 -0
  28. odoo/addons/shopfloor/demo/shopfloor_menu_demo.xml +64 -0
  29. odoo/addons/shopfloor/demo/shopfloor_profile_demo.xml +8 -0
  30. odoo/addons/shopfloor/demo/stock_picking_type_demo.xml +93 -0
  31. odoo/addons/shopfloor/docs/checkout_diag_seq.plantuml +61 -0
  32. odoo/addons/shopfloor/docs/checkout_diag_seq.png +0 -0
  33. odoo/addons/shopfloor/docs/cluster_picking_diag_seq.plantuml +112 -0
  34. odoo/addons/shopfloor/docs/cluster_picking_diag_seq.png +0 -0
  35. odoo/addons/shopfloor/docs/delivery_diag_seq.plantuml +56 -0
  36. odoo/addons/shopfloor/docs/delivery_diag_seq.png +0 -0
  37. odoo/addons/shopfloor/docs/location_content_transfer_diag_seq.plantuml +66 -0
  38. odoo/addons/shopfloor/docs/location_content_transfer_diag_seq.png +0 -0
  39. odoo/addons/shopfloor/docs/oca_logo.png +0 -0
  40. odoo/addons/shopfloor/docs/single_pack_transfer_diag_seq.plantuml +36 -0
  41. odoo/addons/shopfloor/docs/single_pack_transfer_diag_seq.png +0 -0
  42. odoo/addons/shopfloor/docs/zone_picking_diag_seq.plantuml +85 -0
  43. odoo/addons/shopfloor/docs/zone_picking_diag_seq.png +0 -0
  44. odoo/addons/shopfloor/exceptions.py +6 -0
  45. odoo/addons/shopfloor/i18n/ca.po +1802 -0
  46. odoo/addons/shopfloor/i18n/de.po +1791 -0
  47. odoo/addons/shopfloor/i18n/es_AR.po +2147 -0
  48. odoo/addons/shopfloor/i18n/pt_BR.po +1791 -0
  49. odoo/addons/shopfloor/i18n/shopfloor.pot +1877 -0
  50. odoo/addons/shopfloor/models/__init__.py +12 -0
  51. odoo/addons/shopfloor/models/priority_postpone_mixin.py +41 -0
  52. odoo/addons/shopfloor/models/shopfloor_app.py +9 -0
  53. odoo/addons/shopfloor/models/shopfloor_menu.py +436 -0
  54. odoo/addons/shopfloor/models/stock_location.py +76 -0
  55. odoo/addons/shopfloor/models/stock_move.py +119 -0
  56. odoo/addons/shopfloor/models/stock_move_line.py +307 -0
  57. odoo/addons/shopfloor/models/stock_package_level.py +50 -0
  58. odoo/addons/shopfloor/models/stock_picking.py +118 -0
  59. odoo/addons/shopfloor/models/stock_picking_batch.py +41 -0
  60. odoo/addons/shopfloor/models/stock_picking_type.py +26 -0
  61. odoo/addons/shopfloor/models/stock_quant.py +31 -0
  62. odoo/addons/shopfloor/models/stock_quant_package.py +101 -0
  63. odoo/addons/shopfloor/readme/CONTRIBUTORS.rst +18 -0
  64. odoo/addons/shopfloor/readme/CREDITS.rst +5 -0
  65. odoo/addons/shopfloor/readme/DESCRIPTION.rst +17 -0
  66. odoo/addons/shopfloor/readme/HISTORY.rst +4 -0
  67. odoo/addons/shopfloor/readme/ROADMAP.rst +4 -0
  68. odoo/addons/shopfloor/readme/USAGE.rst +6 -0
  69. odoo/addons/shopfloor/security/groups.xml +17 -0
  70. odoo/addons/shopfloor/services/__init__.py +16 -0
  71. odoo/addons/shopfloor/services/checkout.py +1763 -0
  72. odoo/addons/shopfloor/services/cluster_picking.py +1628 -0
  73. odoo/addons/shopfloor/services/delivery.py +828 -0
  74. odoo/addons/shopfloor/services/forms/__init__.py +1 -0
  75. odoo/addons/shopfloor/services/forms/picking_form.py +78 -0
  76. odoo/addons/shopfloor/services/location_content_transfer.py +1194 -0
  77. odoo/addons/shopfloor/services/menu.py +60 -0
  78. odoo/addons/shopfloor/services/picking_batch.py +126 -0
  79. odoo/addons/shopfloor/services/service.py +101 -0
  80. odoo/addons/shopfloor/services/single_pack_transfer.py +366 -0
  81. odoo/addons/shopfloor/services/zone_picking.py +1938 -0
  82. odoo/addons/shopfloor/static/description/icon.png +0 -0
  83. odoo/addons/shopfloor/static/description/index.html +500 -0
  84. odoo/addons/shopfloor/tests/__init__.py +83 -0
  85. odoo/addons/shopfloor/tests/common.py +324 -0
  86. odoo/addons/shopfloor/tests/models.py +29 -0
  87. odoo/addons/shopfloor/tests/test_actions_change_package_lot.py +1175 -0
  88. odoo/addons/shopfloor/tests/test_actions_data.py +376 -0
  89. odoo/addons/shopfloor/tests/test_actions_data_base.py +244 -0
  90. odoo/addons/shopfloor/tests/test_actions_data_detail.py +322 -0
  91. odoo/addons/shopfloor/tests/test_actions_search.py +248 -0
  92. odoo/addons/shopfloor/tests/test_actions_stock.py +48 -0
  93. odoo/addons/shopfloor/tests/test_checkout_auto_post.py +67 -0
  94. odoo/addons/shopfloor/tests/test_checkout_base.py +81 -0
  95. odoo/addons/shopfloor/tests/test_checkout_cancel_line.py +154 -0
  96. odoo/addons/shopfloor/tests/test_checkout_change_packaging.py +184 -0
  97. odoo/addons/shopfloor/tests/test_checkout_done.py +133 -0
  98. odoo/addons/shopfloor/tests/test_checkout_list_delivery_packaging.py +131 -0
  99. odoo/addons/shopfloor/tests/test_checkout_list_package.py +327 -0
  100. odoo/addons/shopfloor/tests/test_checkout_new_package.py +88 -0
  101. odoo/addons/shopfloor/tests/test_checkout_no_package.py +95 -0
  102. odoo/addons/shopfloor/tests/test_checkout_scan.py +174 -0
  103. odoo/addons/shopfloor/tests/test_checkout_scan_line.py +377 -0
  104. odoo/addons/shopfloor/tests/test_checkout_scan_line_base.py +25 -0
  105. odoo/addons/shopfloor/tests/test_checkout_scan_line_no_prefill_qty.py +91 -0
  106. odoo/addons/shopfloor/tests/test_checkout_scan_package_action.py +451 -0
  107. odoo/addons/shopfloor/tests/test_checkout_scan_package_action_no_prefill_qty.py +107 -0
  108. odoo/addons/shopfloor/tests/test_checkout_select.py +74 -0
  109. odoo/addons/shopfloor/tests/test_checkout_select_line.py +130 -0
  110. odoo/addons/shopfloor/tests/test_checkout_select_package_base.py +64 -0
  111. odoo/addons/shopfloor/tests/test_checkout_set_qty.py +257 -0
  112. odoo/addons/shopfloor/tests/test_checkout_summary.py +69 -0
  113. odoo/addons/shopfloor/tests/test_cluster_picking_base.py +83 -0
  114. odoo/addons/shopfloor/tests/test_cluster_picking_batch.py +109 -0
  115. odoo/addons/shopfloor/tests/test_cluster_picking_change_pack_lot.py +111 -0
  116. odoo/addons/shopfloor/tests/test_cluster_picking_is_zero.py +98 -0
  117. odoo/addons/shopfloor/tests/test_cluster_picking_scan_destination.py +376 -0
  118. odoo/addons/shopfloor/tests/test_cluster_picking_scan_destination_no_prefill_qty.py +115 -0
  119. odoo/addons/shopfloor/tests/test_cluster_picking_scan_line.py +402 -0
  120. odoo/addons/shopfloor/tests/test_cluster_picking_scan_line_location_or_pack_first.py +114 -0
  121. odoo/addons/shopfloor/tests/test_cluster_picking_scan_line_no_prefill_qty.py +70 -0
  122. odoo/addons/shopfloor/tests/test_cluster_picking_select.py +387 -0
  123. odoo/addons/shopfloor/tests/test_cluster_picking_skip.py +90 -0
  124. odoo/addons/shopfloor/tests/test_cluster_picking_stock_issue.py +364 -0
  125. odoo/addons/shopfloor/tests/test_cluster_picking_unload.py +911 -0
  126. odoo/addons/shopfloor/tests/test_delivery_base.py +155 -0
  127. odoo/addons/shopfloor/tests/test_delivery_done.py +108 -0
  128. odoo/addons/shopfloor/tests/test_delivery_list_stock_picking.py +49 -0
  129. odoo/addons/shopfloor/tests/test_delivery_reset_qty_done_line.py +119 -0
  130. odoo/addons/shopfloor/tests/test_delivery_reset_qty_done_pack.py +107 -0
  131. odoo/addons/shopfloor/tests/test_delivery_scan_deliver.py +557 -0
  132. odoo/addons/shopfloor/tests/test_delivery_select.py +38 -0
  133. odoo/addons/shopfloor/tests/test_delivery_set_qty_done_line.py +91 -0
  134. odoo/addons/shopfloor/tests/test_delivery_set_qty_done_pack.py +135 -0
  135. odoo/addons/shopfloor/tests/test_delivery_sublocation.py +180 -0
  136. odoo/addons/shopfloor/tests/test_location_content_transfer_base.py +136 -0
  137. odoo/addons/shopfloor/tests/test_location_content_transfer_get_work.py +125 -0
  138. odoo/addons/shopfloor/tests/test_location_content_transfer_mix.py +509 -0
  139. odoo/addons/shopfloor/tests/test_location_content_transfer_putaway.py +143 -0
  140. odoo/addons/shopfloor/tests/test_location_content_transfer_scan_location.py +34 -0
  141. odoo/addons/shopfloor/tests/test_location_content_transfer_set_destination_all.py +343 -0
  142. odoo/addons/shopfloor/tests/test_location_content_transfer_set_destination_package_or_line.py +1074 -0
  143. odoo/addons/shopfloor/tests/test_location_content_transfer_single.py +748 -0
  144. odoo/addons/shopfloor/tests/test_location_content_transfer_start.py +359 -0
  145. odoo/addons/shopfloor/tests/test_menu_base.py +261 -0
  146. odoo/addons/shopfloor/tests/test_menu_counters.py +61 -0
  147. odoo/addons/shopfloor/tests/test_misc.py +25 -0
  148. odoo/addons/shopfloor/tests/test_move_action_assign.py +87 -0
  149. odoo/addons/shopfloor/tests/test_openapi.py +21 -0
  150. odoo/addons/shopfloor/tests/test_picking_form.py +62 -0
  151. odoo/addons/shopfloor/tests/test_scan_anything.py +49 -0
  152. odoo/addons/shopfloor/tests/test_single_pack_transfer.py +1121 -0
  153. odoo/addons/shopfloor/tests/test_single_pack_transfer_base.py +32 -0
  154. odoo/addons/shopfloor/tests/test_single_pack_transfer_putaway.py +104 -0
  155. odoo/addons/shopfloor/tests/test_stock_split.py +204 -0
  156. odoo/addons/shopfloor/tests/test_user.py +42 -0
  157. odoo/addons/shopfloor/tests/test_zone_picking_base.py +608 -0
  158. odoo/addons/shopfloor/tests/test_zone_picking_change_pack_lot.py +140 -0
  159. odoo/addons/shopfloor/tests/test_zone_picking_select_line.py +723 -0
  160. odoo/addons/shopfloor/tests/test_zone_picking_select_line_first_scan_location.py +207 -0
  161. odoo/addons/shopfloor/tests/test_zone_picking_select_line_first_scan_location.py.bak +202 -0
  162. odoo/addons/shopfloor/tests/test_zone_picking_select_line_no_prefill_qty.py +107 -0
  163. odoo/addons/shopfloor/tests/test_zone_picking_select_picking_type.py +26 -0
  164. odoo/addons/shopfloor/tests/test_zone_picking_set_line_destination.py +643 -0
  165. odoo/addons/shopfloor/tests/test_zone_picking_set_line_destination_no_prefill_qty.py +146 -0
  166. odoo/addons/shopfloor/tests/test_zone_picking_set_line_destination_pick_pack.py +241 -0
  167. odoo/addons/shopfloor/tests/test_zone_picking_start.py +206 -0
  168. odoo/addons/shopfloor/tests/test_zone_picking_stock_issue.py +121 -0
  169. odoo/addons/shopfloor/tests/test_zone_picking_unload_all.py +353 -0
  170. odoo/addons/shopfloor/tests/test_zone_picking_unload_buffer_lines.py +113 -0
  171. odoo/addons/shopfloor/tests/test_zone_picking_unload_set_destination.py +374 -0
  172. odoo/addons/shopfloor/tests/test_zone_picking_unload_single.py +123 -0
  173. odoo/addons/shopfloor/tests/test_zone_picking_zero_check.py +43 -0
  174. odoo/addons/shopfloor/utils.py +13 -0
  175. odoo/addons/shopfloor/views/shopfloor_menu.xml +167 -0
  176. odoo/addons/shopfloor/views/stock_location.xml +20 -0
  177. odoo/addons/shopfloor/views/stock_move_line.xml +52 -0
  178. odoo/addons/shopfloor/views/stock_picking_type.xml +19 -0
  179. odoo_addon_shopfloor-16.0.1.0.0.24.dist-info/METADATA +192 -0
  180. odoo_addon_shopfloor-16.0.1.0.0.24.dist-info/RECORD +182 -0
  181. odoo_addon_shopfloor-16.0.1.0.0.24.dist-info/WHEEL +5 -0
  182. odoo_addon_shopfloor-16.0.1.0.0.24.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1877 @@
1
+ # Translation of Odoo Server.
2
+ # This file contains the translation of the following modules:
3
+ # * shopfloor
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Odoo Server 16.0\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: \n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: \n"
14
+ "Plural-Forms: \n"
15
+
16
+ #. module: shopfloor
17
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__pick_pack_same_time
18
+ msgid ""
19
+ "\n"
20
+ "If you tick this box, while picking goods from a location\n"
21
+ "(eg: zone picking) set destination will work as follow:\n"
22
+ "\n"
23
+ "* if a location is scanned, a new delivery package is created;\n"
24
+ "* if a package is scanned, the package is validated against the carrier\n"
25
+ "* in both cases, if the picking has no carrier the operation fails.\",\n"
26
+ msgstr ""
27
+
28
+ #. module: shopfloor
29
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__no_prefill_qty
30
+ msgid ""
31
+ "\n"
32
+ "We assume the picker will take the suggested quantities.\n"
33
+ "With this option, the operator will have to enter the quantity manually or\n"
34
+ "by scanning a product or product packaging EAN to increase the quantity\n"
35
+ "(i.e. +1 Unit or +1 Box)\n"
36
+ msgstr ""
37
+
38
+ #. module: shopfloor
39
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__allow_return
40
+ msgid ""
41
+ "\n"
42
+ "When enabled, you can receive unplanned products that are returned\n"
43
+ "from an existing delivery matched on the origin (SO name).\n"
44
+ "A new move will be added as a return of the delivery,\n"
45
+ "decreasing the delivered quantity of the related SO line.\n"
46
+ msgstr ""
47
+
48
+ #. module: shopfloor
49
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__multiple_move_single_pack
50
+ msgid ""
51
+ "\n"
52
+ "When picking a move,\n"
53
+ "allow to set a destination package that was already used for the other lines.\n"
54
+ msgstr ""
55
+
56
+ #. module: shopfloor
57
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__auto_post_line
58
+ msgid ""
59
+ "\n"
60
+ "When setting result pack & destination,\n"
61
+ "automatically post the corresponding line\n"
62
+ "if this option is checked.\n"
63
+ msgstr ""
64
+
65
+ #. module: shopfloor
66
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__unload_package_at_destination
67
+ msgid ""
68
+ "\n"
69
+ "With this option, the lines you process by putting on a package during the\n"
70
+ "picking process will be put as bulk products at the final destination location.\n"
71
+ "\n"
72
+ "This is useful if your picking device is emptied at the destination location or\n"
73
+ "if you want to provide bulk products to the next operation.\n"
74
+ "\n"
75
+ "Incompatible with: \"Pick and pack at the same time\"\n"
76
+ msgstr ""
77
+
78
+ #. module: shopfloor
79
+ #. odoo-python
80
+ #: code:addons/shopfloor/actions/message.py:0
81
+ #, python-format
82
+ msgid "%(qty)s %(product_name)s put in %(package_name)s"
83
+ msgstr ""
84
+
85
+ #. module: shopfloor
86
+ #. odoo-python
87
+ #: code:addons/shopfloor/models/shopfloor_menu.py:0
88
+ #, python-format
89
+ msgid ""
90
+ "'Pick and pack at the same time' is incompatible with 'Multiple moves same "
91
+ "destination package'."
92
+ msgstr ""
93
+
94
+ #. module: shopfloor
95
+ #. odoo-python
96
+ #: code:addons/shopfloor/models/shopfloor_menu.py:0
97
+ #, python-format
98
+ msgid ""
99
+ "'Pick and pack at the same time' is incompatible with 'Unload package at "
100
+ "destination'."
101
+ msgstr ""
102
+
103
+ #. module: shopfloor
104
+ #: model:ir.model,name:shopfloor.model_shopfloor_app
105
+ msgid "A Shopfloor application"
106
+ msgstr ""
107
+
108
+ #. module: shopfloor
109
+ #. odoo-python
110
+ #: code:addons/shopfloor/actions/message.py:0
111
+ #, python-format
112
+ msgid "A destination package is required."
113
+ msgstr ""
114
+
115
+ #. module: shopfloor
116
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_type__shopfloor_zero_check
117
+ msgid "Activate Zero Check"
118
+ msgstr ""
119
+
120
+ #. module: shopfloor
121
+ #: model:ir.model,name:shopfloor.model_shopfloor_priority_postpone_mixin
122
+ msgid "Adds shopfloor priority/postpone fields"
123
+ msgstr ""
124
+
125
+ #. module: shopfloor
126
+ #. odoo-python
127
+ #: code:addons/shopfloor/actions/message.py:0
128
+ #, python-format
129
+ msgid "All packages processed."
130
+ msgstr ""
131
+
132
+ #. module: shopfloor
133
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_alternative_destination_is_possible
134
+ msgid "Allow Alternative Destination Is Possible"
135
+ msgstr ""
136
+
137
+ #. module: shopfloor
138
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_force_reservation_is_possible
139
+ msgid "Allow Force Reservation Is Possible"
140
+ msgstr ""
141
+
142
+ #. module: shopfloor
143
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_get_work_is_possible
144
+ msgid "Allow Get Work Is Possible"
145
+ msgstr ""
146
+
147
+ #. module: shopfloor
148
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_move_create
149
+ msgid "Allow Move Creation"
150
+ msgstr ""
151
+
152
+ #. module: shopfloor
153
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_return_is_possible
154
+ msgid "Allow Return Is Possible"
155
+ msgstr ""
156
+
157
+ #. module: shopfloor
158
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_return
159
+ msgid "Allow create returns"
160
+ msgstr ""
161
+
162
+ #. module: shopfloor
163
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_unreserve_other_moves
164
+ msgid "Allow to process reserved quantities"
165
+ msgstr ""
166
+
167
+ #. module: shopfloor
168
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_alternative_destination
169
+ msgid "Allow to scan alternative destination locations"
170
+ msgstr ""
171
+
172
+ #. module: shopfloor
173
+ #. odoo-python
174
+ #: code:addons/shopfloor/actions/message.py:0
175
+ #, python-format
176
+ msgid "Are you sure?"
177
+ msgstr ""
178
+
179
+ #. module: shopfloor
180
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__auto_post_line_is_possible
181
+ msgid "Auto Post Line Is Possible"
182
+ msgstr ""
183
+
184
+ #. module: shopfloor
185
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__auto_post_line
186
+ msgid "Automatically post line"
187
+ msgstr ""
188
+
189
+ #. module: shopfloor
190
+ #. odoo-python
191
+ #: code:addons/shopfloor/actions/message.py:0
192
+ #, python-format
193
+ msgid "Barcode does not match with {}."
194
+ msgstr ""
195
+
196
+ #. module: shopfloor
197
+ #. odoo-python
198
+ #: code:addons/shopfloor/actions/message.py:0
199
+ #, python-format
200
+ msgid "Barcode not found"
201
+ msgstr ""
202
+
203
+ #. module: shopfloor
204
+ #: model:ir.model,name:shopfloor.model_stock_picking_batch
205
+ msgid "Batch Transfer"
206
+ msgstr ""
207
+
208
+ #. module: shopfloor
209
+ #. odoo-python
210
+ #: code:addons/shopfloor/actions/message.py:0
211
+ #, python-format
212
+ msgid "Batch Transfer complete"
213
+ msgstr ""
214
+
215
+ #. module: shopfloor
216
+ #. odoo-python
217
+ #: code:addons/shopfloor/actions/message.py:0
218
+ #, python-format
219
+ msgid "Batch Transfer line done"
220
+ msgstr ""
221
+
222
+ #. module: shopfloor
223
+ #. odoo-python
224
+ #: code:addons/shopfloor/actions/message.py:0
225
+ #, python-format
226
+ msgid "Bin %s doesn't exist"
227
+ msgstr ""
228
+
229
+ #. module: shopfloor
230
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_picking__bulk_line_count
231
+ msgid "Bulk Line Count"
232
+ msgstr ""
233
+
234
+ #. module: shopfloor
235
+ #. odoo-python
236
+ #: code:addons/shopfloor/actions/message.py:0
237
+ #, python-format
238
+ msgid "Canceled, you can scan a new pack."
239
+ msgstr ""
240
+
241
+ #. module: shopfloor
242
+ #. odoo-python
243
+ #: code:addons/shopfloor/actions/message.py:0
244
+ #, python-format
245
+ msgid "Cannot change to lot {} which is entirely picked."
246
+ msgstr ""
247
+
248
+ #. module: shopfloor
249
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_app__category
250
+ msgid "Category"
251
+ msgstr ""
252
+
253
+ #. module: shopfloor
254
+ #: model:shopfloor.menu,name:shopfloor.shopfloor_menu_demo_checkout
255
+ #: model:shopfloor.scenario,name:shopfloor.scenario_checkout
256
+ #: model:stock.picking.type,name:shopfloor.picking_type_checkout_demo
257
+ msgid "Checkout"
258
+ msgstr ""
259
+
260
+ #. module: shopfloor
261
+ #: model:shopfloor.menu,name:shopfloor.shopfloor_menu_demo_cluster_picking
262
+ #: model:shopfloor.scenario,name:shopfloor.scenario_cluster_picking
263
+ #: model:stock.picking.type,name:shopfloor.picking_type_cluster_picking_demo
264
+ msgid "Cluster Picking"
265
+ msgstr ""
266
+
267
+ #. module: shopfloor
268
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__multiple_move_single_pack
269
+ msgid "Collect multiple moves on a same destination package"
270
+ msgstr ""
271
+
272
+ #. module: shopfloor
273
+ #. odoo-python
274
+ #: code:addons/shopfloor/actions/message.py:0
275
+ #, python-format
276
+ msgid "Confirm location change from %(location_from)s to %(location_to)s?"
277
+ msgstr ""
278
+
279
+ #. module: shopfloor
280
+ #. odoo-python
281
+ #: code:addons/shopfloor/actions/message.py:0
282
+ #, python-format
283
+ msgid "Content transfer to {} completed"
284
+ msgstr ""
285
+
286
+ #. module: shopfloor
287
+ #. odoo-python
288
+ #: code:addons/shopfloor/actions/message.py:0
289
+ #, python-format
290
+ msgid "Content transferred from %(location_name)s to %(location_dest_name)s."
291
+ msgstr ""
292
+
293
+ #. module: shopfloor
294
+ #. odoo-python
295
+ #: code:addons/shopfloor/actions/message.py:0
296
+ #, python-format
297
+ msgid "Create new PACK {}? Scan it again to confirm."
298
+ msgstr ""
299
+
300
+ #. module: shopfloor
301
+ #. odoo-python
302
+ #: code:addons/shopfloor/models/shopfloor_menu.py:0
303
+ #, python-format
304
+ msgid "Creation of moves is not allowed for menu {}."
305
+ msgstr ""
306
+
307
+ #. module: shopfloor
308
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__date_planned
309
+ msgid "Date Scheduled"
310
+ msgstr ""
311
+
312
+ #. module: shopfloor
313
+ #: model:shopfloor.menu,name:shopfloor.shopfloor_menu_demo_delivery
314
+ #: model:shopfloor.scenario,name:shopfloor.scenario_delivery
315
+ #: model:stock.picking.type,name:shopfloor.picking_type_delivery_demo
316
+ msgid "Delivery"
317
+ msgstr ""
318
+
319
+ #. module: shopfloor
320
+ #. odoo-python
321
+ #: code:addons/shopfloor/actions/message.py:0
322
+ #, python-format
323
+ msgid ""
324
+ "Delivery package type scanned: %(name)s. Scan again to place all goods in "
325
+ "the same package."
326
+ msgstr ""
327
+
328
+ #. module: shopfloor
329
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__disable_full_bin_action_is_possible
330
+ msgid "Disable Full Bin Action Is Possible"
331
+ msgstr ""
332
+
333
+ #. module: shopfloor
334
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__disable_full_bin_action
335
+ msgid "Disable full bin action"
336
+ msgstr ""
337
+
338
+ #. module: shopfloor
339
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__show_oneline_package_content
340
+ msgid "Display the content of package if it contains 1 line only"
341
+ msgstr ""
342
+
343
+ #. module: shopfloor
344
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__no_prefill_qty
345
+ msgid "Do not pre-fill quantity to pick"
346
+ msgstr ""
347
+
348
+ #. module: shopfloor
349
+ #: model:ir.model.fields,help:shopfloor.field_stock_picking_type__shopfloor_zero_check
350
+ msgid ""
351
+ "For Shopfloor scenarios using it (Cluster Picking, Zone Picking, Discrete "
352
+ "order Picking), the zero check step will be activated when a location "
353
+ "becomes empty after a move."
354
+ msgstr ""
355
+
356
+ #. module: shopfloor
357
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_force_reservation
358
+ msgid "Force stock reservation"
359
+ msgstr ""
360
+
361
+ #. module: shopfloor
362
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__location_id
363
+ msgid "From"
364
+ msgstr ""
365
+
366
+ #. module: shopfloor
367
+ #. odoo-python
368
+ #: code:addons/shopfloor/actions/message.py:0
369
+ #, python-format
370
+ msgid "Goods packed into {0.name}"
371
+ msgstr ""
372
+
373
+ #. module: shopfloor
374
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__ignore_no_putaway_available
375
+ msgid ""
376
+ "If you tick this box, the transfer is reserved only if the put-away can find"
377
+ " a sublocation (when putaway destination is different from the operation "
378
+ "type's destination)."
379
+ msgstr ""
380
+
381
+ #. module: shopfloor
382
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__allow_unreserve_other_moves
383
+ msgid ""
384
+ "If you tick this box, this scenario will allow operator to move goods even "
385
+ "if a reservation is made by a different operation type."
386
+ msgstr ""
387
+
388
+ #. module: shopfloor
389
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__ignore_no_putaway_available_is_possible
390
+ msgid "Ignore No Putaway Available Is Possible"
391
+ msgstr ""
392
+
393
+ #. module: shopfloor
394
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__ignore_no_putaway_available
395
+ msgid "Ignore transfers when no put-away is available"
396
+ msgstr ""
397
+
398
+ #. module: shopfloor
399
+ #. odoo-python
400
+ #: code:addons/shopfloor/models/shopfloor_menu.py:0
401
+ #, python-format
402
+ msgid "Ignoring not found putaway is not allowed for menu {}."
403
+ msgstr ""
404
+
405
+ #. module: shopfloor
406
+ #: model:ir.model,name:shopfloor.model_stock_location
407
+ msgid "Inventory Locations"
408
+ msgstr ""
409
+
410
+ #. module: shopfloor
411
+ #. odoo-python
412
+ #: code:addons/shopfloor/actions/completion_info.py:0
413
+ #, python-format
414
+ msgid ""
415
+ "Last operation of transfer %(picking_names)s. Next operation "
416
+ "(%(next_picking_names)s) is ready to proceed."
417
+ msgstr ""
418
+
419
+ #. module: shopfloor
420
+ #. odoo-python
421
+ #: code:addons/shopfloor/services/checkout.py:0
422
+ #, python-format
423
+ msgid "Line cancelled"
424
+ msgstr ""
425
+
426
+ #. module: shopfloor
427
+ #. odoo-python
428
+ #: code:addons/shopfloor/actions/message.py:0
429
+ #, python-format
430
+ msgid "Lines have different destination location."
431
+ msgstr ""
432
+
433
+ #. module: shopfloor
434
+ #. odoo-python
435
+ #: code:addons/shopfloor/actions/message.py:0
436
+ #, python-format
437
+ msgid "Location %s doesn't contain any package."
438
+ msgstr ""
439
+
440
+ #. module: shopfloor
441
+ #: model:shopfloor.menu,name:shopfloor.shopfloor_menu_demo_location_content_transfer
442
+ #: model:stock.picking.type,name:shopfloor.picking_type_location_content_transfer_demo
443
+ msgid "Location Content Transfer"
444
+ msgstr ""
445
+
446
+ #. module: shopfloor
447
+ #: model:shopfloor.scenario,name:shopfloor.scenario_location_content_transfer
448
+ msgid "Location content transfer"
449
+ msgstr ""
450
+
451
+ #. module: shopfloor
452
+ #. odoo-python
453
+ #: code:addons/shopfloor/actions/message.py:0
454
+ #, python-format
455
+ msgid "Location empty. Try scanning a package"
456
+ msgstr ""
457
+
458
+ #. module: shopfloor
459
+ #. odoo-python
460
+ #: code:addons/shopfloor/actions/message.py:0
461
+ #, python-format
462
+ msgid "Location not allowed here."
463
+ msgstr ""
464
+
465
+ #. module: shopfloor
466
+ #. odoo-python
467
+ #: code:addons/shopfloor/actions/message.py:0
468
+ #, python-format
469
+ msgid "Location {} empty"
470
+ msgstr ""
471
+
472
+ #. module: shopfloor
473
+ #. odoo-python
474
+ #: code:addons/shopfloor/actions/message.py:0
475
+ #, python-format
476
+ msgid "Lot %(old_lot_name)s replaced by lot %(new_lot_name)s."
477
+ msgstr ""
478
+
479
+ #. module: shopfloor
480
+ #. odoo-python
481
+ #: code:addons/shopfloor/services/checkout.py:0
482
+ #, python-format
483
+ msgid "Lot is not in the current transfer."
484
+ msgstr ""
485
+
486
+ #. module: shopfloor
487
+ #. odoo-python
488
+ #: code:addons/shopfloor/actions/message.py:0
489
+ #, python-format
490
+ msgid ""
491
+ "Lot {lot} for product {product} found in multiple locations. Scan your "
492
+ "location first."
493
+ msgstr ""
494
+
495
+ #. module: shopfloor
496
+ #. odoo-python
497
+ #: code:addons/shopfloor/services/delivery.py:0
498
+ #, python-format
499
+ msgid "Lot {} belongs to a picking without a valid state."
500
+ msgstr ""
501
+
502
+ #. module: shopfloor
503
+ #. odoo-python
504
+ #: code:addons/shopfloor/actions/message.py:0
505
+ #, python-format
506
+ msgid "Lot {} is for another product."
507
+ msgstr ""
508
+
509
+ #. module: shopfloor
510
+ #. odoo-python
511
+ #: code:addons/shopfloor/actions/inventory.py:0
512
+ #, python-format
513
+ msgid "Lot: "
514
+ msgstr ""
515
+
516
+ #. module: shopfloor
517
+ #: model:ir.model,name:shopfloor.model_shopfloor_menu
518
+ msgid "Menu displayed in the scanner application"
519
+ msgstr ""
520
+
521
+ #. module: shopfloor
522
+ #. odoo-python
523
+ #: code:addons/shopfloor/actions/message.py:0
524
+ #, python-format
525
+ msgid "Missing expiration date."
526
+ msgstr ""
527
+
528
+ #. module: shopfloor
529
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__move_create_is_possible
530
+ msgid "Move Create Is Possible"
531
+ msgstr ""
532
+
533
+ #. module: shopfloor
534
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_quant_package__move_line_ids
535
+ msgid "Move Line"
536
+ msgstr ""
537
+
538
+ #. module: shopfloor
539
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_picking__move_line_count
540
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_batch__move_line_count
541
+ msgid "Move Line Count"
542
+ msgstr ""
543
+
544
+ #. module: shopfloor
545
+ #. odoo-python
546
+ #: code:addons/shopfloor/actions/message.py:0
547
+ #, python-format
548
+ msgid "Move already processed."
549
+ msgstr ""
550
+
551
+ #. module: shopfloor
552
+ #. odoo-python
553
+ #: code:addons/shopfloor/models/stock_move_line.py:0
554
+ #, python-format
555
+ msgid "Move lines processed have to share the same source location."
556
+ msgstr ""
557
+
558
+ #. module: shopfloor
559
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__multiple_move_single_pack_is_possible
560
+ msgid "Multiple Move Single Pack Is Possible"
561
+ msgstr ""
562
+
563
+ #. module: shopfloor
564
+ #. odoo-python
565
+ #: code:addons/shopfloor/services/checkout.py:0
566
+ #, python-format
567
+ msgid "Negative quantity not allowed."
568
+ msgstr ""
569
+
570
+ #. module: shopfloor
571
+ #. odoo-python
572
+ #: code:addons/shopfloor/actions/message.py:0
573
+ #, python-format
574
+ msgid "New move lines cannot be assigned: canceled."
575
+ msgstr ""
576
+
577
+ #. module: shopfloor
578
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__no_prefill_qty_is_possible
579
+ msgid "No Prefill Qty Is Possible"
580
+ msgstr ""
581
+
582
+ #. module: shopfloor
583
+ #. odoo-python
584
+ #: code:addons/shopfloor/actions/message.py:0
585
+ #, python-format
586
+ msgid "No available work could be found."
587
+ msgstr ""
588
+
589
+ #. module: shopfloor
590
+ #. odoo-python
591
+ #: code:addons/shopfloor/actions/message.py:0
592
+ #, python-format
593
+ msgid "No delivery package type available."
594
+ msgstr ""
595
+
596
+ #. module: shopfloor
597
+ #. odoo-python
598
+ #: code:addons/shopfloor/actions/message.py:0
599
+ #, python-format
600
+ msgid "No line to pack found."
601
+ msgstr ""
602
+
603
+ #. module: shopfloor
604
+ #. odoo-python
605
+ #: code:addons/shopfloor/actions/message.py:0
606
+ #, python-format
607
+ msgid "No lines to process."
608
+ msgstr ""
609
+
610
+ #. module: shopfloor
611
+ #. odoo-python
612
+ #: code:addons/shopfloor/actions/message.py:0
613
+ #, python-format
614
+ msgid "No location found for this barcode."
615
+ msgstr ""
616
+
617
+ #. module: shopfloor
618
+ #. odoo-python
619
+ #: code:addons/shopfloor/actions/message.py:0
620
+ #, python-format
621
+ msgid "No lot found for {}"
622
+ msgstr ""
623
+
624
+ #. module: shopfloor
625
+ #. odoo-python
626
+ #: code:addons/shopfloor/services/cluster_picking.py:0
627
+ #, python-format
628
+ msgid "No more work to do, please create a new batch transfer"
629
+ msgstr ""
630
+
631
+ #. module: shopfloor
632
+ #. odoo-python
633
+ #: code:addons/shopfloor/actions/message.py:0
634
+ #, python-format
635
+ msgid "No operation found for this menu and profile."
636
+ msgstr ""
637
+
638
+ #. module: shopfloor
639
+ #. odoo-python
640
+ #: code:addons/shopfloor/actions/message.py:0
641
+ #, python-format
642
+ msgid "No operation type found for this menu and profile."
643
+ msgstr ""
644
+
645
+ #. module: shopfloor
646
+ #. odoo-python
647
+ #: code:addons/shopfloor/services/service.py:0
648
+ #, python-format
649
+ msgid "No operation types configured on menu {}."
650
+ msgstr ""
651
+
652
+ #. module: shopfloor
653
+ #. odoo-python
654
+ #: code:addons/shopfloor/actions/message.py:0
655
+ #, python-format
656
+ msgid "No package or lot found for barcode {}."
657
+ msgstr ""
658
+
659
+ #. module: shopfloor
660
+ #. odoo-python
661
+ #: code:addons/shopfloor/actions/message.py:0
662
+ #, python-format
663
+ msgid "No pending operation for package %s."
664
+ msgstr ""
665
+
666
+ #. module: shopfloor
667
+ #. odoo-python
668
+ #: code:addons/shopfloor/actions/message.py:0
669
+ #, python-format
670
+ msgid "No product found for {}"
671
+ msgstr ""
672
+
673
+ #. module: shopfloor
674
+ #. odoo-python
675
+ #: code:addons/shopfloor/actions/message.py:0
676
+ #, python-format
677
+ msgid "No product found in {}"
678
+ msgstr ""
679
+
680
+ #. module: shopfloor
681
+ #. odoo-python
682
+ #: code:addons/shopfloor/actions/message.py:0
683
+ #, python-format
684
+ msgid "No putaway destination is available."
685
+ msgstr ""
686
+
687
+ #. module: shopfloor
688
+ #. odoo-python
689
+ #: code:addons/shopfloor/actions/message.py:0
690
+ #, python-format
691
+ msgid "No quantity has been processed, unable to complete the transfer."
692
+ msgstr ""
693
+
694
+ #. module: shopfloor
695
+ #. odoo-python
696
+ #: code:addons/shopfloor/actions/message.py:0
697
+ #, python-format
698
+ msgid "No transfer found for the scanned lot."
699
+ msgstr ""
700
+
701
+ #. module: shopfloor
702
+ #. odoo-python
703
+ #: code:addons/shopfloor/actions/message.py:0
704
+ #, python-format
705
+ msgid "No transfer found for the scanned packaging."
706
+ msgstr ""
707
+
708
+ #. module: shopfloor
709
+ #. odoo-python
710
+ #: code:addons/shopfloor/actions/message.py:0
711
+ #, python-format
712
+ msgid "No transfer found for this lot."
713
+ msgstr ""
714
+
715
+ #. module: shopfloor
716
+ #. odoo-python
717
+ #: code:addons/shopfloor/actions/message.py:0
718
+ #, python-format
719
+ msgid "No transfer found for this product."
720
+ msgstr ""
721
+
722
+ #. module: shopfloor
723
+ #. odoo-python
724
+ #: code:addons/shopfloor/actions/message.py:0
725
+ #, python-format
726
+ msgid "No valid package to select."
727
+ msgstr ""
728
+
729
+ #. module: shopfloor
730
+ #. odoo-python
731
+ #: code:addons/shopfloor/actions/message.py:0
732
+ #, python-format
733
+ msgid "No value"
734
+ msgstr ""
735
+
736
+ #. module: shopfloor
737
+ #. odoo-python
738
+ #: code:addons/shopfloor/actions/message.py:0
739
+ #, python-format
740
+ msgid ""
741
+ "Not all lines have been processed with full quantity. Do you confirm partial"
742
+ " operation?"
743
+ msgstr ""
744
+
745
+ #. module: shopfloor
746
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__picking_type_ids
747
+ msgid "Operation Types"
748
+ msgstr ""
749
+
750
+ #. module: shopfloor
751
+ #. odoo-python
752
+ #: code:addons/shopfloor/actions/message.py:0
753
+ #, python-format
754
+ msgid "Operation already processed."
755
+ msgstr ""
756
+
757
+ #. module: shopfloor
758
+ #. odoo-python
759
+ #: code:addons/shopfloor/actions/message.py:0
760
+ #, python-format
761
+ msgid ""
762
+ "Operation types for this menu are missing default source and destination "
763
+ "locations."
764
+ msgstr ""
765
+
766
+ #. module: shopfloor
767
+ #. odoo-python
768
+ #: code:addons/shopfloor/actions/message.py:0
769
+ #, python-format
770
+ msgid "Operation's already running. Would you like to take it over?"
771
+ msgstr ""
772
+
773
+ #. module: shopfloor
774
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_package_level__package_id
775
+ msgid "Package"
776
+ msgstr ""
777
+
778
+ #. module: shopfloor
779
+ #. odoo-python
780
+ #: code:addons/shopfloor/actions/message.py:0
781
+ #, python-format
782
+ msgid "Package %(old_package_name)s replaced by package %(new_package_name)s."
783
+ msgstr ""
784
+
785
+ #. module: shopfloor
786
+ #. odoo-python
787
+ #: code:addons/shopfloor/actions/message.py:0
788
+ #, python-format
789
+ msgid ""
790
+ "Package %(package_name)s cannot be picked, already moved by transfer "
791
+ "%(picking_name)s."
792
+ msgstr ""
793
+
794
+ #. module: shopfloor
795
+ #. odoo-python
796
+ #: code:addons/shopfloor/actions/message.py:0
797
+ #, python-format
798
+ msgid "Package %(package_name)s cannot be used: %(error)s"
799
+ msgstr ""
800
+
801
+ #. module: shopfloor
802
+ #. odoo-python
803
+ #: code:addons/shopfloor/models/stock_move_line.py:0
804
+ #, python-format
805
+ msgid ""
806
+ "Package %(package_name)s does not contain available product "
807
+ "%(product_name)s, cannot replace package."
808
+ msgstr ""
809
+
810
+ #. module: shopfloor
811
+ #. odoo-python
812
+ #: code:addons/shopfloor/actions/message.py:0
813
+ #, python-format
814
+ msgid ""
815
+ "Package %(package_name)s is not available in transfer %(picking_name)s."
816
+ msgstr ""
817
+
818
+ #. module: shopfloor
819
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_picking__package_level_count
820
+ msgid "Package Level Count"
821
+ msgstr ""
822
+
823
+ #. module: shopfloor
824
+ #. odoo-python
825
+ #: code:addons/shopfloor/services/checkout.py:0
826
+ #, python-format
827
+ msgid "Package cancelled"
828
+ msgstr ""
829
+
830
+ #. module: shopfloor
831
+ #. odoo-python
832
+ #: code:addons/shopfloor/actions/message.py:0
833
+ #, python-format
834
+ msgid "Package has been opened. You can move partial quantities."
835
+ msgstr ""
836
+
837
+ #. module: shopfloor
838
+ #. odoo-python
839
+ #: code:addons/shopfloor/models/stock_quant_package.py:0
840
+ #, python-format
841
+ msgid "Package name must be unique!"
842
+ msgstr ""
843
+
844
+ #. module: shopfloor
845
+ #. odoo-python
846
+ #: code:addons/shopfloor/services/delivery.py:0
847
+ #, python-format
848
+ msgid "Package {} belongs to a picking without a valid state."
849
+ msgstr ""
850
+
851
+ #. module: shopfloor
852
+ #. odoo-python
853
+ #: code:addons/shopfloor/actions/message.py:0
854
+ #, python-format
855
+ msgid "Package {} has a different content."
856
+ msgstr ""
857
+
858
+ #. module: shopfloor
859
+ #. odoo-python
860
+ #: code:addons/shopfloor/models/stock_move_line.py:0
861
+ #, python-format
862
+ msgid "Package {} has been partially picked in another location"
863
+ msgstr ""
864
+
865
+ #. module: shopfloor
866
+ #. odoo-python
867
+ #: code:addons/shopfloor/actions/message.py:0
868
+ #, python-format
869
+ msgid "Package {} is already used."
870
+ msgstr ""
871
+
872
+ #. module: shopfloor
873
+ #. odoo-python
874
+ #: code:addons/shopfloor/actions/message.py:0
875
+ #, python-format
876
+ msgid "Package {} is not empty."
877
+ msgstr ""
878
+
879
+ #. module: shopfloor
880
+ #. odoo-python
881
+ #: code:addons/shopfloor/services/checkout.py:0
882
+ #, python-format
883
+ msgid "Package {} is not in the current transfer."
884
+ msgstr ""
885
+
886
+ #. module: shopfloor
887
+ #: model:ir.model,name:shopfloor.model_stock_quant_package
888
+ msgid "Packages"
889
+ msgstr ""
890
+
891
+ #. module: shopfloor
892
+ #. odoo-python
893
+ #: code:addons/shopfloor/actions/message.py:0
894
+ #, python-format
895
+ msgid ""
896
+ "Packaging '%(package_name)s' is not allowed for carrier %(carrier_name)s.or "
897
+ "carrier %(carrier_name)s."
898
+ msgstr ""
899
+
900
+ #. module: shopfloor
901
+ #. odoo-python
902
+ #: code:addons/shopfloor/services/checkout.py:0
903
+ #, python-format
904
+ msgid "Packaging changed on package {}"
905
+ msgstr ""
906
+
907
+ #. module: shopfloor
908
+ #. odoo-python
909
+ #: code:addons/shopfloor/actions/message.py:0
910
+ #, python-format
911
+ msgid "Packaging not found in the current transfer."
912
+ msgstr ""
913
+
914
+ #. module: shopfloor
915
+ #. odoo-python
916
+ #: code:addons/shopfloor/actions/message.py:0
917
+ #, python-format
918
+ msgid ""
919
+ "Pick + Pack mode ON: the picking {0.name} has no carrier set. The system "
920
+ "couldn't pack goods automatically."
921
+ msgstr ""
922
+
923
+ #. module: shopfloor
924
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__pick_pack_same_time_is_possible
925
+ msgid "Pick Pack Same Time Is Possible"
926
+ msgstr ""
927
+
928
+ #. module: shopfloor
929
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__pick_pack_same_time
930
+ msgid "Pick and pack at the same time"
931
+ msgstr ""
932
+
933
+ #. module: shopfloor
934
+ #. odoo-python
935
+ #: code:addons/shopfloor/actions/change_package_lot.py:0
936
+ #, python-format
937
+ msgid "Pick: stock issue on lot: %(lot_name)s found in %(location_name)s"
938
+ msgstr ""
939
+
940
+ #. module: shopfloor
941
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_package_level__picking_id
942
+ msgid "Picking"
943
+ msgstr ""
944
+
945
+ #. module: shopfloor
946
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_batch__picking_count
947
+ msgid "Picking Count"
948
+ msgstr ""
949
+
950
+ #. module: shopfloor
951
+ #: model:ir.model,name:shopfloor.model_stock_picking_type
952
+ msgid "Picking Type"
953
+ msgstr ""
954
+
955
+ #. module: shopfloor
956
+ #. odoo-python
957
+ #: code:addons/shopfloor/actions/message.py:0
958
+ #, python-format
959
+ msgid "Picking has already been started in this location in transfer(s): {}"
960
+ msgstr ""
961
+
962
+ #. module: shopfloor
963
+ #. odoo-python
964
+ #: code:addons/shopfloor/actions/message.py:0
965
+ #, python-format
966
+ msgid "Picking type {} complete."
967
+ msgstr ""
968
+
969
+ #. module: shopfloor
970
+ #. odoo-python
971
+ #: code:addons/shopfloor/actions/message.py:0
972
+ #, python-format
973
+ msgid "Place it in {}?"
974
+ msgstr ""
975
+
976
+ #. module: shopfloor
977
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_quant_package__planned_move_line_ids
978
+ msgid "Planned Move Line"
979
+ msgstr ""
980
+
981
+ #. module: shopfloor
982
+ #. odoo-python
983
+ #: code:addons/shopfloor/actions/message.py:0
984
+ #, python-format
985
+ msgid ""
986
+ "Please note that the scanned quantity is higher than the maximum allowed."
987
+ msgstr ""
988
+
989
+ #. module: shopfloor
990
+ #. odoo-python
991
+ #: code:addons/shopfloor/actions/message.py:0
992
+ #, python-format
993
+ msgid "Please scan the location first."
994
+ msgstr ""
995
+
996
+ #. module: shopfloor
997
+ #. odoo-python
998
+ #: code:addons/shopfloor/actions/message.py:0
999
+ #, python-format
1000
+ msgid "Please scan the package."
1001
+ msgstr ""
1002
+
1003
+ #. module: shopfloor
1004
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__prepackaged_product_is_possible
1005
+ msgid "Prepackaged Product Is Possible"
1006
+ msgstr ""
1007
+
1008
+ #. module: shopfloor
1009
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_prepackaged_product
1010
+ msgid "Process as pre-packaged"
1011
+ msgstr ""
1012
+
1013
+ #. module: shopfloor
1014
+ #. odoo-python
1015
+ #: code:addons/shopfloor/models/shopfloor_menu.py:0
1016
+ #, python-format
1017
+ msgid "Processing reserved quantities is not allowed for menu {}."
1018
+ msgstr ""
1019
+
1020
+ #. module: shopfloor
1021
+ #: model:ir.model,name:shopfloor.model_stock_move_line
1022
+ msgid "Product Moves (Stock Move Line)"
1023
+ msgstr ""
1024
+
1025
+ #. module: shopfloor
1026
+ #. odoo-python
1027
+ #: code:addons/shopfloor/actions/message.py:0
1028
+ #, python-format
1029
+ msgid "Product is not in the current transfer."
1030
+ msgstr ""
1031
+
1032
+ #. module: shopfloor
1033
+ #. odoo-python
1034
+ #: code:addons/shopfloor/actions/message.py:0
1035
+ #, python-format
1036
+ msgid "Product tracked by lot, please scan one."
1037
+ msgstr ""
1038
+
1039
+ #. module: shopfloor
1040
+ #. odoo-python
1041
+ #: code:addons/shopfloor/services/delivery.py:0
1042
+ #, python-format
1043
+ msgid "Product {} belongs to a picking without a valid state."
1044
+ msgstr ""
1045
+
1046
+ #. module: shopfloor
1047
+ #. odoo-python
1048
+ #: code:addons/shopfloor/actions/message.py:0
1049
+ #, python-format
1050
+ msgid "Product {} found in multiple locations. Scan your location first."
1051
+ msgstr ""
1052
+
1053
+ #. module: shopfloor
1054
+ #. odoo-python
1055
+ #: code:addons/shopfloor/services/checkout.py:0
1056
+ #, python-format
1057
+ msgid "Product(s) processed as raw product(s)"
1058
+ msgstr ""
1059
+
1060
+ #. module: shopfloor
1061
+ #: model:ir.model,name:shopfloor.model_stock_quant
1062
+ msgid "Quants"
1063
+ msgstr ""
1064
+
1065
+ #. module: shopfloor
1066
+ #: model:ir.model.fields,help:shopfloor.field_stock_quant_package__shopfloor_weight
1067
+ msgid "Real pack weight or the estimated one."
1068
+ msgstr ""
1069
+
1070
+ #. module: shopfloor
1071
+ #. odoo-python
1072
+ #: code:addons/shopfloor/actions/message.py:0
1073
+ #, python-format
1074
+ msgid "Recovered previous session."
1075
+ msgstr ""
1076
+
1077
+ #. module: shopfloor
1078
+ #. odoo-python
1079
+ #: code:addons/shopfloor/services/checkout.py:0
1080
+ #, python-format
1081
+ msgid "Remaining raw product not packed, proceed anyway?"
1082
+ msgstr ""
1083
+
1084
+ #. module: shopfloor
1085
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_location__reserved_move_line_ids
1086
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_quant_package__reserved_move_line_ids
1087
+ msgid "Reserved Move Line"
1088
+ msgstr ""
1089
+
1090
+ #. module: shopfloor
1091
+ #. odoo-python
1092
+ #: code:addons/shopfloor/actions/message.py:0
1093
+ #, python-format
1094
+ msgid "Restart the operation, someone has canceled it."
1095
+ msgstr ""
1096
+
1097
+ #. module: shopfloor
1098
+ #: model_terms:ir.ui.view,arch_db:shopfloor.view_stock_move_line_detailed_operation_tree
1099
+ msgid "SF Priority"
1100
+ msgstr ""
1101
+
1102
+ #. module: shopfloor
1103
+ #: model_terms:ir.ui.view,arch_db:shopfloor.view_stock_move_line_detailed_operation_tree
1104
+ msgid "SF User"
1105
+ msgstr ""
1106
+
1107
+ #. module: shopfloor
1108
+ #: model_terms:ir.ui.view,arch_db:shopfloor.view_stock_move_line_detailed_operation_tree
1109
+ msgid "SF checkout done"
1110
+ msgstr ""
1111
+
1112
+ #. module: shopfloor
1113
+ #: model_terms:ir.ui.view,arch_db:shopfloor.view_stock_move_line_detailed_operation_tree
1114
+ msgid "SF unloaded"
1115
+ msgstr ""
1116
+
1117
+ #. module: shopfloor
1118
+ #. odoo-python
1119
+ #: code:addons/shopfloor/actions/message.py:0
1120
+ #, python-format
1121
+ msgid "Same package {} is already assigned."
1122
+ msgstr ""
1123
+
1124
+ #. module: shopfloor
1125
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__scan_location_or_pack_first_is_possible
1126
+ msgid "Scan Location Or Pack First Is Possible"
1127
+ msgstr ""
1128
+
1129
+ #. module: shopfloor
1130
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__scan_location_or_pack_first
1131
+ msgid "Scan first location or pack"
1132
+ msgstr ""
1133
+
1134
+ #. module: shopfloor
1135
+ #. odoo-python
1136
+ #: code:addons/shopfloor/actions/message.py:0
1137
+ #, python-format
1138
+ msgid "Scan the destination location"
1139
+ msgstr ""
1140
+
1141
+ #. module: shopfloor
1142
+ #. odoo-python
1143
+ #: code:addons/shopfloor/services/location_content_transfer.py:0
1144
+ #: code:addons/shopfloor/services/location_content_transfer.py:0
1145
+ #, python-format
1146
+ msgid "Scan the package"
1147
+ msgstr ""
1148
+
1149
+ #. module: shopfloor
1150
+ #. odoo-python
1151
+ #: code:addons/shopfloor/models/shopfloor_menu.py:0
1152
+ #, python-format
1153
+ msgid ""
1154
+ "Scenario `%(scenario_name)s` require(s) 'Move Entire Packages' to be enabled.\n"
1155
+ "These type(s) do not satisfy this constraint: \n"
1156
+ "%(bad_picking_types)s.\n"
1157
+ "Please, adjust your configuration."
1158
+ msgstr ""
1159
+
1160
+ #. module: shopfloor
1161
+ #: model:ir.model.fields,help:shopfloor.field_stock_move_line__date_planned
1162
+ msgid "Scheduled date until move is done, then date of actual move processing"
1163
+ msgstr ""
1164
+
1165
+ #. module: shopfloor
1166
+ #. odoo-python
1167
+ #: code:addons/shopfloor/actions/message.py:0
1168
+ #, python-format
1169
+ msgid "Several lots found in %(name)s, please scan the lot."
1170
+ msgstr ""
1171
+
1172
+ #. module: shopfloor
1173
+ #. odoo-python
1174
+ #: code:addons/shopfloor/actions/message.py:0
1175
+ #, python-format
1176
+ msgid "Several lots found in %s, please scan a lot."
1177
+ msgstr ""
1178
+
1179
+ #. module: shopfloor
1180
+ #. odoo-python
1181
+ #: code:addons/shopfloor/actions/message.py:0
1182
+ #, python-format
1183
+ msgid "Several moves found for different lots, please scan the lot."
1184
+ msgstr ""
1185
+
1186
+ #. module: shopfloor
1187
+ #. odoo-python
1188
+ #: code:addons/shopfloor/actions/message.py:0
1189
+ #, python-format
1190
+ msgid ""
1191
+ "Several moves found on different locations, please scan first the location."
1192
+ msgstr ""
1193
+
1194
+ #. module: shopfloor
1195
+ #. odoo-python
1196
+ #: code:addons/shopfloor/actions/message.py:0
1197
+ #, python-format
1198
+ msgid "Several operation types found for this menu and profile."
1199
+ msgstr ""
1200
+
1201
+ #. module: shopfloor
1202
+ #. odoo-python
1203
+ #: code:addons/shopfloor/actions/message.py:0
1204
+ #, python-format
1205
+ msgid "Several packages found in %(name)s, please scan a package."
1206
+ msgstr ""
1207
+
1208
+ #. module: shopfloor
1209
+ #. odoo-python
1210
+ #: code:addons/shopfloor/actions/message.py:0
1211
+ #, python-format
1212
+ msgid "Several products found in %(name)s, please scan a product."
1213
+ msgstr ""
1214
+
1215
+ #. module: shopfloor
1216
+ #. odoo-python
1217
+ #: code:addons/shopfloor/actions/message.py:0
1218
+ #, python-format
1219
+ msgid "Several products found in %(name)s, please scan the product."
1220
+ msgstr ""
1221
+
1222
+ #. module: shopfloor
1223
+ #. odoo-python
1224
+ #: code:addons/shopfloor/services/checkout.py:0
1225
+ #, python-format
1226
+ msgid ""
1227
+ "Several transfers found, please scan a package or select a transfer "
1228
+ "manually."
1229
+ msgstr ""
1230
+
1231
+ #. module: shopfloor
1232
+ #. odoo-python
1233
+ #: code:addons/shopfloor/actions/message.py:0
1234
+ #, python-format
1235
+ msgid "Several transfers found, please select a transfer manually."
1236
+ msgstr ""
1237
+
1238
+ #. module: shopfloor
1239
+ #: model_terms:ir.ui.view,arch_db:shopfloor.view_location_form
1240
+ #: model_terms:ir.ui.view,arch_db:shopfloor.view_picking_type_form
1241
+ msgid "Shopfloor"
1242
+ msgstr ""
1243
+
1244
+ #. module: shopfloor
1245
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__shopfloor_checkout_done
1246
+ msgid "Shopfloor Checkout Done"
1247
+ msgstr ""
1248
+
1249
+ #. module: shopfloor
1250
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_type__shopfloor_menu_ids
1251
+ msgid "Shopfloor Menus"
1252
+ msgstr ""
1253
+
1254
+ #. module: shopfloor
1255
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_location__shopfloor_picking_sequence
1256
+ msgid "Shopfloor Picking Sequence"
1257
+ msgstr ""
1258
+
1259
+ #. module: shopfloor
1260
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_priority_postpone_mixin__shopfloor_postponed
1261
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__shopfloor_postponed
1262
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_package_level__shopfloor_postponed
1263
+ msgid "Shopfloor Postponed"
1264
+ msgstr ""
1265
+
1266
+ #. module: shopfloor
1267
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_priority_postpone_mixin__shopfloor_priority
1268
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__shopfloor_priority
1269
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_package_level__shopfloor_priority
1270
+ msgid "Shopfloor Priority"
1271
+ msgstr ""
1272
+
1273
+ #. module: shopfloor
1274
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__shopfloor_unloaded
1275
+ msgid "Shopfloor Unloaded"
1276
+ msgstr ""
1277
+
1278
+ #. module: shopfloor
1279
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__shopfloor_user_id
1280
+ msgid "Shopfloor User"
1281
+ msgstr ""
1282
+
1283
+ #. module: shopfloor
1284
+ #: model:shopfloor.app,name:shopfloor.app_demo
1285
+ msgid "Shopfloor WMS (demo)"
1286
+ msgstr ""
1287
+
1288
+ #. module: shopfloor
1289
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_quant_package__shopfloor_weight
1290
+ msgid "Shopfloor weight (kg)"
1291
+ msgstr ""
1292
+
1293
+ #. module: shopfloor
1294
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__allow_get_work
1295
+ msgid "Show Get Work on start"
1296
+ msgstr ""
1297
+
1298
+ #. module: shopfloor
1299
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__show_oneline_package_content_is_possible
1300
+ msgid "Show Oneline Package Content Is Possible"
1301
+ msgstr ""
1302
+
1303
+ #. module: shopfloor
1304
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__show_oneline_package_content
1305
+ msgid "Show one-line package content"
1306
+ msgstr ""
1307
+
1308
+ #. module: shopfloor
1309
+ #: model:shopfloor.scenario,name:shopfloor.scenario_single_pack_transfer
1310
+ msgid "Single Pack Transfer"
1311
+ msgstr ""
1312
+
1313
+ #. module: shopfloor
1314
+ #: model:shopfloor.menu,name:shopfloor.shopfloor_menu_demo_single_pallet_transfer
1315
+ #: model:stock.picking.type,name:shopfloor.picking_type_single_pallet_transfer_demo
1316
+ msgid "Single Pallet Transfer"
1317
+ msgstr ""
1318
+
1319
+ #. module: shopfloor
1320
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__allow_move_create
1321
+ msgid ""
1322
+ "Some scenario may create move(s) when a product or package is scanned and no"
1323
+ " move already exists. Any new move is created in the selected operation "
1324
+ "type, so it can be active only when one type is selected."
1325
+ msgstr ""
1326
+
1327
+ #. module: shopfloor
1328
+ #. odoo-python
1329
+ #: code:addons/shopfloor/actions/stock.py:0
1330
+ #, python-format
1331
+ msgid "Someone is already working on these transfers"
1332
+ msgstr ""
1333
+
1334
+ #. module: shopfloor
1335
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_location__source_move_line_ids
1336
+ msgid "Source Move Line"
1337
+ msgstr ""
1338
+
1339
+ #. module: shopfloor
1340
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__package_id
1341
+ msgid "Source Package"
1342
+ msgstr ""
1343
+
1344
+ #. module: shopfloor
1345
+ #: model:ir.model,name:shopfloor.model_stock_move
1346
+ msgid "Stock Move"
1347
+ msgstr ""
1348
+
1349
+ #. module: shopfloor
1350
+ #: model:ir.model,name:shopfloor.model_stock_package_level
1351
+ msgid "Stock Package Level"
1352
+ msgstr ""
1353
+
1354
+ #. module: shopfloor
1355
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_priority_postpone_mixin__shopfloor_postponed
1356
+ #: model:ir.model.fields,help:shopfloor.field_stock_move_line__shopfloor_postponed
1357
+ #: model:ir.model.fields,help:shopfloor.field_stock_package_level__shopfloor_postponed
1358
+ msgid ""
1359
+ "Technical field. Indicates if the operation has been postponed in a barcode "
1360
+ "scenario."
1361
+ msgstr ""
1362
+
1363
+ #. module: shopfloor
1364
+ #: model:ir.model.fields,help:shopfloor.field_stock_picking__move_line_count
1365
+ #: model:ir.model.fields,help:shopfloor.field_stock_picking_batch__move_line_count
1366
+ msgid "Technical field. Indicates number of move lines included."
1367
+ msgstr ""
1368
+
1369
+ #. module: shopfloor
1370
+ #: model:ir.model.fields,help:shopfloor.field_stock_picking__bulk_line_count
1371
+ msgid ""
1372
+ "Technical field. Indicates number of move lines without package included."
1373
+ msgstr ""
1374
+
1375
+ #. module: shopfloor
1376
+ #: model:ir.model.fields,help:shopfloor.field_stock_picking__package_level_count
1377
+ msgid "Technical field. Indicates number of package_level included."
1378
+ msgstr ""
1379
+
1380
+ #. module: shopfloor
1381
+ #: model:ir.model.fields,help:shopfloor.field_stock_picking_batch__picking_count
1382
+ msgid "Technical field. Indicates number of transfers included."
1383
+ msgstr ""
1384
+
1385
+ #. module: shopfloor
1386
+ #: model:ir.model.fields,help:shopfloor.field_stock_picking__total_weight
1387
+ #: model:ir.model.fields,help:shopfloor.field_stock_picking_batch__total_weight
1388
+ msgid "Technical field. Indicates total weight of transfers included."
1389
+ msgstr ""
1390
+
1391
+ #. module: shopfloor
1392
+ #: model:ir.model.fields,help:shopfloor.field_stock_quant_package__planned_move_line_ids
1393
+ msgid "Technical field. Move lines for which destination is this package."
1394
+ msgstr ""
1395
+
1396
+ #. module: shopfloor
1397
+ #: model:ir.model.fields,help:shopfloor.field_stock_quant_package__move_line_ids
1398
+ msgid "Technical field. Move lines moving this package."
1399
+ msgstr ""
1400
+
1401
+ #. module: shopfloor
1402
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_priority_postpone_mixin__shopfloor_priority
1403
+ #: model:ir.model.fields,help:shopfloor.field_stock_move_line__shopfloor_priority
1404
+ #: model:ir.model.fields,help:shopfloor.field_stock_package_level__shopfloor_priority
1405
+ msgid "Technical field. Overrides operation priority in barcode scenario."
1406
+ msgstr ""
1407
+
1408
+ #. module: shopfloor
1409
+ #. odoo-python
1410
+ #: code:addons/shopfloor/models/stock_picking.py:0
1411
+ #, python-format
1412
+ msgid ""
1413
+ "The backorder <a href=\"#\" data-oe-model=\"stock.picking\" data-oe-"
1414
+ "id=\"%(new_picking_id)d\">%(new_picking_name)s</a> has been created."
1415
+ msgstr ""
1416
+
1417
+ #. module: shopfloor
1418
+ #. odoo-python
1419
+ #: code:addons/shopfloor/actions/message.py:0
1420
+ #, python-format
1421
+ msgid "The content of {} cannot be transferred with this scenario."
1422
+ msgstr ""
1423
+
1424
+ #. module: shopfloor
1425
+ #. odoo-python
1426
+ #: code:addons/shopfloor/services/cluster_picking.py:0
1427
+ #, python-format
1428
+ msgid "The destination bin {} is not empty, please take another."
1429
+ msgstr ""
1430
+
1431
+ #. module: shopfloor
1432
+ #. odoo-python
1433
+ #: code:addons/shopfloor/actions/message.py:0
1434
+ #, python-format
1435
+ msgid "The pack has been moved, you can scan a new pack."
1436
+ msgstr ""
1437
+
1438
+ #. module: shopfloor
1439
+ #. odoo-python
1440
+ #: code:addons/shopfloor/actions/message.py:0
1441
+ #, python-format
1442
+ msgid "The package %s cannot be transferred with this scenario."
1443
+ msgstr ""
1444
+
1445
+ #. module: shopfloor
1446
+ #. odoo-python
1447
+ #: code:addons/shopfloor/actions/message.py:0
1448
+ #, python-format
1449
+ msgid "The package %s doesn't contain any product to take."
1450
+ msgstr ""
1451
+
1452
+ #. module: shopfloor
1453
+ #. odoo-python
1454
+ #: code:addons/shopfloor/actions/message.py:0
1455
+ #, python-format
1456
+ msgid "The package %s doesn't exist"
1457
+ msgstr ""
1458
+
1459
+ #. module: shopfloor
1460
+ #. odoo-python
1461
+ #: code:addons/shopfloor/actions/message.py:0
1462
+ #, python-format
1463
+ msgid "The picked quantity must be a value above zero."
1464
+ msgstr ""
1465
+
1466
+ #. module: shopfloor
1467
+ #: model:ir.model.fields,help:shopfloor.field_stock_location__shopfloor_picking_sequence
1468
+ msgid ""
1469
+ "The picking done in Shopfloor scenarios will respect this order. The "
1470
+ "sequence is a char so it can be composed of fields such as 'corridor-rack-"
1471
+ "side-level'. Pay attention to the padding ('09' is before '19', '9' is not)."
1472
+ " It is recommended to use an Export then an Import to populate this field "
1473
+ "using a spreadsheet."
1474
+ msgstr ""
1475
+
1476
+ #. module: shopfloor
1477
+ #. odoo-python
1478
+ #: code:addons/shopfloor/actions/message.py:0
1479
+ #, python-format
1480
+ msgid "The product/packaging you selected has already been returned."
1481
+ msgstr ""
1482
+
1483
+ #. module: shopfloor
1484
+ #. odoo-python
1485
+ #: code:addons/shopfloor/actions/message.py:0
1486
+ #, python-format
1487
+ msgid ""
1488
+ "The quantity scanned for one or more lines cannot be higher than the maximum"
1489
+ " allowed."
1490
+ msgstr ""
1491
+
1492
+ #. module: shopfloor
1493
+ #. odoo-python
1494
+ #: code:addons/shopfloor/actions/change_package_lot.py:0
1495
+ #, python-format
1496
+ msgid "The quantity to do has changed!"
1497
+ msgstr ""
1498
+
1499
+ #. module: shopfloor
1500
+ #. odoo-python
1501
+ #: code:addons/shopfloor/actions/message.py:0
1502
+ #, python-format
1503
+ msgid "The record you were working on does not exist anymore."
1504
+ msgstr ""
1505
+
1506
+ #. module: shopfloor
1507
+ #. odoo-python
1508
+ #: code:addons/shopfloor/models/stock_move.py:0
1509
+ #, python-format
1510
+ msgid "The split order {} has been created."
1511
+ msgstr ""
1512
+
1513
+ #. module: shopfloor
1514
+ #: model:ir.model.fields,help:shopfloor.field_stock_move_line__picking_id
1515
+ msgid "The stock operation where the packing has been made"
1516
+ msgstr ""
1517
+
1518
+ #. module: shopfloor
1519
+ #. odoo-python
1520
+ #: code:addons/shopfloor/services/cluster_picking.py:0
1521
+ #, python-format
1522
+ msgid "This batch cannot be selected."
1523
+ msgstr ""
1524
+
1525
+ #. module: shopfloor
1526
+ #. odoo-python
1527
+ #: code:addons/shopfloor/actions/message.py:0
1528
+ #, python-format
1529
+ msgid "This line has a package, please select the package instead."
1530
+ msgstr ""
1531
+
1532
+ #. module: shopfloor
1533
+ #. odoo-python
1534
+ #: code:addons/shopfloor/actions/message.py:0
1535
+ #, python-format
1536
+ msgid "This line is not available in transfer {}."
1537
+ msgstr ""
1538
+
1539
+ #. module: shopfloor
1540
+ #. odoo-python
1541
+ #: code:addons/shopfloor/services/location_content_transfer.py:0
1542
+ #, python-format
1543
+ msgid "This location content can't be moved at once."
1544
+ msgstr ""
1545
+
1546
+ #. module: shopfloor
1547
+ #. odoo-python
1548
+ #: code:addons/shopfloor/actions/message.py:0
1549
+ #, python-format
1550
+ msgid "This location does not exist."
1551
+ msgstr ""
1552
+
1553
+ #. module: shopfloor
1554
+ #. odoo-python
1555
+ #: code:addons/shopfloor/actions/message.py:0
1556
+ #, python-format
1557
+ msgid "This location only contains packages, please scan one of them."
1558
+ msgstr ""
1559
+
1560
+ #. module: shopfloor
1561
+ #. odoo-python
1562
+ #: code:addons/shopfloor/actions/message.py:0
1563
+ #, python-format
1564
+ msgid "This location requires packages. Please scan a destination package."
1565
+ msgstr ""
1566
+
1567
+ #. module: shopfloor
1568
+ #. odoo-python
1569
+ #: code:addons/shopfloor/actions/message.py:0
1570
+ #, python-format
1571
+ msgid ""
1572
+ "This lot is part of a package with other products, please scan a package."
1573
+ msgstr ""
1574
+
1575
+ #. module: shopfloor
1576
+ #. odoo-python
1577
+ #: code:addons/shopfloor/actions/message.py:0
1578
+ #, python-format
1579
+ msgid "This lot is part of multiple packages, please scan a package."
1580
+ msgstr ""
1581
+
1582
+ #. module: shopfloor
1583
+ #. odoo-python
1584
+ #: code:addons/shopfloor/actions/message.py:0
1585
+ #, python-format
1586
+ msgid "This operation does not exist anymore."
1587
+ msgstr ""
1588
+
1589
+ #. module: shopfloor
1590
+ #. odoo-python
1591
+ #: code:addons/shopfloor/actions/message.py:0
1592
+ #, python-format
1593
+ msgid "This package does not exist anymore."
1594
+ msgstr ""
1595
+
1596
+ #. module: shopfloor
1597
+ #. odoo-python
1598
+ #: code:addons/shopfloor/actions/message.py:0
1599
+ #, python-format
1600
+ msgid "This product does not exist anymore."
1601
+ msgstr ""
1602
+
1603
+ #. module: shopfloor
1604
+ #. odoo-python
1605
+ #: code:addons/shopfloor/actions/message.py:0
1606
+ #, python-format
1607
+ msgid ""
1608
+ "This product is part of a package with other products, please scan a "
1609
+ "package."
1610
+ msgstr ""
1611
+
1612
+ #. module: shopfloor
1613
+ #. odoo-python
1614
+ #: code:addons/shopfloor/actions/message.py:0
1615
+ #, python-format
1616
+ msgid "This product is part of a package, please scan a package."
1617
+ msgstr ""
1618
+
1619
+ #. module: shopfloor
1620
+ #. odoo-python
1621
+ #: code:addons/shopfloor/actions/message.py:0
1622
+ #, python-format
1623
+ msgid "This product is part of multiple packages, please scan a package."
1624
+ msgstr ""
1625
+
1626
+ #. module: shopfloor
1627
+ #. odoo-python
1628
+ #: code:addons/shopfloor/actions/message.py:0
1629
+ #, python-format
1630
+ msgid ""
1631
+ "This source document is part of multiple transfers, please scan a package."
1632
+ msgstr ""
1633
+
1634
+ #. module: shopfloor
1635
+ #. odoo-python
1636
+ #: code:addons/shopfloor/actions/message.py:0
1637
+ #, python-format
1638
+ msgid "This transfer does not exist or is not available anymore."
1639
+ msgstr ""
1640
+
1641
+ #. module: shopfloor
1642
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_picking__total_weight
1643
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_picking_batch__total_weight
1644
+ msgid "Total Weight"
1645
+ msgstr ""
1646
+
1647
+ #. module: shopfloor
1648
+ #: model:ir.model,name:shopfloor.model_stock_picking
1649
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_move_line__picking_id
1650
+ msgid "Transfer"
1651
+ msgstr ""
1652
+
1653
+ #. module: shopfloor
1654
+ #. odoo-python
1655
+ #: code:addons/shopfloor/actions/message.py:0
1656
+ #, python-format
1657
+ msgid "Transfer {} complete"
1658
+ msgstr ""
1659
+
1660
+ #. module: shopfloor
1661
+ #. odoo-python
1662
+ #: code:addons/shopfloor/actions/message.py:0
1663
+ #, python-format
1664
+ msgid "Transfer {} done"
1665
+ msgstr ""
1666
+
1667
+ #. module: shopfloor
1668
+ #. odoo-python
1669
+ #: code:addons/shopfloor/actions/message.py:0
1670
+ #, python-format
1671
+ msgid "Transfer {} is not available."
1672
+ msgstr ""
1673
+
1674
+ #. module: shopfloor
1675
+ #. odoo-python
1676
+ #: code:addons/shopfloor/actions/message.py:0
1677
+ #, python-format
1678
+ msgid "Units replaced by package {}."
1679
+ msgstr ""
1680
+
1681
+ #. module: shopfloor
1682
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__unload_package_at_destination_is_possible
1683
+ msgid "Unload Package At Destination Is Possible"
1684
+ msgstr ""
1685
+
1686
+ #. module: shopfloor
1687
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__unload_package_at_destination
1688
+ msgid "Unload package at destination"
1689
+ msgstr ""
1690
+
1691
+ #. module: shopfloor
1692
+ #. odoo-python
1693
+ #: code:addons/shopfloor/actions/message.py:0
1694
+ #, python-format
1695
+ msgid "Unrecoverable error, please restart."
1696
+ msgstr ""
1697
+
1698
+ #. module: shopfloor
1699
+ #: model:ir.model.fields,field_description:shopfloor.field_shopfloor_menu__unreserve_other_moves_is_possible
1700
+ msgid "Unreserve Other Moves Is Possible"
1701
+ msgstr ""
1702
+
1703
+ #. module: shopfloor
1704
+ #: model:shopfloor.profile,name:shopfloor.profile_demo_2
1705
+ msgid "WH delivery"
1706
+ msgstr ""
1707
+
1708
+ #. module: shopfloor
1709
+ #: model:shopfloor.profile,name:shopfloor.profile_demo_1
1710
+ msgid "WH worker"
1711
+ msgstr ""
1712
+
1713
+ #. module: shopfloor
1714
+ #: model:ir.model.fields.selection,name:shopfloor.selection__shopfloor_app__category__wms
1715
+ msgid "WMS"
1716
+ msgstr ""
1717
+
1718
+ #. module: shopfloor
1719
+ #: model:shopfloor.app,short_name:shopfloor.app_demo
1720
+ msgid "WMS (demo)"
1721
+ msgstr ""
1722
+
1723
+ #. module: shopfloor
1724
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__allow_prepackaged_product
1725
+ msgid ""
1726
+ "When active, what you scan (typically a product packaging EAN) will be ship "
1727
+ "'as-is' and the operation will be validated triggering a backorder creation "
1728
+ "with the remaining lines."
1729
+ msgstr ""
1730
+
1731
+ #. module: shopfloor
1732
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__allow_get_work
1733
+ msgid ""
1734
+ "When enabled the user will have the option to ask for a task to work on."
1735
+ msgstr ""
1736
+
1737
+ #. module: shopfloor
1738
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__allow_alternative_destination
1739
+ msgid ""
1740
+ "When enabled the user will have the option to scan destination locations "
1741
+ "other than the expected ones (ask for confirmation)."
1742
+ msgstr ""
1743
+
1744
+ #. module: shopfloor
1745
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__disable_full_bin_action
1746
+ msgid "When picking, prevent unloading the whole bin when full."
1747
+ msgstr ""
1748
+
1749
+ #. module: shopfloor
1750
+ #: model:ir.model.fields,help:shopfloor.field_shopfloor_menu__scan_location_or_pack_first
1751
+ msgid ""
1752
+ "When selecting work, force the user to first scan a location or pack,then "
1753
+ "the product or lot."
1754
+ msgstr ""
1755
+
1756
+ #. module: shopfloor
1757
+ #. odoo-python
1758
+ #: code:addons/shopfloor/actions/message.py:0
1759
+ #, python-format
1760
+ msgid "Working location changed to {}"
1761
+ msgstr ""
1762
+
1763
+ #. module: shopfloor
1764
+ #. odoo-python
1765
+ #: code:addons/shopfloor/services/cluster_picking.py:0
1766
+ #, python-format
1767
+ msgid "Wrong bin"
1768
+ msgstr ""
1769
+
1770
+ #. module: shopfloor
1771
+ #. odoo-python
1772
+ #: code:addons/shopfloor/actions/message.py:0
1773
+ #, python-format
1774
+ msgid "Wrong location."
1775
+ msgstr ""
1776
+
1777
+ #. module: shopfloor
1778
+ #. odoo-python
1779
+ #: code:addons/shopfloor/actions/message.py:0
1780
+ #, python-format
1781
+ msgid "Wrong lot."
1782
+ msgstr ""
1783
+
1784
+ #. module: shopfloor
1785
+ #. odoo-python
1786
+ #: code:addons/shopfloor/actions/message.py:0
1787
+ #, python-format
1788
+ msgid "Wrong pack."
1789
+ msgstr ""
1790
+
1791
+ #. module: shopfloor
1792
+ #. odoo-python
1793
+ #: code:addons/shopfloor/actions/message.py:0
1794
+ #, python-format
1795
+ msgid "Wrong packaging."
1796
+ msgstr ""
1797
+
1798
+ #. module: shopfloor
1799
+ #. odoo-python
1800
+ #: code:addons/shopfloor/actions/message.py:0
1801
+ #, python-format
1802
+ msgid "Wrong product."
1803
+ msgstr ""
1804
+
1805
+ #. module: shopfloor
1806
+ #. odoo-python
1807
+ #: code:addons/shopfloor/actions/message.py:0
1808
+ #, python-format
1809
+ msgid "Wrong."
1810
+ msgstr ""
1811
+
1812
+ #. module: shopfloor
1813
+ #. odoo-python
1814
+ #: code:addons/shopfloor/actions/message.py:0
1815
+ #, python-format
1816
+ msgid "You cannot move this using this menu."
1817
+ msgstr ""
1818
+
1819
+ #. module: shopfloor
1820
+ #. odoo-python
1821
+ #: code:addons/shopfloor/actions/message.py:0
1822
+ #, python-format
1823
+ msgid "You cannot place it here"
1824
+ msgstr ""
1825
+
1826
+ #. module: shopfloor
1827
+ #. odoo-python
1828
+ #: code:addons/shopfloor/actions/message.py:0
1829
+ #, python-format
1830
+ msgid "You cannot return more quantity than what was initially sent."
1831
+ msgstr ""
1832
+
1833
+ #. module: shopfloor
1834
+ #. odoo-python
1835
+ #: code:addons/shopfloor/actions/message.py:0
1836
+ #, python-format
1837
+ msgid ""
1838
+ "You cannot work on a package (%(barcode)s) outside of locations: %(names)s"
1839
+ msgstr ""
1840
+
1841
+ #. module: shopfloor
1842
+ #. odoo-python
1843
+ #: code:addons/shopfloor/actions/message.py:0
1844
+ #, python-format
1845
+ msgid "You must not pick more than {} units."
1846
+ msgstr ""
1847
+
1848
+ #. module: shopfloor
1849
+ #. odoo-python
1850
+ #: code:addons/shopfloor/actions/message.py:0
1851
+ #, python-format
1852
+ msgid ""
1853
+ "You scanned a different package with the same product, do you want to change"
1854
+ " pack? Scan it again to confirm"
1855
+ msgstr ""
1856
+
1857
+ #. module: shopfloor
1858
+ #: model:shopfloor.menu,name:shopfloor.shopfloor_menu_demo_zone_picking
1859
+ #: model:shopfloor.scenario,name:shopfloor.scenario_zone_picking
1860
+ #: model:stock.picking.type,name:shopfloor.picking_type_zone_picking_demo
1861
+ msgid "Zone Picking"
1862
+ msgstr ""
1863
+
1864
+ #. module: shopfloor
1865
+ #. odoo-python
1866
+ #: code:addons/shopfloor/actions/message.py:0
1867
+ #, python-format
1868
+ msgid ""
1869
+ "{message_code} not found in the current transfer or already in a package."
1870
+ msgstr ""
1871
+
1872
+ #. module: shopfloor
1873
+ #. odoo-python
1874
+ #: code:addons/shopfloor/actions/message.py:0
1875
+ #, python-format
1876
+ msgid "{} is not a valid destination package."
1877
+ msgstr ""