@things-factory/operato-wms 4.3.752 → 4.3.755

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 (78) hide show
  1. package/client/pages/inbound/unload-product.js +30 -33
  2. package/client/pages/outbound/loading-product.js +2 -3
  3. package/client/pages/outbound/loading-v2/loading-execution-base.js +568 -56
  4. package/client/pages/outbound/loading-v2/loading-execution.js +258 -8
  5. package/client/pages/outbound/loading-v2/loading.js +82 -12
  6. package/client/pages/outbound/picking-product.js +11 -6
  7. package/client/pages/outbound/picking-v2/picking-execution-base.js +8 -8
  8. package/client/pages/outbound/picking-v2/picking-execution.js +75 -0
  9. package/client/pages/outbound/route-label-history-dialog.js +253 -0
  10. package/client/pages/outbound/route-label-popup.js +637 -131
  11. package/client/pages/outbound/show-ro-list-popup.js +8 -4
  12. package/client/pages/outbound/single-outbound-worksheet.js +55 -6
  13. package/client/pages/outbound/sorting-product.js +71 -25
  14. package/client/pages/outbound/zone-worksheet.js +62 -3
  15. package/dist-server/entities/index.js +9 -0
  16. package/dist-server/entities/index.js.map +1 -0
  17. package/dist-server/entities/route-label-sequence-counter.js +75 -0
  18. package/dist-server/entities/route-label-sequence-counter.js.map +1 -0
  19. package/dist-server/entities/route-label-sequence-log.js +74 -0
  20. package/dist-server/entities/route-label-sequence-log.js.map +1 -0
  21. package/dist-server/graphql/resolvers/index.js +3 -0
  22. package/dist-server/graphql/resolvers/index.js.map +1 -1
  23. package/dist-server/graphql/resolvers/outbound/complete-load.js +40 -3
  24. package/dist-server/graphql/resolvers/outbound/complete-load.js.map +1 -1
  25. package/dist-server/graphql/resolvers/outbound/find-loadable-release-good-by-bin.js +50 -11
  26. package/dist-server/graphql/resolvers/outbound/find-loadable-release-good-by-bin.js.map +1 -1
  27. package/dist-server/graphql/resolvers/outbound/find-loadable-release-good.js +90 -48
  28. package/dist-server/graphql/resolvers/outbound/find-loadable-release-good.js.map +1 -1
  29. package/dist-server/graphql/resolvers/outbound/loading-worksheet-v2.js +15 -7
  30. package/dist-server/graphql/resolvers/outbound/loading-worksheet-v2.js.map +1 -1
  31. package/dist-server/graphql/resolvers/outbound/sort-item.js +95 -16
  32. package/dist-server/graphql/resolvers/outbound/sort-item.js.map +1 -1
  33. package/dist-server/graphql/resolvers/route-label/index.js +7 -0
  34. package/dist-server/graphql/resolvers/route-label/index.js.map +1 -0
  35. package/dist-server/graphql/resolvers/route-label/route-label.js +220 -0
  36. package/dist-server/graphql/resolvers/route-label/route-label.js.map +1 -0
  37. package/dist-server/graphql/resolvers/zone-worksheet/index.js.map +1 -1
  38. package/dist-server/graphql/resolvers/zone-worksheet/zone-picking.js +123 -27
  39. package/dist-server/graphql/resolvers/zone-worksheet/zone-picking.js.map +1 -1
  40. package/dist-server/graphql/resolvers/zone-worksheet/zone-worksheet.js.map +1 -1
  41. package/dist-server/graphql/types/index.js +4 -0
  42. package/dist-server/graphql/types/index.js.map +1 -1
  43. package/dist-server/graphql/types/outbound/index.js +7 -1
  44. package/dist-server/graphql/types/outbound/index.js.map +1 -1
  45. package/dist-server/graphql/types/route-label/index.js +14 -0
  46. package/dist-server/graphql/types/route-label/index.js.map +1 -0
  47. package/dist-server/graphql/types/route-label/route-label-sequence.js +53 -0
  48. package/dist-server/graphql/types/route-label/route-label-sequence.js.map +1 -0
  49. package/dist-server/index.js +5 -0
  50. package/dist-server/index.js.map +1 -1
  51. package/dist-server/validators/setting-validators.js +519 -0
  52. package/dist-server/validators/setting-validators.js.map +1 -0
  53. package/helps/operato-wms/outbound/picking-product.en.md +156 -158
  54. package/package.json +50 -50
  55. package/server/entities/index.ts +6 -0
  56. package/server/entities/route-label-sequence-counter.ts +56 -0
  57. package/server/entities/route-label-sequence-log.ts +47 -0
  58. package/server/graphql/resolvers/index.ts +3 -0
  59. package/server/graphql/resolvers/outbound/complete-load.ts +42 -1
  60. package/server/graphql/resolvers/outbound/find-loadable-release-good-by-bin.ts +56 -13
  61. package/server/graphql/resolvers/outbound/find-loadable-release-good.ts +120 -57
  62. package/server/graphql/resolvers/outbound/loading-worksheet-v2.ts +9 -2
  63. package/server/graphql/resolvers/outbound/sort-item.ts +125 -21
  64. package/server/graphql/resolvers/route-label/index.ts +16 -0
  65. package/server/graphql/resolvers/route-label/route-label.ts +264 -0
  66. package/server/graphql/resolvers/zone-worksheet/index.ts +2 -2
  67. package/server/graphql/resolvers/zone-worksheet/zone-picking.ts +156 -39
  68. package/server/graphql/resolvers/zone-worksheet/zone-worksheet.ts +1 -2
  69. package/server/graphql/types/index.ts +4 -0
  70. package/server/graphql/types/outbound/index.ts +7 -1
  71. package/server/graphql/types/route-label/index.ts +18 -0
  72. package/server/graphql/types/route-label/route-label-sequence.ts +50 -0
  73. package/server/index.ts +7 -1
  74. package/server/validators/setting-validators.ts +668 -0
  75. package/translations/en.json +280 -252
  76. package/translations/ko.json +29 -1
  77. package/translations/ms.json +28 -0
  78. package/translations/zh.json +28 -0
@@ -2,61 +2,63 @@
2
2
  "arrival_notice_created": "arrival notice created",
3
3
  "button.activate": "activate",
4
4
  "button.add_edit": "add & edit",
5
- "button.add_new": "add new",
6
5
  "button.add_new_product": "add new product",
6
+ "button.add_new": "add new",
7
7
  "button.add_vas": "add VAS",
8
8
  "button.add_x": "add {state.x}",
9
- "button.adjust": "adjust",
10
9
  "button.adjust_inventory": "adjust inventory",
11
- "button.approve": "approve",
10
+ "button.adjust": "adjust",
12
11
  "button.approve_cancellation": "approve cancellation",
12
+ "button.approve": "approve",
13
13
  "button.arrived": "arrived",
14
- "button.assign": "assign",
15
14
  "button.assign_picker": "assign picker",
16
15
  "button.assign_sorter": "assign sorter",
17
16
  "button.assign_warehouse": "assign warehouse",
17
+ "button.assign": "assign",
18
18
  "button.auto_assign": "auto assign",
19
19
  "button.auto_select": "auto select",
20
- "button.back": "back",
21
20
  "button.back_to_list": "back to list",
21
+ "button.back": "back",
22
22
  "button.batch_picking": "batch picking",
23
23
  "button.bulk_select_products": "bulk select products",
24
24
  "button.bulk_update_status": "bulk update status",
25
- "button.cancel": "cancel",
26
25
  "button.cancel_order": "cancel order",
26
+ "button.cancel": "cancel",
27
27
  "button.carton_label_print": "print carton label",
28
- "button.check": "check",
29
28
  "button.check_missing_x": "check missing {state.x}",
30
29
  "button.check_unknown_inventory": "check unknown inventory",
31
30
  "button.check_unknown_pallet": "check unknown pallet",
31
+ "button.check": "check",
32
32
  "button.complete": "complete",
33
33
  "button.completed": "completed",
34
34
  "button.confirm": "confirm",
35
- "button.create": "create",
36
35
  "button.create_gan": "create gan",
37
36
  "button.create_new_manifest": "create new manifest",
38
37
  "button.create_putaway_worksheet": "create putaway worksheet",
39
38
  "button.create_release_order": "create release order",
40
39
  "button.create_replenishment": "create replenishment",
41
40
  "button.create_ro": "create ro",
42
- "button.delete": "delete",
41
+ "button.create": "create",
43
42
  "button.delete_all": "delete all",
43
+ "button.delete": "delete",
44
44
  "button.disable": "disable",
45
45
  "button.dispatch": "dispatch",
46
46
  "button.done": "done",
47
47
  "button.download": "download",
48
48
  "button.duplicate": "duplicate",
49
- "button.edit": "edit",
50
49
  "button.edit_product": "edit product",
51
50
  "button.edit_vas": "edit vas",
51
+ "button.edit": "edit",
52
52
  "button.execute": "execute",
53
53
  "button.existing_manifest": "existing manifest",
54
- "button.generate": "generate",
55
54
  "button.generate_packing_list": "generate packing list",
56
55
  "button.generate_picking_worksheet": "generate picking worksheet",
57
56
  "button.generate_worksheet": "generate worksheet",
57
+ "button.generate": "generate",
58
58
  "button.get_task": "get task",
59
59
  "button.get_tracking_no": "get tracking no",
60
+ "button.go_to_loading": "Go to LOADING",
61
+ "button.go_to_picked": "Go to PICKED",
60
62
  "button.ignore": "ignore",
61
63
  "button.import": "import",
62
64
  "button.init_logistics": "init logistics",
@@ -68,10 +70,10 @@
68
70
  "button.load": "load",
69
71
  "button.lot_label_print": "print lot label",
70
72
  "button.missing_stock": "missing stock",
71
- "button.move": "move",
72
73
  "button.move_to_x": "move to {state.x}",
73
- "button.my_worksheet": "my worksheet",
74
+ "button.move": "move",
74
75
  "button.my_worksheet_list": "my worksheet list",
76
+ "button.my_worksheet": "my worksheet",
75
77
  "button.next_order": "next order",
76
78
  "button.okay": "okay",
77
79
  "button.order_list": "order list",
@@ -84,7 +86,6 @@
84
86
  "button.partial_unload": "partial unload",
85
87
  "button.plastic_pallet": "plastic pallet",
86
88
  "button.preview": "preview",
87
- "button.print": "print",
88
89
  "button.print_airway_bill": "print airway bill",
89
90
  "button.print_internal_awb": "print internal awb",
90
91
  "button.print_invoice": "print invoice",
@@ -92,38 +93,40 @@
92
93
  "button.print_packing_list": "print packing list",
93
94
  "button.print_purchase_order": "print purchase order",
94
95
  "button.print_route_label": "print route label",
96
+ "button.print": "print",
95
97
  "button.proceed": "proceed",
96
98
  "button.product_changes": "product changes",
97
99
  "button.qty_checked": "qty checked",
98
100
  "button.ready_to_ship": "ready to ship",
99
101
  "button.reassign": "reassign",
100
102
  "button.receive": "receive",
101
- "button.reject": "reject",
102
103
  "button.reject_cancellation": "reject cancellation",
104
+ "button.reject": "reject",
103
105
  "button.release_orders": "release orders",
104
106
  "button.relocate": "relocate",
105
- "button.remove": "remove",
106
107
  "button.remove_selected": "remove selected",
108
+ "button.remove": "remove",
107
109
  "button.replace": "replace",
110
+ "button.reprint": "reprint",
108
111
  "button.restore": "restore",
109
112
  "button.save": "save",
110
113
  "button.select_all": "select all",
111
114
  "button.select_operator": "select operator",
112
115
  "button.serial_number": "serial number",
113
- "button.submit": "submit",
114
116
  "button.submit_for_approval": "submit for approval",
117
+ "button.submit": "submit",
115
118
  "button.sync_data": "sync data",
116
119
  "button.tote": "tote",
117
120
  "button.tracking_no": "tracking no",
118
121
  "button.transfer": "transfer",
119
122
  "button.turn_to_PDF": "turn to PDF",
120
- "button.update": "update",
121
123
  "button.update_order_details": "update order details",
122
124
  "button.update_vas": "update vas",
125
+ "button.update": "update",
123
126
  "button.validate": "validate",
124
- "button.vas": "vas",
125
127
  "button.vas_changes": "vas changes",
126
128
  "button.vas_list": "vas list",
129
+ "button.vas": "vas",
127
130
  "button.view_merged_list": "view merged list",
128
131
  "button.warehouse_return": "warehouse return",
129
132
  "button.wooden_pallet": "wooden pallet",
@@ -152,101 +155,102 @@
152
155
  "field.actual_uom_value": "actual uom value",
153
156
  "field.addable_qty": "addable qty",
154
157
  "field.addable_uom_value": "addable uom value",
155
- "field.address": "address",
156
158
  "field.address_id": "address id",
157
- "field.adjusted": "adjusted",
158
- "field.adjusted_batch_id": "adjusted batch no",
159
+ "field.address": "address",
159
160
  "field.adjusted_batch_id_new_sku": "adjusted batch no new sku",
160
161
  "field.adjusted_batch_id_ref": "adjusted batch no ref",
162
+ "field.adjusted_batch_id": "adjusted batch no",
163
+ "field.adjusted_exp_date": "adjusted exp date",
164
+ "field.adjusted_location": "adjusted location",
161
165
  "field.adjusted_new_sku": "adjusted new SKU",
162
166
  "field.adjusted_output_qty": "adjusted output qty",
163
167
  "field.adjusted_pack_qty": "adjusted pack qty",
164
- "field.adjusted_packing_type": "adjusted packing type",
165
168
  "field.adjusted_packing_type_sku": "adjusted packing type ({sku})",
169
+ "field.adjusted_packing_type": "adjusted packing type",
166
170
  "field.adjusted_pallet_qty": "adjusted pallet qty",
167
171
  "field.adjusted_qty": "adjusted qty",
168
172
  "field.adjusted_sku": "adjusted sku",
169
- "field.adjusted_total_uom_value": "adjusted total uom value",
170
173
  "field.adjusted_total_uom_value_sku": "adjusted total uom value ({sku})",
174
+ "field.adjusted_total_uom_value": "adjusted total uom value",
171
175
  "field.adjusted_unit_price": "adjusted unit price",
172
- "field.adjusted_uom": "adjusted uom",
173
176
  "field.adjusted_uom_sku": "adjusted uom new sku",
174
- "field.adjusted_uom_value": "adjusted uom value",
175
177
  "field.adjusted_uom_value_sku": "adjusted uom value ({sku})",
178
+ "field.adjusted_uom_value": "adjusted uom value",
179
+ "field.adjusted_uom": "adjusted uom",
176
180
  "field.adjusted_vas_qty": "adjusted vas qty",
177
181
  "field.adjusted_vas_remark": "adjusted vas remark",
178
182
  "field.adjusted_volume": "adjusted volume",
179
- "field.adjusted_exp_date": "adjusted exp date",
180
183
  "field.adjusted_warehouse": "adjusted warehouse",
181
- "field.adjusted_location": "adjusted location",
184
+ "field.adjusted": "adjusted",
182
185
  "field.adjustment_code": "adjustment code",
183
186
  "field.adjustment_note": "adjustment note",
184
187
  "field.after": "after",
185
188
  "field.amount": "amount",
189
+ "field.append_seq_to": "append seq to",
186
190
  "field.arrival_notice": "arrival notice",
187
- "field.assigned": "assigned",
188
191
  "field.assigned_load": "assigned load",
189
192
  "field.assigned_pack_qty": "assigned pack qty",
190
193
  "field.assigned_picker": "assigned picker",
191
194
  "field.assigned_qty": "assigned qty",
192
- "field.assigned_uom": "assigned uom",
193
195
  "field.assigned_uom_value": "assigned uom value",
196
+ "field.assigned_uom": "assigned uom",
197
+ "field.assigned": "assigned",
194
198
  "field.attention_company": "attention company",
195
199
  "field.attention_to": "attention to",
196
- "field.aux_unit": "aux unit",
197
200
  "field.aux_unit_2": "aux unit 2",
198
201
  "field.aux_unit_x": "aux unit {state.x}",
199
- "field.aux_value": "aux value",
202
+ "field.aux_unit": "aux unit",
200
203
  "field.aux_value_2": "aux value 2",
201
204
  "field.aux_value_x": "aux value {state.x}",
202
- "field.available_qty": "available qty",
205
+ "field.aux_value": "aux value",
203
206
  "field.available_qty_only": "available qty only",
207
+ "field.available_qty": "available qty",
204
208
  "field.available_release_qty": "available release qty",
205
209
  "field.available_stock_only": "available stock only",
206
210
  "field.available_uom_value": "available uom value",
207
211
  "field.average_unit_cost": "average unit cost",
208
212
  "field.awb": "airway bill",
209
- "field.bag": "bag",
210
213
  "field.bag_total": "bag total",
214
+ "field.bag": "bag",
211
215
  "field.based_on_release_date": "based on release date",
212
- "field.basket": "basket",
213
216
  "field.basket_total": "basket total",
214
- "field.batch_id": "batch no",
217
+ "field.basket": "basket",
215
218
  "field.batch_id_ref": "batch no ref",
216
- "field.batch_no": "batch no.",
219
+ "field.batch_id": "batch no",
217
220
  "field.batch_no_(new_sku)": "batch no (new sku)",
218
221
  "field.batch_no_ref": "batch no ref",
219
222
  "field.batch_no_sku": "batch no ({sku})",
220
223
  "field.batch_no_variance": "batch no variance",
224
+ "field.batch_no": "batch no.",
221
225
  "field.before": "before",
222
- "field.billing_address": "billing address",
223
226
  "field.billing_address_1": "billing address 1",
224
227
  "field.billing_address_2": "billing address 2",
225
228
  "field.billing_address_3": "billing address 3",
226
229
  "field.billing_address_4": "billing address 4",
227
230
  "field.billing_address_5": "billing address 5",
231
+ "field.billing_address": "billing address",
228
232
  "field.billing_city": "billing city",
229
233
  "field.billing_country": "billing country",
230
234
  "field.billing_mode": "billing mode",
231
235
  "field.billing_postal_code": "billing postal code",
232
236
  "field.billing_state": "billing state",
233
- "field.bin": "bin",
234
237
  "field.bin_location": "bin location",
235
238
  "field.bin_no": "bin no",
236
239
  "field.bin_number": "bin number",
240
+ "field.bin": "bin",
237
241
  "field.branch": "branch",
238
- "field.brand": "brand",
239
- "field.brand_sku": "brand sku",
240
242
  "field.brand_sku_label": "Brand SKU",
243
+ "field.brand_sku": "brand sku",
244
+ "field.brand": "brand",
241
245
  "field.brn": "brn",
242
246
  "field.buffer_location": "buffer location",
243
247
  "field.buffer_qty": "buffer qty",
244
248
  "field.by_packing_complete": "by packing complete",
245
249
  "field.by_pallet": "by pallet",
246
250
  "field.by_unload_complete": "by unload complete",
247
- "field.carton": "carton",
248
251
  "field.carton_id": "carton ID",
249
252
  "field.carton_total": "carton total",
253
+ "field.carton": "carton",
250
254
  "field.case_depth": "case depth",
251
255
  "field.case_gross_weight": "case gross weight",
252
256
  "field.case_gtin": "case GTIN",
@@ -261,38 +265,39 @@
261
265
  "field.child_product_ref": "child product ref",
262
266
  "field.child_qty": "child qty",
263
267
  "field.city": "city",
268
+ "field.claim_type": "claim type",
264
269
  "field.claim": "claim",
265
270
  "field.claimType": "claim type",
266
- "field.claim_type": "claim type",
267
- "field.closing": "closing",
268
271
  "field.closing_balance": "closing balance",
269
272
  "field.closing_qty": "closing qty",
270
273
  "field.closing_volume": "closing volume",
271
- "field.cod": "COD",
274
+ "field.closing": "closing",
272
275
  "field.cod_option": "cod option",
276
+ "field.cod": "COD",
273
277
  "field.cogs_account_code": "COGS account code",
274
278
  "field.column": "column",
275
279
  "field.combination": "combination",
276
280
  "field.comment": "comment",
277
281
  "field.company": "company",
282
+ "field.completed_items": "completed items",
278
283
  "field.completed": "completed",
279
284
  "field.completion_date": "completion date",
280
285
  "field.completion_vas_from_date": "completion vas from date",
281
286
  "field.completion_vas_to_date": "completion vas to date",
282
287
  "field.condition": "condition",
283
- "field.contact": "contact",
284
288
  "field.contact_name": "contact name",
285
289
  "field.contact_point": "contact point",
286
290
  "field.contact_type": "contact type",
287
- "field.container": "container",
291
+ "field.contact": "contact",
288
292
  "field.container_no": "container no",
289
293
  "field.container_size": "container size",
290
- "field.count": "count",
294
+ "field.container": "container",
291
295
  "field.count_no": "count no",
292
296
  "field.count_status": "count status",
293
297
  "field.count_variance": "count variance",
294
- "field.country": "country",
298
+ "field.count": "count",
295
299
  "field.country_code": "country code",
300
+ "field.country": "country",
296
301
  "field.courier": "courier",
297
302
  "field.created_at": "created at",
298
303
  "field.created_by": "created by",
@@ -309,35 +314,35 @@
309
314
  "field.default_price": "default price",
310
315
  "field.deleted": "deleted",
311
316
  "field.deliver_to": "deliver to",
312
- "field.delivery": "delivery",
313
- "field.delivery_address": "delivery address",
314
317
  "field.delivery_address_1": "delivery address 1",
315
318
  "field.delivery_address_2": "delivery address 2",
316
319
  "field.delivery_address_3": "delivery address 3",
317
320
  "field.delivery_address_4": "delivery address 4",
318
321
  "field.delivery_address_5": "delivery address 5",
322
+ "field.delivery_address": "delivery address",
319
323
  "field.delivery_date": "delivery date",
320
324
  "field.delivery_order": "delivery order",
321
325
  "field.delivery_summary": "delivery summary",
322
326
  "field.delivery_to": "delivery to",
327
+ "field.delivery": "delivery",
323
328
  "field.density": "density",
324
329
  "field.depth": "depth",
325
330
  "field.description": "description",
326
331
  "field.dispatch_at": "dispatch at",
327
332
  "field.dispatched_at": "dispatched at",
328
333
  "field.district": "district",
329
- "field.do": "DO",
330
334
  "field.do_delivery_date": "DO delivery date",
331
335
  "field.do_generated_date": "DO generated date",
332
336
  "field.do_no": "DO No.",
333
337
  "field.do_ref_no": "do ref no",
338
+ "field.do": "DO",
334
339
  "field.domain": "domain",
335
340
  "field.done": "done",
336
341
  "field.draft_order_no": "draft order no",
337
342
  "field.draft_qty": "draft qty",
338
- "field.driver": "driver",
339
343
  "field.driver_code": "driver code",
340
344
  "field.driver_name": "driver name",
345
+ "field.driver": "driver",
341
346
  "field.email": "email",
342
347
  "field.end_date": "end date",
343
348
  "field.ended_at": "ended at",
@@ -345,52 +350,53 @@
345
350
  "field.eta": "ETA",
346
351
  "field.etd": "ETD",
347
352
  "field.execute_date": "execute date",
348
- "field.executed_at": "executed at",
349
353
  "field.executed_at_from_date": "executed at from date",
350
354
  "field.executed_at_to_date": "executed at to date",
355
+ "field.executed_at": "executed at",
351
356
  "field.execution_date": "execution date",
352
357
  "field.exp_date": "exp. date",
353
358
  "field.exp_from_date": "exp from date",
354
359
  "field.exp_to_date": "exp to date",
355
360
  "field.expected_qty": "expected quantity",
356
- "field.expiration": "expiration",
357
361
  "field.expiration_date_variance": "expiration date variance",
358
362
  "field.expiration_period": "expiration Period",
363
+ "field.expiration": "expiration",
359
364
  "field.expiring_in": "exp.",
360
365
  "field.expiry_date": "expiry date",
361
366
  "field.expiry_status": "expiry status",
362
- "field.export": "export",
363
367
  "field.export_option": "export option",
368
+ "field.export": "export",
364
369
  "field.fax": "fax",
370
+ "field.filter_by": "filter by",
365
371
  "field.final_count": "final count",
366
372
  "field.final_uom_value": "final uom value",
367
- "field.from": "from",
368
373
  "field.from_date": "from date",
369
374
  "field.from_pallet": "from pallet",
375
+ "field.from": "from",
370
376
  "field.full_delivery_address": "full delivery address",
371
- "field.gan": "GAN",
372
377
  "field.gan_no": "GAN No.",
373
378
  "field.gan_status": "GAN status",
374
- "field.grn": "GRN",
379
+ "field.gan": "GAN",
375
380
  "field.grn_no": "GRN No.",
376
381
  "field.grn_status": "GRN status",
382
+ "field.grn": "GRN",
377
383
  "field.gross_weight": "gross weight",
378
384
  "field.group_menu": "group menu",
379
385
  "field.group_type": "group type",
380
386
  "field.gtin": "GTIN",
381
387
  "field.has_balance": "has balance",
382
- "field.has_transaction": "has transaction",
383
388
  "field.has_transaction_or_balance": "has transaction or balance",
389
+ "field.has_transaction": "has transaction",
384
390
  "field.height": "height",
385
391
  "field.hidden_flag": "hidden flag",
386
392
  "field.holder": "holder",
387
393
  "field.id": "id",
388
394
  "field.import_cargo": "import cargo",
389
395
  "field.in": "in",
390
- "field.inbound": "inbound",
391
396
  "field.inbound_pallet_id": "inbound pallet id",
392
397
  "field.inbound_qty": "inbound qty",
393
398
  "field.inbound_volume": "inbound volume",
399
+ "field.inbound": "inbound",
394
400
  "field.indicator": "indicator",
395
401
  "field.initial_inbound_date": "initial inbound date",
396
402
  "field.initial_inbound_qty": "initial inbound qty",
@@ -401,20 +407,21 @@
401
407
  "field.inspected_status": "inspected status",
402
408
  "field.inspected_uom_value": "inspected uom value",
403
409
  "field.insufficient_qty": "insufficient qty",
404
- "field.inventory": "inventory",
405
410
  "field.inventory_account_code": "inventory account code",
406
411
  "field.inventory_check_no": "inventory check no",
407
412
  "field.inventory_list": "inventory list",
413
+ "field.inventory": "inventory",
408
414
  "field.invoice": "invoice",
409
415
  "field.issue": "issue",
410
416
  "field.issued_date": "issued date",
411
- "field.completed_items": "completed items",
412
417
  "field.job_sheet": "job sheet no",
413
418
  "field.label_id_for_location": "location label id",
414
419
  "field.label_id_for_pallet": "pallet label id",
415
- "field.latest_execution": "latest execution",
420
+ "field.last_printed_by": "last printed by",
421
+ "field.last_seq": "last sequence",
416
422
  "field.latest_execution_from_date": "latest execution from date",
417
423
  "field.latest_execution_to_date": "latest execution to date",
424
+ "field.latest_execution": "latest execution",
418
425
  "field.latlng": "latlng",
419
426
  "field.length_unit": "length unit",
420
427
  "field.level_end": "level end",
@@ -428,20 +435,20 @@
428
435
  "field.loaded_qty": "loaded qty",
429
436
  "field.loading_end": "loading end",
430
437
  "field.loading_start": "loading start",
431
- "field.location": "location",
432
- "field.location_name": "location name",
433
438
  "field.location_list": "location list",
439
+ "field.location_name": "location name",
434
440
  "field.location_type": "location type",
435
441
  "field.location_variance": "location variance",
442
+ "field.location": "location",
436
443
  "field.loose_item": "loose item",
437
444
  "field.lot_id": "lot ID",
438
445
  "field.lot_qty": "lot qty",
439
446
  "field.low_on_stock": "low on stock",
440
447
  "field.main_bizplace": "main customer",
441
448
  "field.manifest_no": "manifest no",
442
- "field.manifested": "manifested",
443
449
  "field.manifested_at": "manifested at",
444
450
  "field.manifested_by": "manifested by",
451
+ "field.manifested": "manifested",
445
452
  "field.manufacture_date": "manufacture date",
446
453
  "field.marketplace_order_status": "marketplace order status",
447
454
  "field.max_qty": "max qty",
@@ -450,10 +457,10 @@
450
457
  "field.min_inbound_shelf_life": "min inbound shelf life",
451
458
  "field.min_outbound_shelf_life": "min outbound shelf life",
452
459
  "field.min_qty": "min qty",
453
- "field.missing": "missing",
454
460
  "field.missing_qty": "missing qty",
455
461
  "field.missing_stock": "missing stock",
456
462
  "field.missing_volume": "missing volume",
463
+ "field.missing": "missing",
457
464
  "field.month": "month",
458
465
  "field.movement": "movement",
459
466
  "field.name": "name",
@@ -461,12 +468,12 @@
461
468
  "field.need_transport": "need transport",
462
469
  "field.nett_stock": "nett stock",
463
470
  "field.nett_weight": "nett weight",
464
- "field.new_sku": "new SKU",
465
471
  "field.new_sku_same_as_original_sku": "new SKU same as original SKU",
466
- "field.no": "no",
472
+ "field.new_sku": "new SKU",
467
473
  "field.no_of_items": "no of items",
468
474
  "field.no_of_ro": "no of ro",
469
475
  "field.no_of_sku": "no of sku",
476
+ "field.no": "no",
470
477
  "field.non_loaded_qty": "non loaded qty",
471
478
  "field.non_loaded_uom_value": "non loaded uom value",
472
479
  "field.non_tally": "non tally",
@@ -475,18 +482,18 @@
475
482
  "field.number_of_depth": "number of depth",
476
483
  "field.number_of_row": "number of row",
477
484
  "field.number_of_shelf": "number of shelf",
478
- "field.obsolete": "obsolete",
479
485
  "field.obsolete_qty": "obsolete qty",
486
+ "field.obsolete": "obsolete",
480
487
  "field.onhand_inventory_quantity": "onhand inventory quantity",
481
- "field.opening": "opening",
482
488
  "field.opening_balance": "opening balance",
483
489
  "field.opening_qty": "opening qty",
484
490
  "field.opening_uom_value": "opening uom value",
485
491
  "field.opening_volume": "opening volume",
492
+ "field.opening": "opening",
493
+ "field.operation_guide_type": "operation guide type",
494
+ "field.operation_guide": "operation guide",
486
495
  "field.operationGuide": "operation guide",
487
496
  "field.operationGuideType": "operation guide type",
488
- "field.operation_guide": "operation guide",
489
- "field.operation_guide_type": "operation guide type",
490
497
  "field.order_at": "order at",
491
498
  "field.order_created_at": "order created at",
492
499
  "field.order_created_by": "order created by",
@@ -505,9 +512,9 @@
505
512
  "field.ot": "O/T",
506
513
  "field.other_target": "other target",
507
514
  "field.out": "out",
508
- "field.outbound": "outbound",
509
515
  "field.outbound_qty": "outbound qty",
510
516
  "field.outbound_volume": "outbound volume",
517
+ "field.outbound": "outbound",
511
518
  "field.output_qty": "output qty",
512
519
  "field.over_stock": "over stock",
513
520
  "field.own_collection": "own collection",
@@ -518,19 +525,19 @@
518
525
  "field.pack_quantity": "pack quantity",
519
526
  "field.packed_at": "packed at",
520
527
  "field.packed_by": "packed by",
521
- "field.packing": "packing",
522
528
  "field.packing_end": "packing end",
523
529
  "field.packing_rate": "packing rate",
524
530
  "field.packing_size": "packing size",
525
531
  "field.packing_start": "packing start",
526
- "field.packing_type": "packing type",
527
532
  "field.packing_type_sku": "packing type ({sku})",
533
+ "field.packing_type": "packing type",
528
534
  "field.packing_uom_value": "packing uom value",
535
+ "field.packing": "packing",
529
536
  "field.paid_amount": "paid amount",
530
- "field.pallet": "pallet",
531
537
  "field.pallet_id": "pallet id",
532
538
  "field.pallet_qty": "pallet qty",
533
539
  "field.pallet_total": "pallet total",
540
+ "field.pallet": "pallet",
534
541
  "field.partner": "partner",
535
542
  "field.phone": "phone",
536
543
  "field.pick_qty": "pick qty",
@@ -545,27 +552,29 @@
545
552
  "field.picking_shelf_qty": "picking shelf qty",
546
553
  "field.picking_start": "picking start",
547
554
  "field.pickup_time_id": "pickup time id",
548
- "field.po": "PO",
549
555
  "field.po_no": "PO No.",
556
+ "field.po": "PO",
550
557
  "field.postal_code": "postal code",
551
558
  "field.price": "price",
552
559
  "field.primary_unit": "primary unit",
553
560
  "field.print_no": "print no.",
554
- "field.print_qty": "print qty",
555
- "field.priority": "priority",
561
+ "field.print_qty": "print quantity",
562
+ "field.printed_at": "printed at",
563
+ "field.printed": "printed",
556
564
  "field.priority_delivery": "priority delivery",
565
+ "field.priority": "priority",
557
566
  "field.privileges": "privileges",
558
- "field.product": "product",
559
567
  "field.product_brand": "product brand",
560
568
  "field.product_code": "product code",
561
569
  "field.product_description": "product description",
562
570
  "field.product_info": "product info",
563
571
  "field.product_name": "product name",
564
- "field.product_option": "product option",
565
572
  "field.product_option_value": "product option value",
573
+ "field.product_option": "product option",
566
574
  "field.product_ref": "product ref",
567
575
  "field.product_set_info": "product set info",
568
576
  "field.product_type": "product type",
577
+ "field.product": "product",
569
578
  "field.purchase_order": "purchase order",
570
579
  "field.putaway_at": "putaway at",
571
580
  "field.putaway_by": "putaway by",
@@ -576,6 +585,7 @@
576
585
  "field.quantity": "quantity",
577
586
  "field.quarantine_qty": "quarantine qty",
578
587
  "field.quarantine_stock_only": "quarantine stock only",
588
+ "field.range": "range",
579
589
  "field.rank": "rank",
580
590
  "field.rate": "rate",
581
591
  "field.ready": "completed",
@@ -587,20 +597,20 @@
587
597
  "field.receiver_name": "receiver name",
588
598
  "field.recipient_bizplace": "recipient bizplace",
589
599
  "field.ref_code": "ref code",
590
- "field.ref_no": "ref no.",
591
600
  "field.ref_no_2": "ref no. 2",
592
601
  "field.ref_no_3": "ref no. 3",
602
+ "field.ref_no": "ref no.",
593
603
  "field.registration_number": "registration number",
594
604
  "field.reject_date": "reject date",
595
- "field.release_date": "release date",
596
605
  "field.release_date_from": "release date from",
597
606
  "field.release_date_to": "release date to",
598
- "field.release_good": "release good",
607
+ "field.release_date": "release date",
599
608
  "field.release_good_no": "release good no.",
609
+ "field.release_good": "release good",
600
610
  "field.release_goods": "release goods",
601
611
  "field.release_inventory_list": "release inventory list",
602
- "field.release_order": "release order",
603
612
  "field.release_order_no": "RO no.",
613
+ "field.release_order": "release order",
604
614
  "field.release_qty": "release qty",
605
615
  "field.release_uom_value": "release uom value",
606
616
  "field.release_weight": "release weight",
@@ -608,18 +618,19 @@
608
618
  "field.remain_uom_value": "remain uom value",
609
619
  "field.remaining_qty": "remaining qty",
610
620
  "field.remaining_uom_value": "remaining uom value",
611
- "field.remark": "remark",
612
621
  "field.remark_checked_at": "remark checked at",
613
622
  "field.remark_checked_by": "remark checked by",
614
623
  "field.remark_issues": "Remark/Issue",
624
+ "field.remark": "remark",
615
625
  "field.repacked_pallet": "repacked pallet",
616
626
  "field.repalletized_pallet": "repalletized pallet",
617
627
  "field.replenishment_order_no": "replenishment order no",
628
+ "field.reprint_seq": "reprint seq",
618
629
  "field.request_date": "request date",
619
630
  "field.require_packing": "require packing",
620
- "field.require_serial_number_scanning": "require serial number scanning",
621
631
  "field.require_serial_number_scanning_inbound": "require serial number scanning inbound",
622
632
  "field.require_serial_number_scanning_outbound": "require serial number scanning outbound",
633
+ "field.require_serial_number_scanning": "require serial number scanning",
623
634
  "field.reserve_qty": "reserve qty",
624
635
  "field.reserve_stock_only": "reserve stock only",
625
636
  "field.reserve_uom_value": "reserve uom value",
@@ -630,41 +641,42 @@
630
641
  "field.return_items": "return items",
631
642
  "field.return_order_no": "return order no",
632
643
  "field.return_qty": "return qty",
633
- "field.return_uom": "return uom",
634
644
  "field.return_uom_value": "return uom value",
645
+ "field.return_uom": "return uom",
635
646
  "field.reusable_pallet": "plastic pallet",
636
- "field.ro": "RO",
637
647
  "field.ro_no": "RO no.",
638
648
  "field.ro_type": "RO type",
649
+ "field.ro": "RO",
639
650
  "field.rounded_uom_value": "rounded uom value",
640
- "field.route": "route",
641
651
  "field.route_id": "route id",
642
652
  "field.route_label": "route label",
643
- "field.routing": "routing",
653
+ "field.route": "route",
644
654
  "field.routing_type": "routing type",
645
- "field.row": "row",
655
+ "field.routing": "routing",
646
656
  "field.row_end": "row end",
647
657
  "field.row_start": "row start",
658
+ "field.row": "row",
648
659
  "field.scanned": "scanned",
649
660
  "field.seal_id": "seal id",
650
661
  "field.seal_no": "seal no",
651
- "field.selected": "selected",
652
662
  "field.selected_qty": "selected qty",
653
- "field.self_collect": "self collect",
663
+ "field.selected": "selected",
654
664
  "field.self_collect_summary": "self collect summary",
665
+ "field.self_collect": "self collect",
655
666
  "field.seq": "seq",
667
+ "field.sequence_reference": "seq ref",
656
668
  "field.serial_number": "serial number",
657
669
  "field.service": "service",
658
670
  "field.services": "services",
659
671
  "field.set": "set",
660
- "field.shelf": "shelf",
661
672
  "field.shelf_qty": "shelf qty",
673
+ "field.shelf": "shelf",
662
674
  "field.shipping_option": "shipping option",
663
675
  "field.shipping_provider": "shipping provider",
664
676
  "field.show_balance_only": "show balance only",
665
677
  "field.show_total_uom": "show total uom",
666
- "field.sku": "SKU",
667
678
  "field.sku_code": "sku code",
679
+ "field.sku": "SKU",
668
680
  "field.so_no": "SO No",
669
681
  "field.sorted_by": "sorted by",
670
682
  "field.sorter": "sorter",
@@ -678,41 +690,40 @@
678
690
  "field.stop_id": "stop id",
679
691
  "field.storage_location": "storage location",
680
692
  "field.storage_qty": "storage qty",
681
- "field.stored": "stored",
682
693
  "field.stored_at": "stored at",
694
+ "field.stored": "stored",
683
695
  "field.sub_brand": "sub brand",
684
696
  "field.subdomain": "subdomain",
685
697
  "field.submitted_at": "submitted at",
686
698
  "field.submitted_by": "submitted by",
687
699
  "field.summary_report_quantity": "summary report quantity",
688
- "field.supplier": "supplier",
689
700
  "field.supplier_name": "supplier name",
701
+ "field.supplier": "supplier",
690
702
  "field.system_batch_no": "system batch no",
691
703
  "field.system_expiration_date": "system expiration date",
692
704
  "field.system_location": "system location",
693
705
  "field.system_qty": "system qty",
694
706
  "field.system_remark": "system remark",
695
707
  "field.system_uom_value": "system uom value",
696
- "field.target": "target",
697
708
  "field.target_batch_id": "target batch id",
698
709
  "field.target_product": "target product",
699
710
  "field.target_type": "target type",
711
+ "field.target": "target",
700
712
  "field.task_no": "task no",
701
713
  "field.task_status": "task status",
702
714
  "field.template": "template",
703
715
  "field.theme": "theme",
704
716
  "field.threshold_qty": "threshold qty",
705
- "field.to": "to",
706
717
  "field.to_date": "to date",
707
- "field.total_order_fulfilled": "total order fulfilled",
708
- "field.total": "total",
718
+ "field.to": "to",
709
719
  "field.total_carton": "total carton",
710
720
  "field.total_cost": "total cost",
711
721
  "field.total_days_worked": "total days worked",
712
722
  "field.total_delivery": "total delivery",
713
723
  "field.total_hours_worked": "total hours worked",
714
- "field.total_pack": "total pack",
724
+ "field.total_order_fulfilled": "total order fulfilled",
715
725
  "field.total_pack_qty": "total pack qty",
726
+ "field.total_pack": "total pack",
716
727
  "field.total_pallet": "total pallet",
717
728
  "field.total_price": "total price",
718
729
  "field.total_qty": "total qty",
@@ -722,8 +733,6 @@
722
733
  "field.total_tracking_no": "total tracking no",
723
734
  "field.total_unit_gross_weight": "total unit gross weight",
724
735
  "field.total_unit_nett_weight": "total unit nett weight",
725
- "field.total_uom": "total uom",
726
- "field.total_uom_value": "total uom value",
727
736
  "field.total_unit_processed": "total unit processed",
728
737
  "field.total_uom_value_available": "total uom (available qty)",
729
738
  "field.total_uom_value_damage": "total uom (damage qty)",
@@ -741,14 +750,17 @@
741
750
  "field.total_uom_value_storage": "total uom (storage qty)",
742
751
  "field.total_uom_value_transfer": "total uom (transfer qty)",
743
752
  "field.total_uom_value_warehouse": "total uom (warehouse qty)",
753
+ "field.total_uom_value": "total uom value",
754
+ "field.total_uom": "total uom",
744
755
  "field.total_volume": "total volume",
745
- "field.tote": "tote",
756
+ "field.total": "total",
746
757
  "field.tote_box": "tote box",
747
758
  "field.tote_id": "tote id",
748
759
  "field.tote_no": "tote no",
760
+ "field.tote": "tote",
749
761
  "field.tracking_no": "tracking no",
750
- "field.transaction": "transaction",
751
762
  "field.transaction_type": "transaction type",
763
+ "field.transaction": "transaction",
752
764
  "field.transfer_qty": "transfer qty",
753
765
  "field.transfer_uom_value": "transfer uom value",
754
766
  "field.transport_driver": "transport driver",
@@ -758,7 +770,6 @@
758
770
  "field.truck_no": "truck no.",
759
771
  "field.type": "type",
760
772
  "field.unassigned_qty": "unassigned qty",
761
- "field.unit": "unit",
762
773
  "field.unit_cost": "unit cost",
763
774
  "field.unit_gross_weight": "unit gross weight",
764
775
  "field.unit_nett_weight": "unit nett weight",
@@ -766,52 +777,51 @@
766
777
  "field.unit_uom_value": "unit uom value",
767
778
  "field.unit_value": "unit value",
768
779
  "field.unit_volume": "unit volume",
780
+ "field.unit": "unit",
769
781
  "field.unload_complete": "unload complete",
770
782
  "field.unload_start": "unload start",
771
783
  "field.unloaded_at": "unloaded at",
772
784
  "field.unloaded_by": "unloaded by",
773
785
  "field.unpack_qty": "unpack qty",
774
- "field.uom": "uom",
775
786
  "field.uom_sku": "uom ({sku})",
776
- "field.uom_value": "uom value",
777
787
  "field.uom_value_sku": "uom value ({sku})",
778
788
  "field.uom_value_variance": "uom value variance",
789
+ "field.uom_value": "uom value",
790
+ "field.uom": "uom",
779
791
  "field.updated_at": "updated at",
780
792
  "field.updated_by": "updated by",
781
793
  "field.updater": "updater",
782
794
  "field.urgency": "urgency",
783
795
  "field.user_type": "user type",
796
+ "field.user": "user",
784
797
  "field.validity": "validity",
785
798
  "field.variance": "variance",
786
- "field.vas": "value added service",
787
799
  "field.vas_count": "vas count",
788
800
  "field.vas_order_no": "vas order no",
789
801
  "field.vas_qty": "vas qty",
790
802
  "field.vas_status": "VAS status",
803
+ "field.vas": "value added service",
791
804
  "field.vat": "vat",
792
805
  "field.vehicle_no": "vehicle no",
793
- "field.volume": "volume",
806
+ "field.view": "view",
794
807
  "field.volume_m3": "volume (M3)",
795
808
  "field.volume_size": "volume size",
809
+ "field.volume": "volume",
796
810
  "field.w/h": "W/H",
797
- "field.warehouse": "warehouse",
798
811
  "field.warehouse_name": "warehouse name",
799
812
  "field.warehouse_qty": "warehouse qty",
800
813
  "field.warehouse_status": "warehouse status",
801
814
  "field.warehouse_transport": "warehouse transport",
802
- "field.weight": "weight",
815
+ "field.warehouse": "warehouse",
803
816
  "field.weight_ratio": "weight ratio",
804
817
  "field.weight_unit": "weight unit",
818
+ "field.weight": "weight",
805
819
  "field.width": "width",
806
820
  "field.worksheet_no": "worksheet no",
807
821
  "field.worksheet_status": "worksheet status",
808
822
  "field.your_name": "your name",
809
823
  "field.zone": "zone",
810
824
  "filed.role": "role",
811
- "label.COLLECTION": "COLLECTION",
812
- "label.DELIVERY": "DELIVERY",
813
- "label.Location_format": "location format",
814
- "label.VAS": "value added service",
815
825
  "label.activated": "activated",
816
826
  "label.actual_qty": "actual qty",
817
827
  "label.add_extension": "add extension",
@@ -829,8 +839,8 @@
829
839
  "label.all": "all",
830
840
  "label.approved_at": "approved at",
831
841
  "label.approver": "approver",
832
- "label.arrival_notice": "arrival notice",
833
842
  "label.arrival_notice_no": "arrival notice no.",
843
+ "label.arrival_notice": "arrival notice",
834
844
  "label.asc": "ascending",
835
845
  "label.assign_driver": "assign driver",
836
846
  "label.assign_truck_driver": "assign truck and driver",
@@ -846,17 +856,17 @@
846
856
  "label.bag": "bag",
847
857
  "label.balance": "balance",
848
858
  "label.batch_and_product": "batch and product",
849
- "label.batch_id": "batch id",
850
859
  "label.batch_id_ref": "batch id ref",
851
- "label.batch_no": "batch no",
860
+ "label.batch_id": "batch id",
852
861
  "label.batch_no_ref": "batch no ref",
862
+ "label.batch_no": "batch no",
853
863
  "label.batch_picking": "batch picking",
854
- "label.billing_address": "billing address",
855
864
  "label.billing_address_1": "Address 1",
856
865
  "label.billing_address_2": "Address 2",
857
866
  "label.billing_address_3": "Address 3",
858
867
  "label.billing_address_4": "Address 4",
859
868
  "label.billing_address_5": "Address 5",
869
+ "label.billing_address": "billing address",
860
870
  "label.billing_mode": "billing mode",
861
871
  "label.bin_location": "bin location",
862
872
  "label.bin_no": "bin no",
@@ -869,8 +879,8 @@
869
879
  "label.by_product": "by product",
870
880
  "label.cancelled": "cancelled",
871
881
  "label.cargo_type": "cargo type",
872
- "label.carton": "carton",
873
882
  "label.carton_id": "carton ID",
883
+ "label.carton": "carton",
874
884
  "label.case_sensitive": "case sensitive",
875
885
  "label.charges": "charges",
876
886
  "label.checked_inventory": "checked inventory",
@@ -879,24 +889,24 @@
879
889
  "label.closed": "closed",
880
890
  "label.co_no": "CO number",
881
891
  "label.cod": "COD",
882
- "label.collection_date": "collection date",
883
892
  "label.collection_date_time": "collection date time",
893
+ "label.collection_date": "collection date",
884
894
  "label.collection_order": "collection order",
885
- "label.column": "column",
895
+ "label.COLLECTION": "COLLECTION",
886
896
  "label.column_suffix": "column suffix",
897
+ "label.column": "column",
887
898
  "label.comment": "comment",
888
- "label.company": "company",
889
899
  "label.company_name": "company name",
900
+ "label.company": "company",
890
901
  "label.confirm_password": "confirm password",
891
902
  "label.confirmed_qty": "confirmed qty",
892
- "label.contact": "contact",
893
903
  "label.contact_email": "contact email",
894
904
  "label.contact_name": "contact name",
895
905
  "label.contact_no": "contact no",
896
906
  "label.contact_phone_no": "contact phone no.",
897
907
  "label.contact_point": "contact point",
898
908
  "label.contact_type": "contact type",
899
- "label.container": "container",
909
+ "label.contact": "contact",
900
910
  "label.container_arrival_date": "container arrival date",
901
911
  "label.container_closure_date": "container closure date",
902
912
  "label.container_departure_date": "container departure date",
@@ -905,8 +915,9 @@
905
915
  "label.container_no": "container no.",
906
916
  "label.container_return_date": "container return date",
907
917
  "label.container_size": "container size",
908
- "label.country": "country",
918
+ "label.container": "container",
909
919
  "label.country_code": "country code",
920
+ "label.country": "country",
910
921
  "label.courier": "Courier",
911
922
  "label.crates_cargo": "crates cargo",
912
923
  "label.create_arrival_notices": "create arrival notices",
@@ -915,28 +926,29 @@
915
926
  "label.cross_docking": "cross docking",
916
927
  "label.current_batch_no": "current batch no",
917
928
  "label.current_location": "current location",
918
- "label.customer": "customer",
919
929
  "label.customer_return": "customer return",
920
- "label.cycle_count": "cycle count",
930
+ "label.customer": "customer",
921
931
  "label.cycle_count_no": "cycle count no",
922
932
  "label.cycle_count_recheck": "cycle count recheck",
923
933
  "label.cycle_count_task_no": "cycle count task no",
934
+ "label.cycle_count": "cycle count",
924
935
  "label.date": "date",
925
936
  "label.deactivated": "deactivated",
926
937
  "label.deliver_to": "deliver to",
927
938
  "label.delivering": "delivering",
928
- "label.delivery_address": "delivery address",
929
939
  "label.delivery_address_1": "Address 1",
930
940
  "label.delivery_address_2": "Address 2",
931
941
  "label.delivery_address_3": "Address 3",
932
942
  "label.delivery_address_4": "Address 4",
933
943
  "label.delivery_address_5": "Address 5",
944
+ "label.delivery_address": "delivery address",
934
945
  "label.delivery_date": "delivery date",
935
946
  "label.delivery_information": "delivery information",
936
947
  "label.delivery_no": "delivery no",
937
- "label.delivery_order": "delivery order",
938
948
  "label.delivery_order_no": "delivery order no",
949
+ "label.delivery_order": "delivery order",
939
950
  "label.delivery_type": "delivery type",
951
+ "label.DELIVERY": "DELIVERY",
940
952
  "label.desc": "descending",
941
953
  "label.description": "description",
942
954
  "label.destination": "destination",
@@ -954,16 +966,16 @@
954
966
  "label.download_co": "download C/O",
955
967
  "label.download_do": "download D/O",
956
968
  "label.download_file": "download file",
957
- "label.driver": "driver",
958
969
  "label.driver_code": "driver code",
959
970
  "label.driver_name": "driver name",
971
+ "label.driver": "driver",
960
972
  "label.drum": "drum",
961
973
  "label.email": "email",
962
974
  "label.enter_extension": "enter extension",
963
975
  "label.enter_picked_qty": "enter picked qty",
964
- "label.eta": "ETA",
965
976
  "label.eta_date": "ETA date",
966
977
  "label.eta_time": "ETA time",
978
+ "label.eta": "ETA",
967
979
  "label.etc": "etc",
968
980
  "label.etd": "ETD",
969
981
  "label.execute_date": "execute date",
@@ -972,16 +984,17 @@
972
984
  "label.manufacture_date": "manufacture date",
973
985
  "label.export": "export",
974
986
  "label.export_remark": "export remark",
987
+ "label.export": "export",
975
988
  "label.fax": "fax",
976
989
  "label.fefo": "FEFO",
977
990
  "label.fifo": "FIFO",
978
991
  "label.fleet_no": "fleet no",
979
992
  "label.fleet_spec": "fleet spec",
980
993
  "label.fmfo": "FMFO",
981
- "label.from": "from",
982
994
  "label.from_date": "from date",
983
995
  "label.from_location": "from location",
984
996
  "label.from_pallet": "from pallet",
997
+ "label.from": "from",
985
998
  "label.fully_unpack": "fully unpack",
986
999
  "label.gan": "GAN no.",
987
1000
  "label.grn_no": "GRN No.",
@@ -995,10 +1008,10 @@
995
1008
  "label.inspected_location": "inspected location",
996
1009
  "label.inspected_qty": "inspected qty",
997
1010
  "label.inspected_uom_value": "inspected uom value",
998
- "label.inventory": "inventory",
999
1011
  "label.inventory_accuracy": "inventory accuracy",
1000
1012
  "label.inventory_check_no": "inventory check no",
1001
1013
  "label.inventory_type": "inventory type",
1014
+ "label.inventory": "inventory",
1002
1015
  "label.invoice": "invoice",
1003
1016
  "label.issue_type": "issue type",
1004
1017
  "label.label_format": "label format",
@@ -1007,15 +1020,16 @@
1007
1020
  "label.lifo": "LIFO",
1008
1021
  "label.lmd": "LMD",
1009
1022
  "label.loading": "loading",
1010
- "label.location": "location",
1011
1023
  "label.location_format": "location format",
1024
+ "label.Location_format": "location format",
1025
+ "label.location": "location",
1012
1026
  "label.locked_qty": "locked qty",
1013
1027
  "label.loose_item": "loose item",
1014
1028
  "label.lorry_no": "lorry no.",
1015
- "label.lot": "lot",
1016
1029
  "label.lot_barcode": "lot barcode",
1017
1030
  "label.lot_id": "lot ID",
1018
1031
  "label.lot_no": "lot no",
1032
+ "label.lot": "lot",
1019
1033
  "label.manifest_no": "Manifest No",
1020
1034
  "label.manifested": "manifested",
1021
1035
  "label.name": "name",
@@ -1031,7 +1045,6 @@
1031
1045
  "label.within_business_rest_day": "within business rest day",
1032
1046
  "label.open": "open",
1033
1047
  "label.options": "options",
1034
- "label.order": "order",
1035
1048
  "label.order_name": "order name",
1036
1049
  "label.order_no": "order no",
1037
1050
  "label.order_qr_code": "order QR code",
@@ -1051,14 +1064,14 @@
1051
1064
  "label.order_status_intransit": "intransit",
1052
1065
  "label.order_status_loading": "loading",
1053
1066
  "label.order_status_packing": "packing",
1054
- "label.order_status_partial_return": "partial return",
1055
1067
  "label.order_status_partial_processing": "partial processing",
1056
- "label.order_status_pending": "pending",
1068
+ "label.order_status_partial_return": "partial return",
1057
1069
  "label.order_status_pending_approval": "pending approval",
1058
1070
  "label.order_status_pending_cancel": "pending cancel",
1059
1071
  "label.order_status_pending_receive": "pending receive",
1060
1072
  "label.order_status_pending_review": "pending review",
1061
1073
  "label.order_status_pending_worksheet": "pending worksheet",
1074
+ "label.order_status_pending": "pending",
1062
1075
  "label.order_status_picking": "picking",
1063
1076
  "label.order_status_processing": "processing",
1064
1077
  "label.order_status_putting_away": "putting away",
@@ -1074,41 +1087,42 @@
1074
1087
  "label.order_status_sorting": "sorting",
1075
1088
  "label.order_status_vas": "vas",
1076
1089
  "label.order_type": "order type",
1077
- "label.other": "other",
1090
+ "label.order": "order",
1078
1091
  "label.other_destination": "other destination",
1092
+ "label.other": "other",
1079
1093
  "label.overall_remark": "overall remark",
1080
1094
  "label.own_collection": "own collection",
1081
1095
  "label.own_transport": "own transport",
1082
1096
  "label.pack_qty": "pack qty",
1083
1097
  "label.package_qty": "package qty",
1084
1098
  "label.packed_qty": "packed qty",
1085
- "label.packing": "packing",
1086
1099
  "label.packing_no": "packing no",
1087
1100
  "label.packing_progress": "packing progress",
1088
1101
  "label.packing_type": "packing type",
1089
1102
  "label.packing_unit": "packing unit",
1103
+ "label.packing": "packing",
1090
1104
  "label.paid_amount": "paid amount",
1091
- "label.pallet": "pallet",
1092
1105
  "label.pallet_id": "pallet id",
1093
1106
  "label.pallet_qty": "pallet qty",
1094
1107
  "label.pallet_ref_no": "pallet ref no",
1095
1108
  "label.pallet_type": "pallet type",
1109
+ "label.pallet": "pallet",
1096
1110
  "label.partial_executing": "partial executing",
1097
1111
  "label.partially_unloaded": "partially unloaded",
1098
1112
  "label.partner": "partner",
1099
1113
  "label.password": "password",
1100
- "label.pending": "pending",
1101
1114
  "label.pending_adjustment": "pending adjustment",
1102
1115
  "label.pending_approval": "pending approval",
1103
1116
  "label.pending_process": "pending process",
1104
1117
  "label.pending_receive": "pending receive",
1105
1118
  "label.pending_review": "pending review",
1119
+ "label.pending": "pending",
1106
1120
  "label.phone_no": "phone no",
1107
1121
  "label.picked_qty": "picked qty",
1108
1122
  "label.picker": "picker",
1109
- "label.picking": "picking",
1110
1123
  "label.picking_location": "picking location",
1111
1124
  "label.picking_type": "picking type",
1125
+ "label.picking": "picking",
1112
1126
  "label.pickup_date": "pickup date",
1113
1127
  "label.please_select_a_container_size": "please select a container size",
1114
1128
  "label.please_select_an_item": "please select an item",
@@ -1119,13 +1133,13 @@
1119
1133
  "label.print_qty": "print qty",
1120
1134
  "label.printing_mode": "printing mode",
1121
1135
  "label.process_type": "process type",
1122
- "label.product": "product",
1123
1136
  "label.product_barcode": "product barcode",
1124
1137
  "label.product_info": "product info",
1125
1138
  "label.product_name": "product name",
1139
+ "label.product": "product",
1126
1140
  "label.purchase_order": "purchase order",
1127
- "label.putaway": "putaway",
1128
1141
  "label.putaway_return": "putaway return",
1142
+ "label.putaway": "putaway",
1129
1143
  "label.putting_away": "putting away",
1130
1144
  "label.qty": "qty",
1131
1145
  "label.ready_to_dispatch": "ready to dispatch",
@@ -1135,16 +1149,16 @@
1135
1149
  "label.receiver_contact_no": "receiver contact no",
1136
1150
  "label.receiver_contact_point": "receiver contact point",
1137
1151
  "label.recommend_location": "recommend location",
1138
- "label.ref_no": "ref no.",
1139
1152
  "label.ref_no_2": "ref no. 2",
1140
1153
  "label.ref_no_3": "ref no. 3",
1154
+ "label.ref_no": "ref no.",
1141
1155
  "label.rejection_remark": "rejection remark",
1142
1156
  "label.release_date": "release date",
1143
1157
  "label.release_from": "release from",
1144
1158
  "label.release_good_no": "RO no.",
1145
1159
  "label.release_of_goods": "release of goods",
1146
- "label.release_order": "release order",
1147
1160
  "label.release_order_info": "release order info",
1161
+ "label.release_order": "release order",
1148
1162
  "label.release_progress": "release progress",
1149
1163
  "label.release_qty": "release qty",
1150
1164
  "label.release_to": "release to",
@@ -1152,44 +1166,44 @@
1152
1166
  "label.remainder": "remainder",
1153
1167
  "label.remark": "remark",
1154
1168
  "label.remind_container_departure": "remind container departure",
1155
- "label.repalletizing": "repalletizing",
1156
1169
  "label.repalletizing_vas": "repalletizing vas",
1170
+ "label.repalletizing": "repalletizing",
1157
1171
  "label.replenishment": "replenishment",
1158
1172
  "label.required_package_qty": "required package qty",
1159
1173
  "label.required_package_uom_value": "required package uom value",
1160
1174
  "label.required_pallet_qty": "required pallet qty",
1161
1175
  "label.reserve_qty": "reserve qty",
1162
1176
  "label.retail_outlet": "retail outlet",
1163
- "label.return": "return",
1164
1177
  "label.return_location": "return location",
1165
- "label.return_order": "return order",
1166
1178
  "label.return_order_no": "return order no",
1167
- "label.reusable_pallet": "plastic pallet",
1179
+ "label.return_order": "return order",
1180
+ "label.return": "return",
1168
1181
  "label.reusable_pallet_id": "plastic pallet id",
1182
+ "label.reusable_pallet": "plastic pallet",
1169
1183
  "label.ro": "RO no.",
1170
1184
  "label.role_description": "role description",
1171
1185
  "label.role_name": "role name",
1172
- "label.row": "row",
1173
1186
  "label.row_extension": "row extension",
1174
1187
  "label.row_suffix": "row suffix",
1188
+ "label.row": "row",
1175
1189
  "label.rro_no": "RRO no",
1176
1190
  "label.rule_field": "rule field",
1177
1191
  "label.scan_product_barcode": "scan product barcode",
1178
1192
  "label.scan_task_no": "scan task no",
1179
1193
  "label.scan_tracking_no": "scan tracking no",
1180
1194
  "label.scanned": "Scanned",
1181
- "label.search": "search",
1182
1195
  "label.search_type": "search type",
1196
+ "label.search": "search",
1183
1197
  "label.select_by_pallet": "select by pallet",
1184
1198
  "label.select_by_product": "select by product",
1185
1199
  "label.select_file": "select file",
1186
1200
  "label.select_issue_type": "select issue type",
1187
1201
  "label.sent": "sent",
1188
- "label.serial_number": "serial number",
1189
1202
  "label.serial_number_list": "serial number list",
1203
+ "label.serial_number": "serial number",
1190
1204
  "label.setting": "setting",
1191
- "label.shelf": "shelf",
1192
1205
  "label.shelf_extension": "shelf extension",
1206
+ "label.shelf": "shelf",
1193
1207
  "label.ship_name": "ship name",
1194
1208
  "label.shipment": "shipment",
1195
1209
  "label.shipping_export": "shipping export",
@@ -1207,29 +1221,28 @@
1207
1221
  "label.state": "state",
1208
1222
  "label.status": "status",
1209
1223
  "label.std_amount": "single pack standard amount",
1210
- "label.std_qty": "std qty",
1211
1224
  "label.std_qty_in_single_pallet": "std qty in single pallet",
1212
- "label.stock_take": "stock take",
1225
+ "label.std_qty": "std qty",
1213
1226
  "label.stock_take_date": "stock take date",
1227
+ "label.stock_take": "stock take",
1214
1228
  "label.subdomain": "subdomain",
1215
1229
  "label.submitted": "submitted",
1216
1230
  "label.supplier_name": "supplier name",
1217
1231
  "label.system_flag": "system flag",
1218
- "label.tag_along": "tag along",
1219
1232
  "label.tag_along_load": "tag along load",
1233
+ "label.tag_along": "tag along",
1220
1234
  "label.target_type": "target type",
1221
1235
  "label.task_no": "task no",
1222
1236
  "label.tel_no": "tel number",
1223
1237
  "label.timeslot_info": "timeslot info",
1224
- "label.to": "to",
1225
1238
  "label.to_batch_id": "to batch id",
1226
1239
  "label.to_location": "to location",
1227
1240
  "label.to_lot_barcode": "to lot barcode",
1228
1241
  "label.to_packing_type": "to packing type",
1229
1242
  "label.to_pallet": "to pallet",
1230
1243
  "label.to_product": "to product",
1244
+ "label.to": "to",
1231
1245
  "label.toll": "toll",
1232
- "label.total": "total",
1233
1246
  "label.total_amount": "total amount",
1234
1247
  "label.total_balance": "total balance",
1235
1248
  "label.total_inbound_pallet": "total inbound pallet",
@@ -1240,22 +1253,23 @@
1240
1253
  "label.total_pallet_qty": "total pallet qty",
1241
1254
  "label.total_tracking_no": "total tracking no",
1242
1255
  "label.total_uom_value": "total uom value",
1256
+ "label.total": "total",
1243
1257
  "label.tracking_no": "tracking no.",
1244
- "label.transfer": "transfer",
1245
1258
  "label.transfer_inventory": "transfer inventory",
1246
1259
  "label.transfer_qty": "transfer qty",
1260
+ "label.transfer": "transfer",
1247
1261
  "label.transport_type": "transport type",
1248
1262
  "label.transport_vehicle": "transport vehicle",
1249
1263
  "label.transporter": "transporter",
1250
1264
  "label.truck_no": "truck no.",
1251
1265
  "label.type": "type",
1252
1266
  "label.unit_price": "unit price",
1253
- "label.unloading": "unloading",
1254
1267
  "label.unloading_return": "unloading return",
1268
+ "label.unloading": "unloading",
1255
1269
  "label.unpack_qty": "unpack qty",
1256
1270
  "label.unpack_uom_value": "unpack uom value",
1257
- "label.uom": "uom",
1258
1271
  "label.uom_value": "uom value",
1272
+ "label.uom": "uom",
1259
1273
  "label.updated_at": "updated at",
1260
1274
  "label.upload_co": "upload c/o",
1261
1275
  "label.upload_do": "upload d/o",
@@ -1267,25 +1281,26 @@
1267
1281
  "label.use_as_billing_address": "Use as Billing Address",
1268
1282
  "label.use_own_transport": "use own transport",
1269
1283
  "label.user_type": "user type",
1270
- "label.vas": "vas",
1271
- "label.vasRemark": "Remark",
1272
1284
  "label.vas_name": "Value Added Service",
1273
1285
  "label.vas_order": "vas order",
1274
1286
  "label.vas_qty": "VAS Qty",
1275
1287
  "label.vas_status_cancelled": "cancelled",
1276
- "label.vas_status_pending": "pending",
1277
1288
  "label.vas_status_pending_approve": "pending approve",
1278
1289
  "label.vas_status_pending_cancel": "pending cancel",
1279
1290
  "label.vas_status_pending_receive": "pending receive",
1291
+ "label.vas_status_pending": "pending",
1280
1292
  "label.vas_status_processing": "processing",
1281
1293
  "label.vas_status_ready_to_process": "ready to process",
1282
1294
  "label.vas_status_rejected": "rejected",
1283
1295
  "label.vas_status_terminated": "terminated",
1284
1296
  "label.vas_summary": "vas summary",
1297
+ "label.VAS": "value added service",
1298
+ "label.vas": "vas",
1299
+ "label.vasRemark": "Remark",
1285
1300
  "label.vehicle_no": "vehicle no",
1286
- "label.warehouse": "warehouse",
1287
1301
  "label.warehouse_return": "warehouse return",
1288
1302
  "label.warehouse_transport": "warehouse transport",
1303
+ "label.warehouse": "warehouse",
1289
1304
  "label.wooden_pallet": "wooden pallet",
1290
1305
  "label.worksheet_no": "worksheet no",
1291
1306
  "label.zip_postal_code": "ZIP/Postal code",
@@ -1303,7 +1318,6 @@
1303
1318
  "text.accept_goods_received_note": "accept goods received note",
1304
1319
  "text.accept_release_order": "accept release order",
1305
1320
  "text.accept_transfer_order": "accept transfer order",
1306
- "text.activate": "activate",
1307
1321
  "text.activate_cycle_count_worksheet": "activate cycle count worksheet",
1308
1322
  "text.activate_loading_worksheet": "activate loading worksheet",
1309
1323
  "text.activate_packing_worksheet": "activate packing worksheet",
@@ -1315,6 +1329,7 @@
1315
1329
  "text.activate_unloading_worksheet": "activate unloading worksheet",
1316
1330
  "text.activate_vas_worksheet": "activate value added service worksheet",
1317
1331
  "text.activate_zone_picking_worksheet": "activate zone picking worksheet",
1332
+ "text.activate": "activate",
1318
1333
  "text.actual_qty_is_invalid": "actual qty is invalid",
1319
1334
  "text.add_edit_products_has_been_submitted_for_approval": "add/edit order products has been submitted for approval",
1320
1335
  "text.add_edit_products_has_been_updated": "add/edit order products has been updated",
@@ -1323,6 +1338,9 @@
1323
1338
  "text.adjustment_note_is_required_kindly_fill_in_the_adjustment_note_to_continue": "Adjustment Note is required. Kindly fill in the adjustment note to continue",
1324
1339
  "text.adjustment_pending_admin_approval": "adjustment pending admin approval",
1325
1340
  "text.advise_mt_date_is_empty": "advise mt date is empty",
1341
+ "text.all_items_loaded_proceed_to_loaded": "All items loaded. Proceed to LOADED to complete dispatch.",
1342
+ "text.all_items_picked_proceed_to_picked": "All items picked. Proceed to PICKED to complete picking.",
1343
+ "text.all_items_qc_complete_proceed_to_loading": "All items QC complete. Proceed to LOADING to continue.",
1326
1344
  "text.all_related_serial_number_will_be_deleted": "all related serial number will be deleted!",
1327
1345
  "text.already_existed": "row {state.text} is already existed",
1328
1346
  "text.are_empty": "are empty",
@@ -1346,8 +1364,8 @@
1346
1364
  "text.backdate_is_not_allowed": "backdate is not allowed",
1347
1365
  "text.batch_id_is_duplicated": "batch id is duplicated",
1348
1366
  "text.batch_is_not_selected": "batch is not selected",
1349
- "text.batch_no_is_required": "batch no. is required",
1350
1367
  "text.batch_no_is_required_kindly_fill_in_the_batch_no_to_continue": "Batch No is required. Kindly fill in the batch no to continue",
1368
+ "text.batch_no_is_required": "batch no. is required",
1351
1369
  "text.batch_picking": "batch picking",
1352
1370
  "text.billing_address_is_empty_please_fill_in_the_data_before_proceed_create_order": "billing address is empty. please fill in the data before proceed create order.",
1353
1371
  "text.bin_location_is_empty": "bin location is empty",
@@ -1389,26 +1407,25 @@
1389
1407
  "text.completed_delivery_order": "completed delivery order",
1390
1408
  "text.completed_x": "completed {state.x}",
1391
1409
  "text.completing_inspection": "completing inspection",
1392
- "text.confirm": "confirm",
1393
1410
  "text.confirm_arrival_notice": "confirm arrival notice",
1394
1411
  "text.confirm_collection_order": "confirm collection order",
1395
1412
  "text.confirm_delivery_order": "confirm delivery order",
1396
1413
  "text.confirm_release_good": "confirm release good",
1397
1414
  "text.confirm_return_order": "confirm return order",
1398
1415
  "text.confirm_vas_order": "confirm vas order",
1399
- "text.contact_is_empty": "contact name is empty",
1416
+ "text.confirm": "confirm",
1400
1417
  "text.contact_is_empty_please_fill_in_the_data_before_proceed_create_order": "contact is empty. please fill in the data before proceed create order.",
1418
+ "text.contact_is_empty": "contact name is empty",
1401
1419
  "text.contact_point_not_selected": "contact point not selected",
1402
1420
  "text.container_arrival_date_is_empty": "container arrival date is empty",
1403
1421
  "text.container_leaving_date_is_empty": "container leaving date is empty",
1404
1422
  "text.container_no_is_empty": "container no is empty",
1405
1423
  "text.container_size_is_empty": "container size is empty",
1406
- "text.create": "create",
1407
1424
  "text.create_arrival_notice": "create arrival notice",
1408
1425
  "text.create_batch_picking": "create batch picking",
1409
1426
  "text.create_collection_order": "create collection order",
1410
- "text.create_cycle_count": "create cycle count",
1411
1427
  "text.create_cycle_count_worksheet": "create cycle count worksheet",
1428
+ "text.create_cycle_count": "create cycle count",
1412
1429
  "text.create_delivery_order": "create delivery order",
1413
1430
  "text.create_goods_received_note": "create goods received note",
1414
1431
  "text.create_release_order": "create release order",
@@ -1416,6 +1433,7 @@
1416
1433
  "text.create_return_order": "create return order",
1417
1434
  "text.create_reverse_kitting_order": "create reverse kitting order",
1418
1435
  "text.create_vas_order": "create vas order",
1436
+ "text.create": "create",
1419
1437
  "text.creating_cycle_count_worksheet": "creating cycle count worksheet",
1420
1438
  "text.creating_release_order_is_required": "creating release order is required",
1421
1439
  "text.current_order_complete_sorting": "current order complete sorting",
@@ -1429,8 +1447,8 @@
1429
1447
  "text.data_rejected": "data rejected",
1430
1448
  "text.data_restore_successfully": "data restore successfully",
1431
1449
  "text.data_submitted_for_approval": "data submitted for approval",
1432
- "text.decimal_quantities_not_allowed": "Decimal quantities are not allowed for this product",
1433
1450
  "text.decimal_quantities_not_allowed_for_sku": "decimal quantities are not allowed for {sku}",
1451
+ "text.decimal_quantities_not_allowed": "Decimal quantities are not allowed for this product",
1434
1452
  "text.delete_all_locations?": "delete all locations",
1435
1453
  "text.delivery_address_is_empty_please_fill_in_the_data_before_proceed_create_order": "delivery address is empty. please fill in the data before proceed create order.",
1436
1454
  "text.delivery_has_been_dispatched": "delivery has been dispatched",
@@ -1467,8 +1485,8 @@
1467
1485
  "text.driver_is_empty": "driver name is empty",
1468
1486
  "text.driver_is_not_selected": "driver is not selected",
1469
1487
  "text.duplicate_entry_in_vas_details": "duplicate entry in vas details",
1470
- "text.duplicated_batch_id": "duplicated batch id",
1471
1488
  "text.duplicated_batch_id_and_sku": "duplicated batch id and sku",
1489
+ "text.duplicated_batch_id": "duplicated batch id",
1472
1490
  "text.duplicated_lot_id": "duplicated lot id",
1473
1491
  "text.duplicated_romoval_on_same_sn": "duplicated removal on same serial no",
1474
1492
  "text.duplicated_value_field": "duplicated value ({field})",
@@ -1503,8 +1521,8 @@
1503
1521
  "text.from_location_not_match_with_location": "from location not match with location",
1504
1522
  "text.full_format": "full format",
1505
1523
  "text.gan_confirmed": "GAN confirmed",
1506
- "text.gan_has_been": "This GAN has been {arrivalNotice}.",
1507
1524
  "text.gan_has_been_deleted": "GAN has been deleted",
1525
+ "text.gan_has_been": "This GAN has been {arrivalNotice}.",
1508
1526
  "text.gan_now_editable": "GAN now editable",
1509
1527
  "text.gan_pending_company_approval": "GAN pending company approval",
1510
1528
  "text.gan_status_is": "This GAN is in {arrivalNotice} status, please scan when the GAN's status is in PUTTING AWAY.",
@@ -1535,8 +1553,8 @@
1535
1553
  "text.invalid_carton_id": "invalid carton id",
1536
1554
  "text.invalid_data_in_list": "invalid data in list ",
1537
1555
  "text.invalid_expiration_date": "invalid expiration date",
1538
- "text.invalid_form": "invalid form",
1539
1556
  "text.invalid_form_value": "invalid form value",
1557
+ "text.invalid_form": "invalid form",
1540
1558
  "text.invalid_format_of_location_id": "invalid format of location id",
1541
1559
  "text.invalid_holder": "invalid holder",
1542
1560
  "text.invalid_inventory": "invalid_inventory",
@@ -1557,16 +1575,17 @@
1557
1575
  "text.invalid_release_qty": "invalid release qty",
1558
1576
  "text.invalid_return_location": "invalid return location",
1559
1577
  "text.invalid_selection_more_than_one_product": "invalid selection (more than one product)",
1578
+ "text.invalid_sequence_number": "invalid sequence number",
1560
1579
  "text.invalid_transfer_qty": "invalid transfer qty",
1561
1580
  "text.invalid_unit_cost": "invalid unit cost",
1562
- "text.invalid_unit_price": "invalid unit price",
1563
1581
  "text.invalid_unit_price_not_a_number": "invalid unit price (not a number)",
1564
- "text.invalid_uom_value": "invalid uom value",
1582
+ "text.invalid_unit_price": "invalid unit price",
1565
1583
  "text.invalid_uom_value_input": "invalid uom value input",
1584
+ "text.invalid_uom_value": "invalid uom value",
1566
1585
  "text.invalid_value_in_list": "invalid value in list",
1567
1586
  "text.invalid_vas_setting": "invalid VAS setting",
1568
- "text.invalid_x": "invalid {state.x}",
1569
1587
  "text.invalid_x_input": "invalid {state.x} input",
1588
+ "text.invalid_x": "invalid {state.x}",
1570
1589
  "text.inventory_adjustment": "inventory adjustment",
1571
1590
  "text.inventory_auto_assign_completed": "inventory auto assign completed",
1572
1591
  "text.inventory_does_not_belong_to_current_company_account": "inventory does not belong to current company account",
@@ -1582,8 +1601,8 @@
1582
1601
  "text.job_sheet_has_been_updated": "job sheet has been updated",
1583
1602
  "text.kindly_continue_inspect_the_inventory": "kindly continue inspect the inventory",
1584
1603
  "text.kindly_inspect_and_relocate_this_inventory": "kindly inspect and relocate this inventory",
1585
- "text.loading_completed": "loading completed",
1586
1604
  "text.loading_completed_partially": "loading completed partially",
1605
+ "text.loading_completed": "loading completed",
1587
1606
  "text.location_code_is_empty": "location code is empty",
1588
1607
  "text.location_id_is_empty": "location id is empty",
1589
1608
  "text.location_is_not_selected": "location is not selected",
@@ -1616,8 +1635,8 @@
1616
1635
  "text.no_data_found": "no data found",
1617
1636
  "text.no_document_available": "no document available",
1618
1637
  "text.no_label_setting_found": "no label setting found",
1619
- "text.no_label_setting_was_found": "no label setting was found",
1620
1638
  "text.no_label_setting_was_found.": "no label setting was found",
1639
+ "text.no_label_setting_was_found": "no label setting was found",
1621
1640
  "text.no_lot_id": "no lot ID",
1622
1641
  "text.no_matching_product_found": "no matching product found",
1623
1642
  "text.no_matching_putaway_inventory_found": "no matching putaway inventory found",
@@ -1640,6 +1659,7 @@
1640
1659
  "text.only_transfer_quantity_with_greater_than_zero": "only transfer quantity with greater than 0 will be created in the replenishment.",
1641
1660
  "text.optional": "optional",
1642
1661
  "text.order_has_been_set_to_ready_to_ship": "order has been set to ready to ship",
1662
+ "text.order_in_sorting_status": "order is in sorting status",
1643
1663
  "text.order_is_not_selected": "order is not selected",
1644
1664
  "text.order_no_is_empty": "order no is empty",
1645
1665
  "text.order_remark_has_been_checked": "order remark has been checked",
@@ -1671,6 +1691,7 @@
1671
1691
  "text.please_attach_the_file": "please attach the file",
1672
1692
  "text.please_check_your_setting": "please check your setting",
1673
1693
  "text.please_check_your_vas_target": "please check your vas target",
1694
+ "text.please_enter_reprint_seq": "Please enter Reprint Seq.",
1674
1695
  "text.please_enter_the_correct_date_format": "please enter the correct date format",
1675
1696
  "text.please_enter_transfer_qty": "please enter transfer quantity",
1676
1697
  "text.please_enter_whole_number_for_pack_qty_x": "please enter whole number for pack qty {state.x}",
@@ -1697,17 +1718,22 @@
1697
1718
  "text.please_select_release_order": "please select release order",
1698
1719
  "text.please_select_the_company": "please select the company",
1699
1720
  "text.please_select_the_contact_type": "please select the contact type",
1700
- "text.please_select_the_location": "please select the location",
1701
1721
  "text.please_select_the_location_again": "please select the location again",
1722
+ "text.please_select_the_location": "please select the location",
1702
1723
  "text.please_select_the_product": "please select the product",
1703
1724
  "text.please_select_transport_type": "please select transport type",
1704
1725
  "text.please_take_necessary_action_to_prevent_any_potential_issues": "please take necessary action to prevent any potential issues",
1705
- "text.please_wait": "please wait",
1706
1726
  "text.please_wait_for_current_process_to_be_completed": "please wait for current process to be completed",
1727
+ "text.please_wait": "please wait",
1707
1728
  "text.preunload_has_completed": "preunload has been completed",
1708
1729
  "text.previous_scan_is_executing": "the previous scan is still processing. Please wait 3-5 seconds before starting the next scan",
1709
1730
  "text.print_1_label_for_item_with_non_specified_print_qty": "print 1 label for item with non-specified print qty",
1731
+ "text.print_history": "print history",
1710
1732
  "text.print_qty_is_empty": "print qty is empty",
1733
+ "text.print_qty_must_be_at_least_one": "print qty must be at least one",
1734
+ "text.print_qty_must_be_integer": "print qty must be an integer",
1735
+ "text.print_qty_must_be_valid_integer": "print qty must be a valid integer",
1736
+ "text.print_qty_must_be_valid_number": "print qty must be a valid number",
1711
1737
  "text.printing": "printing",
1712
1738
  "text.printing_not_allowed_business_rest_day": "Printing is not allowed as today ({day}) falls on the business rest day(s) of this contact point: {restDays}",
1713
1739
  "text.priority": "priority",
@@ -1719,9 +1745,9 @@
1719
1745
  "text.product_changes_have_been_processed": "product changes have been processed",
1720
1746
  "text.product_is_not_selected": "product is not selected",
1721
1747
  "text.product_not_found": "product not found",
1722
- "text.putaway": "putaway",
1723
1748
  "text.putaway_completed": "putaway completed",
1724
1749
  "text.putaway_replenishment_completed": "putaway replenishment completed",
1750
+ "text.putaway": "putaway",
1725
1751
  "text.qty_cannot_be_divided_completely": "qty cannot be divided completely",
1726
1752
  "text.qty_exceed_limit": "qty exceed limit",
1727
1753
  "text.qty_exceed_release_qty": "qty exceed release qty",
@@ -1742,7 +1768,6 @@
1742
1768
  "text.reject_vas_order": "reject vas order",
1743
1769
  "text.related_arrival_notice_will_be_deleted": "related arrival notice will be deleted",
1744
1770
  "text.related_release_order_will_be_rejected": "related release order will be rejected",
1745
- "text.releaseGood_cancelled": "{releaseGood} cancelled",
1746
1771
  "text.release_date_is_empty": "release date is empty",
1747
1772
  "text.release_date_is_required": "release date is required",
1748
1773
  "text.release_order_confirmed": "release order confirmed",
@@ -1763,14 +1788,15 @@
1763
1788
  "text.release_qty_is_more_than_expected": "release qty is more than expected",
1764
1789
  "text.release_qty_must_be_at_least_1": "release qty must be at least 1",
1765
1790
  "text.release_qty_not_matched": "release qty not matched",
1766
- "text.remark_is_empty": "remark is empty",
1791
+ "text.releaseGood_cancelled": "{releaseGood} cancelled",
1767
1792
  "text.remark_is_empty_kindly_fill_in_to_proceed": "Remark is empty. Kindly fill in to proceed.",
1793
+ "text.remark_is_empty": "remark is empty",
1768
1794
  "text.remark_updated": "remark updated",
1769
1795
  "text.replacement_pallet_not_match_criteria": "replacement pallet not match criteria",
1770
1796
  "text.replenishment_created": "replenishment created",
1771
1797
  "text.replenishment_is_cancelled": "replenishment is cancelled",
1772
1798
  "text.replenishment_worksheet_created": "replenishment worksheet created",
1773
- "text.return": "return",
1799
+ "text.reprint_seq_placeholder": "e.g. 4 or 4,7-9",
1774
1800
  "text.return_order_confirmed": "return order confirmed",
1775
1801
  "text.return_order_created": "return order created",
1776
1802
  "text.return_order_form_invalid": "return order form invalid",
@@ -1778,14 +1804,15 @@
1778
1804
  "text.return_order_is_arrived": "return order is arrived",
1779
1805
  "text.return_order_received": "return order received",
1780
1806
  "text.return_order_rejected": "return order rejected",
1807
+ "text.return": "return",
1781
1808
  "text.reusable_pallet_id_empty": "plastic pallet id is empty",
1782
1809
  "text.reverse_kitting_completed": "reverse kitting completed",
1783
- "text.reverse_kitting_order": "reverse kitting order",
1784
1810
  "text.reverse_kitting_order_activated": "reverse kitting order activated",
1785
1811
  "text.reverse_kitting_order_cancelled": "reverse kitting order cancelled",
1786
1812
  "text.reverse_kitting_order_confirmed": "reverse kitting order confirmed",
1787
1813
  "text.reverse_kitting_order_created": "reverse kitting order created",
1788
1814
  "text.reverse_kitting_order_deleted": "reverse kitting order deleted",
1815
+ "text.reverse_kitting_order": "reverse kitting order",
1789
1816
  "text.scan_product_barcode": "scan product barcode",
1790
1817
  "text.scanned_product_status_is_done": "scanned product status is done",
1791
1818
  "text.seal_number": "seal number",
@@ -1806,6 +1833,7 @@
1806
1833
  "text.selected_release_order(s)_is_not_in_pending_worksheet_status": "selected release order(s) is not in pending worksheet status",
1807
1834
  "text.selected_replenishment(s)_is_not_in_pending_worksheet_status": "selected replenishment(s) is not in pending worksheet status",
1808
1835
  "text.send_goods_received_note": "send GRN",
1836
+ "text.sequence_out_of_range": "sequence out of range: {ranges}",
1809
1837
  "text.serial_number_has_been_scanned": "serial number has been scanned",
1810
1838
  "text.serial_number_is_empty": "serial number is empty",
1811
1839
  "text.serial_number_not_tally_with_qty": "serial number not tally with quantity",
@@ -1817,8 +1845,8 @@
1817
1845
  "text.single_picking": "single picking",
1818
1846
  "text.sku_has_vas_changing_sku_will_need_user_to_reenter_vas_information": "SKU has vas. Changing this SKU will need user to reenter vas information",
1819
1847
  "text.sku_has_vas_releaseQty_less_than_qty_for_vas_changing_will_require_user_to_reenter_vas_information": "SKU has vas. release Qty is lesser than Qty for vas changing will require user to reenter vas information",
1820
- "text.sku_is_required": "sku is required",
1821
1848
  "text.sku_is_required_kindly_fill_in_the_sku_to_continue": "SKU is required. Kindly fill in the sku to continue",
1849
+ "text.sku_is_required": "sku is required",
1822
1850
  "text.sorting_is_completed": "sorting is completed",
1823
1851
  "text.state_is_empty_please_fill_in_the_data_before_proceed_create_order": "state is empty. please fill in the data before proceed create order.",
1824
1852
  "text.status_field_is_empty": "status field is empty",
@@ -1929,11 +1957,11 @@
1929
1957
  "text.warehouse_is_assigned": "warehouse is assigned",
1930
1958
  "text.warehouse_is_not_assigned": "warehouse is not assigned",
1931
1959
  "text.warehouse_not_found": "warehouse not found!",
1932
- "text.worksheet(s)_has_been_generated": "worksheet(s) has been generated",
1933
1960
  "text.worksheet_activated": "worksheet activated",
1934
1961
  "text.worksheet_has_been_generated": "worksheet has been generated",
1935
1962
  "text.worksheet_not_activated_error": "worksheet {worksheetType} is not activated yet",
1936
1963
  "text.worksheet_status_error": "worksheet is {worksheetStatus}",
1964
+ "text.worksheet(s)_has_been_generated": "worksheet(s) has been generated",
1937
1965
  "text.wrong_carton_id": "wrong carton id",
1938
1966
  "text.wrong_lot_id": "wrong lot ID",
1939
1967
  "text.wrong_release_qty": "wrong release qty",
@@ -1944,11 +1972,11 @@
1944
1972
  "text.x_is_expiring": "{x} is expiring",
1945
1973
  "text.x_should_be_positive": "{state.x} should be positive value",
1946
1974
  "text.yes": "yes",
1947
- "text.you.are.now.in": "you are now in {state.text}",
1948
1975
  "text.you_can_only_select_one_transport_type": "you can only select one transport type",
1949
1976
  "text.you_can_only_upload_one_file_max": "you can only upload one file max",
1950
1977
  "text.you_can_still_restore_after_deleting": "you can still restore after deleting",
1951
1978
  "text.you_wont_be_able_to_revert_this": "you won't be able to revert this",
1979
+ "text.you.are.now.in": "you are now in {state.text}",
1952
1980
  "text.your_work_has_completed": "your work has completed",
1953
1981
  "text.zip/postal_code_is_empty_please_fill_in_the_data_before_proceed_create_order": "ZIP/Postal code is empty. please fill in the data before proceed create order.",
1954
1982
  "text.zone_picking": "zone picking",
@@ -1960,20 +1988,20 @@
1960
1988
  "title.adjust_pallet_qty": "adjust pallet qty",
1961
1989
  "title.adjustment": "adjustment",
1962
1990
  "title.analytics_report": "analytics report",
1963
- "title.approve": "approve",
1964
1991
  "title.approve_partnership": "approve partnership",
1992
+ "title.approve": "approve",
1965
1993
  "title.are_you_sure": "are you sure?",
1966
- "title.arrival_notice": "arrival notice",
1967
1994
  "title.arrival_notice_detail": "arrival notice detail",
1968
1995
  "title.arrival_notice_requests": "arrival notice requests",
1996
+ "title.arrival_notice": "arrival notice",
1969
1997
  "title.arrival_notices": "arrival notices",
1970
1998
  "title.assign_warehouse": "assign warehouse",
1971
1999
  "title.attachment": "attachment",
1972
2000
  "title.awb": "AWB",
1973
2001
  "title.batch_picking": "batch picking",
1974
- "title.bizplace": "bizplace",
1975
2002
  "title.billing_module": "billing module",
1976
2003
  "title.bizplace_settings": "bizplace settings",
2004
+ "title.bizplace": "bizplace",
1977
2005
  "title.bulk_arrival_notices": "bulk arrival notices",
1978
2006
  "title.bulk_b2c_release_orders": "bulk B2C release order",
1979
2007
  "title.bulk_operation": "bulk operation",
@@ -1986,21 +2014,21 @@
1986
2014
  "title.check_return_pallet": "check return pallet",
1987
2015
  "title.check_unknown_inventory": "check unknown inventory",
1988
2016
  "title.child_product": "child product",
1989
- "title.claim_chit": "claim chit",
1990
2017
  "title.claim_chit_details": "claim chit details",
2018
+ "title.claim_chit": "claim chit",
1991
2019
  "title.code_management": "code management",
1992
2020
  "title.column_selection": "column selection",
1993
- "title.combination": "combination",
1994
2021
  "title.combination_sets": "combination sets",
2022
+ "title.combination": "combination",
1995
2023
  "title.company": "company",
1996
- "title.completed": "completed",
1997
2024
  "title.completed_delivery_order": "completed delivery order",
2025
+ "title.completed": "completed",
1998
2026
  "title.confirm_arrival_notice": "confirm arrival notice",
1999
- "title.contact_point": "contact point",
2000
2027
  "title.contact_point_list": "contact point list",
2028
+ "title.contact_point": "contact point",
2001
2029
  "title.create_arrival_notice": "create arrival notice",
2002
- "title.create_claim_chit": "create claim chit",
2003
2030
  "title.create_claim_chit_details": "create claim chit details",
2031
+ "title.create_claim_chit": "create claim chit",
2004
2032
  "title.create_cycle_count": "create cycle count",
2005
2033
  "title.create_delivery_order": "create delivery order",
2006
2034
  "title.create_loading_manifest": "create loading manifest",
@@ -2012,24 +2040,24 @@
2012
2040
  "title.create_vas_order": "create vas order",
2013
2041
  "title.cross_docking": "cross docking",
2014
2042
  "title.customer_return": "customer return",
2015
- "title.cycle_count": "cycle count",
2016
2043
  "title.cycle_count_configuration": "cycle count configuration",
2017
2044
  "title.cycle_count_information": "cycle count information",
2018
2045
  "title.cycle_count_no": "cycle count no",
2019
2046
  "title.cycle_count_recheck": "cycle count recheck",
2020
- "title.cycle_count_report": "cycle count report",
2021
2047
  "title.cycle_count_report_list": "cycle count report list",
2048
+ "title.cycle_count_report": "cycle count report",
2022
2049
  "title.cycle_count_worksheet_detail": "cycle count worksheet detail",
2023
2050
  "title.cycle_count_worksheet_list": "cycle count worksheet list",
2024
2051
  "title.cycle_count_worksheet_review": "cycle count worksheet review",
2052
+ "title.cycle_count": "cycle count",
2025
2053
  "title.daily_collection_report": "daily collection report",
2026
2054
  "title.daily_order_inventory_report": "daily order inventory report",
2027
2055
  "title.date_inventory_report": "{state.text} Inventory Report",
2028
2056
  "title.date_vas_order_report": "{state.text} Vas Order Report",
2029
2057
  "title.date_vas_summary_report": "{state.text} Vas Summary Report",
2030
2058
  "title.delivery_information": "delivery information",
2031
- "title.delivery_order": "delivery order",
2032
2059
  "title.delivery_order_summary": "delivery order summary",
2060
+ "title.delivery_order": "delivery order",
2033
2061
  "title.delivery_orders": "delivery orders",
2034
2062
  "title.destination": "destination",
2035
2063
  "title.dispatcher_verification": "dispatcher verification",
@@ -2063,11 +2091,11 @@
2063
2091
  "title.generate_putaway_worksheet": "generate putaway worksheet",
2064
2092
  "title.generator": "generator",
2065
2093
  "title.goods_delivery_note_details": "goods delivery note details",
2066
- "title.goods_received_note": "goods received note",
2067
2094
  "title.goods_received_note_details": "goods received note details",
2095
+ "title.goods_received_note": "goods received note",
2068
2096
  "title.goods_received_notes": "goods received notes",
2069
- "title.import": "import",
2070
2097
  "title.import_manifest": "import manifest",
2098
+ "title.import": "import",
2071
2099
  "title.inbound_order_details_report": "inbound order details report",
2072
2100
  "title.inbound_product_changes": "inbound product changes",
2073
2101
  "title.inbound_reusable_pallet": "inbound plastic pallet",
@@ -2078,9 +2106,8 @@
2078
2106
  "title.input_section": "input section",
2079
2107
  "title.inspection": "inspection",
2080
2108
  "title.inventories": "inventories",
2081
- "title.inventory": "inventory",
2082
- "title.inventory_adjustment": "inventory adjustment",
2083
2109
  "title.inventory_adjustment_approval": "inventory adjustment approval",
2110
+ "title.inventory_adjustment": "inventory adjustment",
2084
2111
  "title.inventory_assign": "inventory assignment",
2085
2112
  "title.inventory_auto_assign": "inventory auto assign",
2086
2113
  "title.inventory_by_product": "inventory by product",
@@ -2098,36 +2125,37 @@
2098
2125
  "title.inventory_pallet_storage_report": "inventory pallet storage report",
2099
2126
  "title.inventory_remark": "inventory remark",
2100
2127
  "title.inventory_report": "inventory report",
2101
- "title.inventory_selection": "inventory selection",
2102
2128
  "title.inventory_selection_strategy": "inventory selection strategy",
2129
+ "title.inventory_selection": "inventory selection",
2103
2130
  "title.inventory_summary_report": "inventory summary report",
2131
+ "title.inventory": "inventory",
2104
2132
  "title.is_operation_finished": "is operation completed",
2105
- "title.issue": "issue",
2106
2133
  "title.issue_details": "issue details",
2134
+ "title.issue": "issue",
2107
2135
  "title.item_list": "item list",
2108
2136
  "title.item_putting_away_is_expiring_soon": "Item putting away is expiring soon!",
2109
2137
  "title.item_unloading_is_expiring_soon": "Item unloading is expiring soon!",
2110
2138
  "title.job_sheet_info": "job sheet info",
2111
2139
  "title.job_sheet_list": "job sheet list",
2112
2140
  "title.job_sheet_report": "job sheet report",
2113
- "title.load": "load",
2114
2141
  "title.load_by_qty": "load by qty",
2142
+ "title.load": "load",
2115
2143
  "title.loaded": "loaded",
2116
- "title.loading": "loading",
2117
2144
  "title.loading_qc_report": "loading qc report",
2118
- "title.location": "location",
2145
+ "title.loading": "loading",
2119
2146
  "title.location_label_format": "location label format",
2120
2147
  "title.location_scanned_is_not_a_quarantine_zone": "Location scanned is not a quarantine zone!",
2121
2148
  "title.location_sorting_rule": "location sorting rule",
2149
+ "title.location": "location",
2122
2150
  "title.lot_information": "lot information",
2123
2151
  "title.lot_label": "lot label",
2124
- "title.manifest": "manifest",
2125
2152
  "title.manifest_items": "manifest items",
2126
2153
  "title.manifest_list": "manifest list",
2127
2154
  "title.manifest_no": "manifest no",
2128
2155
  "title.manifest_report": "manifest report",
2129
- "title.menu": "menu",
2156
+ "title.manifest": "manifest",
2130
2157
  "title.menu_management": "menu management",
2158
+ "title.menu": "menu",
2131
2159
  "title.merged_outbound_worksheet": "merged outbound worksheet",
2132
2160
  "title.merged_picking_list": "merged picking list",
2133
2161
  "title.missing_pallets": "missing pallets",
@@ -2140,29 +2168,29 @@
2140
2168
  "title.non_loaded_inventory": "non loaded inventory",
2141
2169
  "title.onhand_inventory": "onhand inventory",
2142
2170
  "title.operation_type": "operation type",
2143
- "title.order(s)_is_at_pending_cancelled_or_cancelled": "Order(s) is at Pending Cancelled or Cancelled",
2144
2171
  "title.order_information": "order information",
2145
2172
  "title.order_no": "order no",
2146
2173
  "title.order_products": "order products",
2147
2174
  "title.order_remark": "order remark",
2148
2175
  "title.order_vas_report": "order vas report",
2176
+ "title.order(s)_is_at_pending_cancelled_or_cancelled": "Order(s) is at Pending Cancelled or Cancelled",
2149
2177
  "title.original_pallet": "original pallet",
2150
2178
  "title.outbound_order_details_report": "outbound order details report",
2151
2179
  "title.outbound_reusable_pallet": "outbound plastic pallet",
2152
2180
  "title.outbound_serial_number_report": "outbound serial number report",
2153
2181
  "title.outbound_worksheet": "outbound worksheet",
2154
- "title.packing": "packing",
2155
2182
  "title.packing_list": "packing list",
2156
2183
  "title.packing_worksheet_list": "packing worksheet list",
2157
- "title.pallet": "pallet",
2184
+ "title.packing": "packing",
2158
2185
  "title.pallet_replacement": "pallet replacement",
2159
- "title.palletizing": "palletizing",
2186
+ "title.pallet": "pallet",
2160
2187
  "title.palletizing_with_pallets": "palletizing with pallets",
2188
+ "title.palletizing": "palletizing",
2161
2189
  "title.pallets": "pallets",
2162
2190
  "title.partner": "partner",
2163
- "title.picking": "picking",
2164
2191
  "title.picking_bins": "picking bins",
2165
2192
  "title.picking_strategy": "picking strategy",
2193
+ "title.picking": "picking",
2166
2194
  "title.pickup_logistics": "pickup logistics",
2167
2195
  "title.please_select_generate_type": "please select generate type:",
2168
2196
  "title.preunload": "preunload",
@@ -2176,27 +2204,27 @@
2176
2204
  "title.proceed_edited_added_product": "proceed edited/added products",
2177
2205
  "title.proceed_edited_vas": "proceed edited/added vas",
2178
2206
  "title.proceed_extra_product": "proceed extra products",
2179
- "title.product": "product",
2180
- "title.product_bundle": "product bundle",
2181
2207
  "title.product_bundle_detail": "product bundle detail",
2182
2208
  "title.product_bundle_setting": "product bundle setting",
2209
+ "title.product_bundle": "product bundle",
2183
2210
  "title.product_details": "product details",
2184
2211
  "title.product_info": "product info",
2185
2212
  "title.product_label_report": "product label report",
2186
2213
  "title.product_option": "product option",
2187
2214
  "title.product_set": "product set",
2188
2215
  "title.product_sku_x": "product sku: {x}",
2189
- "title.putaway": "putaway",
2216
+ "title.product": "product",
2190
2217
  "title.putaway_inventories": "putaway inventories",
2218
+ "title.putaway": "putaway",
2191
2219
  "title.ready_to_ship": "ready to ship",
2192
2220
  "title.reassign_inventory": "reassign inventory",
2193
2221
  "title.receive_arrival_notice": "receive arrival notice",
2194
2222
  "title.receive_return_order": "receive return order",
2195
2223
  "title.receive_vas_order": "receive vas order",
2196
- "title.reject": "reject",
2197
2224
  "title.reject_arrival_notice": "reject arrival notice",
2198
2225
  "title.reject_release_order": "reject release order",
2199
2226
  "title.reject_return_order": "reject return order",
2227
+ "title.reject": "reject",
2200
2228
  "title.rejected_arrival_notice_detail": "rejected arrival notice detail",
2201
2229
  "title.rejected_release_order": "rejected release order",
2202
2230
  "title.rejected_return_order": "rejected return order",
@@ -2204,64 +2232,64 @@
2204
2232
  "title.rejection_reason": "rejection reason",
2205
2233
  "title.relabel": "relabel",
2206
2234
  "title.release_inventory_report": "release inventory report",
2207
- "title.release_order": "release order",
2208
2235
  "title.release_order_detail": "release order detail",
2209
2236
  "title.release_order_no": "release order no",
2210
2237
  "title.release_order_requests": "release order requests",
2238
+ "title.release_order": "release order",
2211
2239
  "title.release_orders": "release orders",
2212
2240
  "title.release_product_list": "release product list",
2213
- "title.relocate": "relocate",
2214
2241
  "title.relocate_inventory": "relocate inventory",
2242
+ "title.relocate": "relocate",
2215
2243
  "title.remark": "remark",
2216
2244
  "title.removing_order_remark": "removing order remark",
2217
- "title.repack": "repacking configuration",
2218
2245
  "title.repack_relabel": "repacking & relabeling configuration",
2219
- "title.replenishment": "replenishment",
2246
+ "title.repack": "repacking configuration",
2220
2247
  "title.replenishment_detail": "replenishment detail",
2221
2248
  "title.replenishment_list": "replenishment list",
2222
2249
  "title.replenishment_report": "replenishment report",
2223
- "title.replenishment_worksheet": "replenishment worksheet",
2224
2250
  "title.replenishment_worksheet_list": "replenishment worksheet list",
2251
+ "title.replenishment_worksheet": "replenishment worksheet",
2252
+ "title.replenishment": "replenishment",
2225
2253
  "title.report_issue": "report issue",
2226
2254
  "title.retail_replenishment_order_detail": "retail replenishment order detail",
2227
2255
  "title.retail_replenishment_order_no": "replenishment order number",
2228
2256
  "title.retail_replenishment_order_requests": "retail replenishment order requests",
2229
2257
  "title.return_location": "return location",
2230
- "title.return_order": "return order",
2231
2258
  "title.return_order_detail": "return order detail",
2232
2259
  "title.return_order_no": "return order no",
2233
2260
  "title.return_order_requests": "return order requests",
2261
+ "title.return_order": "return order",
2234
2262
  "title.return_orders": "return orders",
2235
2263
  "title.return_product_list": "return product list",
2236
2264
  "title.reusable_pallet": "plastic pallet",
2237
- "title.reverse_kitting": "reverse kitting",
2238
2265
  "title.reverse_kitting_no": "reverse kitting no",
2239
2266
  "title.reverse_kitting_order_detail": "reverse kitting order detail",
2240
2267
  "title.reverse_kitting_orders": "reverse kitting orders",
2268
+ "title.reverse_kitting": "reverse kitting",
2241
2269
  "title.role": "role",
2242
2270
  "title.same_pallet_is_found": "same pallet is found",
2243
- "title.scan": "scan",
2244
2271
  "title.scan_area": "scan area",
2245
2272
  "title.scan_barcode": "scan barcode",
2246
2273
  "title.scan_new_bin_no": "scan new bin no",
2274
+ "title.scan": "scan",
2247
2275
  "title.search_area": "search area",
2248
2276
  "title.select_company": "select company",
2249
2277
  "title.select_destination": "select destination",
2250
2278
  "title.select_driver": "select driver",
2251
- "title.select_item": "select item",
2252
2279
  "title.select_item_label": "select item label",
2280
+ "title.select_item": "select item",
2253
2281
  "title.select_location": "select location",
2254
2282
  "title.select_product_batch": "select product batch",
2255
2283
  "title.select_truck": "select truck",
2256
2284
  "title.select_warehouse": "select warehouse",
2257
2285
  "title.selected_vas": "selected vas",
2258
- "title.serial_number": "serial number",
2259
2286
  "title.serial_number_list": "serial number list",
2287
+ "title.serial_number": "serial number",
2260
2288
  "title.setting": "setting",
2261
2289
  "title.shipping_information": "shipping information",
2262
2290
  "title.shipping_order": "shipping order",
2263
- "title.sorting": "sorting",
2264
2291
  "title.sorting_item": "sorting item",
2292
+ "title.sorting": "sorting",
2265
2293
  "title.system_and_physical_location_is_different": "system and physical location is different",
2266
2294
  "title.system_code_detail": "code detail",
2267
2295
  "title.system_create_role": "system create role",
@@ -2269,14 +2297,14 @@
2269
2297
  "title.system_menu_detail": "menu detail",
2270
2298
  "title.system_role_detail": "role-privilege detail",
2271
2299
  "title.system_user_bizplace_detail": "system user bizplace detail",
2272
- "title.target": "target",
2273
2300
  "title.target_product": "target product",
2274
2301
  "title.target_products": "target products",
2302
+ "title.target": "target",
2275
2303
  "title.task_list": "task list",
2276
2304
  "title.task_no": "task no",
2277
2305
  "title.tasks": "tasks",
2278
- "title.tote": "tote",
2279
2306
  "title.tote_scanning": "tote scanning",
2307
+ "title.tote": "tote",
2280
2308
  "title.tracking_information": "tracking information",
2281
2309
  "title.tracking_number": "tracking number",
2282
2310
  "title.transfer_inventory": "transfer inventory",
@@ -2285,40 +2313,39 @@
2285
2313
  "title.transport_vehicle": "transport vehicle",
2286
2314
  "title.undo_putaway": "undo putaway",
2287
2315
  "title.undo_unload": "undo unload",
2288
- "title.unloaded": "unloaded",
2289
2316
  "title.unloaded_inventories": "unloaded inventories",
2290
2317
  "title.unloaded_pallets": "unloaded pallets",
2291
- "title.unloading": "unloading",
2318
+ "title.unloaded": "unloaded",
2292
2319
  "title.unloading_issue": "unloading issue",
2293
2320
  "title.unloading_with_reusable_pallet": "unloading with plastic pallet",
2294
- "title.unpack": "unpack",
2321
+ "title.unloading": "unloading",
2295
2322
  "title.unpack_procedure": "unpack procedure",
2323
+ "title.unpack": "unpack",
2296
2324
  "title.unpacking": "unpacking",
2297
2325
  "title.update_purchase_order": "update purchase order?",
2298
- "title.upload_document": "upload document",
2299
2326
  "title.upload_document_template": "upload document template",
2327
+ "title.upload_document": "upload document",
2300
2328
  "title.upload_gdn": "upload gdn",
2301
2329
  "title.upload_grn": "upload grn",
2302
2330
  "title.upload_signed_gdn": "upload signed gdn",
2303
- "title.vas": "value added services",
2304
2331
  "title.vas_info": "vas info",
2305
2332
  "title.vas_issue": "vas issue",
2306
2333
  "title.vas_lot_label": "vas lot label",
2307
2334
  "title.vas_no": "vas no.",
2308
- "title.vas_order": "vas order",
2309
2335
  "title.vas_order_detail": "vas order detail",
2310
2336
  "title.vas_order_report": "vas order report",
2337
+ "title.vas_order": "vas order",
2311
2338
  "title.vas_orders": "vas orders",
2312
2339
  "title.vas_summary_report": "vas summary report",
2313
2340
  "title.vas_worksheets": "vas worksheet",
2341
+ "title.vas": "value added services",
2314
2342
  "title.view_product_changes": "view product changes",
2315
2343
  "title.view_vas_changes": "view vas changes",
2316
2344
  "title.volume_summary_report": "volume summary report",
2317
- "title.warehouse": "warehouse",
2318
2345
  "title.warehouse_name": "warehouse name",
2319
2346
  "title.warehouse_return": "warehouse return",
2347
+ "title.warehouse": "warehouse",
2320
2348
  "title.worker": "worker",
2321
- "title.worksheet": "worksheet",
2322
2349
  "title.worksheet_batch_picking": "worksheet batch picking",
2323
2350
  "title.worksheet_cycle_count": "worksheet cycle count",
2324
2351
  "title.worksheet_detail": "worksheet detail",
@@ -2329,14 +2356,15 @@
2329
2356
  "title.worksheet_packing": "worksheet packing",
2330
2357
  "title.worksheet_pick_replenishment": "worksheet pick replenishment",
2331
2358
  "title.worksheet_picking": "worksheet picking",
2332
- "title.worksheet_putaway": "worksheet putaway",
2333
2359
  "title.worksheet_putaway_replenishment": "worksheet putaway replenishment",
2334
2360
  "title.worksheet_putaway_return": "worksheet putaway return",
2361
+ "title.worksheet_putaway": "worksheet putaway",
2335
2362
  "title.worksheet_replenishment": "worksheet replenishment",
2336
2363
  "title.worksheet_return": "worksheet return",
2337
2364
  "title.worksheet_sorting": "worksheet sorting",
2338
- "title.worksheet_unloading": "worksheet unloading",
2339
2365
  "title.worksheet_unloading_return": "worksheet unloading return",
2366
+ "title.worksheet_unloading": "worksheet unloading",
2340
2367
  "title.worksheet_vas": "worksheet vas",
2368
+ "title.worksheet": "worksheet",
2341
2369
  "title.zone_worksheet": "zone worksheet"
2342
2370
  }