@things-factory/operato-wms 4.3.769 β 4.3.770
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.
- package/client/pages/components/list-view/product-list-view.js +28 -3
- package/client/pages/components/mobile-condition-of-goods-listing.js +342 -0
- package/client/pages/components/unloading-worksheet-information-popup.js +299 -0
- package/client/pages/constants/order.js +7 -0
- package/client/pages/inbound/condition-of-goods-popup.js +646 -0
- package/client/pages/inbound/putaway/putaway-product.js +35 -6
- package/client/pages/inbound/unload-product-landing-page.js +282 -0
- package/client/pages/inbound/unload-product.js +707 -175
- package/client/pages/inbound/unloaded-inventories-popup.js +3 -0
- package/client/pages/inventory/inventory-adjustment-approval.js +28 -1
- package/client/pages/inventory/inventory-adjustment.js +31 -1
- package/client/pages/inventory/inventory-by-product-detail.js +15 -0
- package/client/pages/inventory/inventory-history.js +18 -0
- package/client/pages/inventory/onhand-inventory.js +14 -0
- package/client/pages/order/release-order/b2b/b2b-order-list.js +99 -0
- package/client/pages/order/release-order/packing-label-history-popup.js +378 -0
- package/client/pages/order/release-order/preview-print-packing-list.js +533 -0
- package/client/pages/order/release-order/print-quantity-popup.js +118 -0
- package/client/pages/outbound/loading-v2/loading-execution-base.js +29 -0
- package/client/pages/outbound/loading-v2/loading-execution.js +579 -2
- package/client/pages/outbound/loading-v2/loading-package-info-popup.js +182 -0
- package/client/pages/outbound/loading-v2/loading.js +18 -0
- package/client/pages/report/inbound-order-details-report.js +26 -1
- package/client/route.js +17 -0
- package/dist-server/graphql/resolvers/outbound/find-loadable-release-good-by-bin.js +9 -1
- package/dist-server/graphql/resolvers/outbound/find-loadable-release-good-by-bin.js.map +1 -1
- package/dist-server/graphql/resolvers/outbound/loading-worksheet-v2.js +11 -5
- package/dist-server/graphql/resolvers/outbound/loading-worksheet-v2.js.map +1 -1
- package/dist-server/graphql/resolvers/reports/inbound-order-details-report.js +2 -1
- package/dist-server/graphql/resolvers/reports/inbound-order-details-report.js.map +1 -1
- package/dist-server/graphql/types/reports/inbound-order-details-report.js +1 -0
- package/dist-server/graphql/types/reports/inbound-order-details-report.js.map +1 -1
- package/package.json +15 -15
- package/server/graphql/resolvers/outbound/find-loadable-release-good-by-bin.ts +9 -1
- package/server/graphql/resolvers/outbound/loading-worksheet-v2.ts +13 -1
- package/server/graphql/resolvers/reports/inbound-order-details-report.ts +2 -1
- package/server/graphql/types/reports/inbound-order-details-report.ts +1 -0
- package/things-factory.config.js +8 -0
- package/translations/en.json +45 -1
- package/translations/ko.json +40 -0
- package/translations/ms.json +40 -0
- package/translations/zh.json +40 -0
|
@@ -57,14 +57,20 @@ interface WorksheetDetailInfo {
|
|
|
57
57
|
id?: string
|
|
58
58
|
batchId?: string
|
|
59
59
|
packingType?: string
|
|
60
|
+
packedQty?: number
|
|
61
|
+
releaseQty?: number
|
|
60
62
|
product?: {
|
|
61
63
|
id?: string
|
|
62
64
|
sku?: string
|
|
63
65
|
name?: string
|
|
66
|
+
isInventoryDecimal?: boolean
|
|
64
67
|
}
|
|
65
68
|
productDetail?: {
|
|
66
69
|
id?: string
|
|
67
70
|
}
|
|
71
|
+
orderProduct?: {
|
|
72
|
+
id?: string
|
|
73
|
+
}
|
|
68
74
|
}
|
|
69
75
|
}
|
|
70
76
|
|
|
@@ -243,13 +249,19 @@ async function mapdata(
|
|
|
243
249
|
batchId: wsd.targetInventory?.batchId || '-',
|
|
244
250
|
packingType: wsd.targetInventory?.packingType,
|
|
245
251
|
refWorksheetId: wsd.targetInventory?.refWorksheetId,
|
|
252
|
+
packedQty: wsd.targetInventory?.packedQty || 0,
|
|
253
|
+
releaseQty: wsd.targetInventory?.releaseQty,
|
|
246
254
|
product: {
|
|
247
255
|
id: wsd.targetInventory?.product?.id,
|
|
248
256
|
sku: wsd.targetInventory?.product?.sku,
|
|
249
|
-
name: wsd.targetInventory?.product?.name
|
|
257
|
+
name: wsd.targetInventory?.product?.name,
|
|
258
|
+
isInventoryDecimal: wsd.targetInventory?.product?.isInventoryDecimal
|
|
250
259
|
},
|
|
251
260
|
productDetail: {
|
|
252
261
|
id: wsd.targetInventory?.productDetail?.id
|
|
262
|
+
},
|
|
263
|
+
orderProduct: {
|
|
264
|
+
id: wsd.targetInventory?.orderProductId
|
|
253
265
|
}
|
|
254
266
|
}
|
|
255
267
|
}))
|
|
@@ -83,7 +83,7 @@ export const inboundOrderDetailsReport = {
|
|
|
83
83
|
p.id as "product_id", p.sku as "product_sku", p.name as "product_name", p.description as "product_description", p.type as "product_type",
|
|
84
84
|
oi.packing_size as "pack_size", oi.packing_type as "pack_type", oi.actual_pack_qty, oi.actual_pack_uom_value, oi.uom, oi.batch_id, oi.batch_id_ref,
|
|
85
85
|
oi.unloaded_at as "unloaded_at", oi.putaway_at as "putaway_at", oi.unloaded_by_id as "oi_unloaded_by_id", oi.putaway_by_id as "oi_putaway_by_id",
|
|
86
|
-
i.pallet_id, i.carton_id, i.expiration_date, i.manufacture_date, i.unit_cost,
|
|
86
|
+
i.pallet_id, i.carton_id, i.expiration_date, i.condition_of_goods, i.manufacture_date, i.unit_cost,
|
|
87
87
|
pd.volume as "unit_volume", pd.nett_weight as "unit_nett_weight", pd.gross_weight as "unit_gross_weight", pd.weight_unit as "weight_unit"
|
|
88
88
|
from (
|
|
89
89
|
select * from arrival_notices
|
|
@@ -208,6 +208,7 @@ export const inboundOrderDetailsReport = {
|
|
|
208
208
|
batchId: itm.batch_id,
|
|
209
209
|
batchIdRef: itm.batch_id_ref,
|
|
210
210
|
expirationDate: itm.expiration_date,
|
|
211
|
+
conditionOfGoods: itm.condition_of_goods,
|
|
211
212
|
manufactureDate: itm.manufacture_date,
|
|
212
213
|
unloadedAt: itm.unloaded_at,
|
|
213
214
|
unloadedBy: itm.unloaded_by,
|
package/things-factory.config.js
CHANGED
|
@@ -208,6 +208,10 @@ export default {
|
|
|
208
208
|
tagname: 'bulk-print-packing-list',
|
|
209
209
|
page: 'bulk_print_packing_list'
|
|
210
210
|
},
|
|
211
|
+
{
|
|
212
|
+
tagname: 'preview-print-packing-list',
|
|
213
|
+
page: 'preview_print_packing_list'
|
|
214
|
+
},
|
|
211
215
|
{
|
|
212
216
|
tagname: 'create-loading-manifest',
|
|
213
217
|
page: 'create_loading_manifest'
|
|
@@ -380,6 +384,10 @@ export default {
|
|
|
380
384
|
tagname: 'unload-product',
|
|
381
385
|
page: 'unloading'
|
|
382
386
|
},
|
|
387
|
+
{
|
|
388
|
+
tagname: 'unload-product-landing-page',
|
|
389
|
+
page: 'unloading_landing'
|
|
390
|
+
},
|
|
383
391
|
{
|
|
384
392
|
tagname: 'putaway-product',
|
|
385
393
|
page: 'putaway'
|
package/translations/en.json
CHANGED
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
"button.get_tracking_no": "get tracking no",
|
|
60
60
|
"button.go_to_loading": "Go to LOADING",
|
|
61
61
|
"button.go_to_picked": "Go to PICKED",
|
|
62
|
+
"button.group_packing_label": "Group Packing Label",
|
|
62
63
|
"button.ignore": "ignore",
|
|
63
64
|
"button.import": "import",
|
|
64
65
|
"button.init_logistics": "init logistics",
|
|
@@ -130,6 +131,7 @@
|
|
|
130
131
|
"button.view_merged_list": "view merged list",
|
|
131
132
|
"button.warehouse_return": "warehouse return",
|
|
132
133
|
"button.wooden_pallet": "wooden pallet",
|
|
134
|
+
"button.condition": "condition",
|
|
133
135
|
"claim_chit_list": "claim chit list",
|
|
134
136
|
"claim_created": "new claim created",
|
|
135
137
|
"claim_updated": "claim updated",
|
|
@@ -484,6 +486,7 @@
|
|
|
484
486
|
"field.number_of_shelf": "number of shelf",
|
|
485
487
|
"field.obsolete_qty": "obsolete qty",
|
|
486
488
|
"field.obsolete": "obsolete",
|
|
489
|
+
"field.inventory_quality": "inventory quality",
|
|
487
490
|
"field.onhand_inventory_quantity": "onhand inventory quantity",
|
|
488
491
|
"field.opening_balance": "opening balance",
|
|
489
492
|
"field.opening_qty": "opening qty",
|
|
@@ -526,6 +529,7 @@
|
|
|
526
529
|
"field.packed_at": "packed at",
|
|
527
530
|
"field.packed_by": "packed by",
|
|
528
531
|
"field.packing_end": "packing end",
|
|
532
|
+
"field.packing_label_no": "Packing Label No.",
|
|
529
533
|
"field.packing_rate": "packing rate",
|
|
530
534
|
"field.packing_size": "packing size",
|
|
531
535
|
"field.packing_start": "packing start",
|
|
@@ -560,6 +564,7 @@
|
|
|
560
564
|
"field.print_no": "print no.",
|
|
561
565
|
"field.print_qty": "print quantity",
|
|
562
566
|
"field.printed_at": "printed at",
|
|
567
|
+
"field.printed_by": "printed by",
|
|
563
568
|
"field.printed": "printed",
|
|
564
569
|
"field.priority_delivery": "priority delivery",
|
|
565
570
|
"field.priority": "priority",
|
|
@@ -822,6 +827,11 @@
|
|
|
822
827
|
"field.your_name": "your name",
|
|
823
828
|
"field.zone": "zone",
|
|
824
829
|
"filed.role": "role",
|
|
830
|
+
"field.type_of_condition": "type of condition",
|
|
831
|
+
"label.COLLECTION": "COLLECTION",
|
|
832
|
+
"label.DELIVERY": "DELIVERY",
|
|
833
|
+
"label.Location_format": "location format",
|
|
834
|
+
"label.VAS": "value added service",
|
|
825
835
|
"label.activated": "activated",
|
|
826
836
|
"label.actual_qty": "actual qty",
|
|
827
837
|
"label.add_extension": "add extension",
|
|
@@ -1101,6 +1111,7 @@
|
|
|
1101
1111
|
"label.packing_type": "packing type",
|
|
1102
1112
|
"label.packing_unit": "packing unit",
|
|
1103
1113
|
"label.packing": "packing",
|
|
1114
|
+
"label.packing_label": "Packing Label",
|
|
1104
1115
|
"label.paid_amount": "paid amount",
|
|
1105
1116
|
"label.pallet_id": "pallet id",
|
|
1106
1117
|
"label.pallet_qty": "pallet qty",
|
|
@@ -1131,6 +1142,7 @@
|
|
|
1131
1142
|
"label.previous_location": "previous location",
|
|
1132
1143
|
"label.print_by_sku": "print by sku",
|
|
1133
1144
|
"label.print_qty": "print qty",
|
|
1145
|
+
"label.print_quantity": "Print Quantity",
|
|
1134
1146
|
"label.printing_mode": "printing mode",
|
|
1135
1147
|
"label.process_type": "process type",
|
|
1136
1148
|
"label.product_barcode": "product barcode",
|
|
@@ -1250,9 +1262,11 @@
|
|
|
1250
1262
|
"label.total_location_with_opening_balance": "total location with opening balance",
|
|
1251
1263
|
"label.total_opening_balance": "total opening balance",
|
|
1252
1264
|
"label.total_pack_qty": "total pack qty",
|
|
1265
|
+
"label.total_packing_label": "Total Packing Label",
|
|
1253
1266
|
"label.total_pallet_qty": "total pallet qty",
|
|
1254
1267
|
"label.total_tracking_no": "total tracking no",
|
|
1255
1268
|
"label.total_uom_value": "total uom value",
|
|
1269
|
+
"label.total_sku": "Total SKU",
|
|
1256
1270
|
"label.total": "total",
|
|
1257
1271
|
"label.tracking_no": "tracking no.",
|
|
1258
1272
|
"label.transfer_inventory": "transfer inventory",
|
|
@@ -1306,6 +1320,11 @@
|
|
|
1306
1320
|
"label.worksheet_no": "worksheet no",
|
|
1307
1321
|
"label.zip_postal_code": "ZIP/Postal code",
|
|
1308
1322
|
"label.zone_name": "zone name",
|
|
1323
|
+
"label.condition": "Condition",
|
|
1324
|
+
"label.condition_of_goods_good": "Good",
|
|
1325
|
+
"label.condition_of_goods_defect": "Defect",
|
|
1326
|
+
"label.condition_of_goods_damaged": "Damaged",
|
|
1327
|
+
"label.condition_of_goods_quarantine": "Quarantine",
|
|
1309
1328
|
"release_order_created": "release order created",
|
|
1310
1329
|
"release_order_updated": "release order updated",
|
|
1311
1330
|
"release_orders_requests": "release orders requests",
|
|
@@ -1514,6 +1533,11 @@
|
|
|
1514
1533
|
"text.extra_products_approved": "extra product approved",
|
|
1515
1534
|
"text.extra_products_have_been_processed": "extra products have been processed",
|
|
1516
1535
|
"text.extra_products_were_added": "extra products were added",
|
|
1536
|
+
"text.failed_to_open_packing_label_history": "failed to open packing label history",
|
|
1537
|
+
"text.failed_to_open_print_packing_label": "failed to open print packing label",
|
|
1538
|
+
"text.failed_to_print": "failed to print",
|
|
1539
|
+
"text.failed_to_render_template": "failed to render template",
|
|
1540
|
+
"text.failed_to_create_group_loading_packages": "failed to create group loading packages",
|
|
1517
1541
|
"text.field": "field",
|
|
1518
1542
|
"text.fields": "fields",
|
|
1519
1543
|
"text.from_date_cannot_be_empty": "from date cannot be empty",
|
|
@@ -1534,6 +1558,9 @@
|
|
|
1534
1558
|
"text.goods_delivery_note_uploaded": "goods delivery note uploaded",
|
|
1535
1559
|
"text.goods_received_note_has_been_received": "GRN has been marked received",
|
|
1536
1560
|
"text.goods_received_note_has_been_sent_successfully": "GRN has been sent successfully",
|
|
1561
|
+
"text.group_quantity_cannot_be_negative": "group quantity cannot be negative",
|
|
1562
|
+
"text.group_quantity_cannot_be_zero": "group quantity cannot be zero",
|
|
1563
|
+
"text.group_quantity_exceeds_total": "group quantity cannot exceed total quantity",
|
|
1537
1564
|
"text.holder_field_is_empty": "holder field is empty",
|
|
1538
1565
|
"text.inbound": "inbound",
|
|
1539
1566
|
"text.incomplete_container_information": "incomplete container information",
|
|
@@ -1630,6 +1657,7 @@
|
|
|
1630
1657
|
"text.month_is_empty": "month is empty",
|
|
1631
1658
|
"text.new_batch_id_is_empty": "new batch no is empty",
|
|
1632
1659
|
"text.new_sku_empty": "new SKU column is empty",
|
|
1660
|
+
"text.new_packing_label_created": "new packing label created",
|
|
1633
1661
|
"text.no_available_worksheet_selected": "no available worksheet selected",
|
|
1634
1662
|
"text.no_changes_to_be_submitted": "no changes to be submitted",
|
|
1635
1663
|
"text.no_company_selected": "no company selected",
|
|
@@ -1646,6 +1674,9 @@
|
|
|
1646
1674
|
"text.no_products": "no products",
|
|
1647
1675
|
"text.no_record_selected": "no record selected",
|
|
1648
1676
|
"text.no_serial_number_selected": "no serial number selected",
|
|
1677
|
+
"text.no_sku_selected": "no SKU selected",
|
|
1678
|
+
"text.no_valid_orders_selected": "no valid orders selected",
|
|
1679
|
+
"text.no_valid_packages_selected": "no valid packages selected",
|
|
1649
1680
|
"text.not_a_reusable_pallet": "not a reusable pallet",
|
|
1650
1681
|
"text.not_found_in_putaway_list": "not found in putaway list",
|
|
1651
1682
|
"text.nothing_changed": "nothing changed",
|
|
@@ -1656,6 +1687,7 @@
|
|
|
1656
1687
|
"text.online": "online",
|
|
1657
1688
|
"text.only_one_file_is_allowed_for_both_AWB_upload": "Only one file is allowed for both AWB upload. Please ensure you select a single file",
|
|
1658
1689
|
"text.only_one_file_is_allowed_for_both_invoice_upload": "Only one file is allowed for both Invoice upload. Please ensure you select a single file.",
|
|
1690
|
+
"text.only_available_on_loading_tab": "only available on the LOADING tab",
|
|
1659
1691
|
"text.only_supports_search_of_single_field": "only supports search of single field",
|
|
1660
1692
|
"text.only_transfer_quantity_with_greater_than_zero": "only transfer quantity with greater than 0 will be created in the replenishment.",
|
|
1661
1693
|
"text.optional": "optional",
|
|
@@ -1709,10 +1741,12 @@
|
|
|
1709
1741
|
"text.please_select_a_truck": "select a truck",
|
|
1710
1742
|
"text.please_select_an_existing_manifest_or_create_a_new_one": "please select an existing manifest or create a new one",
|
|
1711
1743
|
"text.please_select_an_inventory": "please select an inventory",
|
|
1744
|
+
"text.please_select_at_least_one_record": "please select at least one record",
|
|
1712
1745
|
"text.please_select_at_least_one_order_with_status_deactivated_to_proceed": "please select at least one order with status deactivated to proceed",
|
|
1713
1746
|
"text.please_select_container_size": "please select container size",
|
|
1714
1747
|
"text.please_select_label_indicator": "please select label indicator",
|
|
1715
1748
|
"text.please_select_maximum_50_worksheets_with_status_deactivated_to_proceed": "please select maximum 50 worksheets with status deactivated to proceed",
|
|
1749
|
+
"text.please_select_one_or_more_order": "please select one or more orders",
|
|
1716
1750
|
"text.please_select_one_or_more_order_to_generate_worksheet": "please select one or more order to generate worksheet",
|
|
1717
1751
|
"text.please_select_order_with_status_deactivated_only": "please select order with status deactivated only",
|
|
1718
1752
|
"text.please_select_product_to_replenish": "please select product to replenish",
|
|
@@ -1771,6 +1805,7 @@
|
|
|
1771
1805
|
"text.related_release_order_will_be_rejected": "related release order will be rejected",
|
|
1772
1806
|
"text.release_date_is_empty": "release date is empty",
|
|
1773
1807
|
"text.release_date_is_required": "release date is required",
|
|
1808
|
+
"text.release_good_number_not_found": "release good number not found",
|
|
1774
1809
|
"text.release_order_confirmed": "release order confirmed",
|
|
1775
1810
|
"text.release_order_created": "release order created",
|
|
1776
1811
|
"text.release_order_details_updated": "release order details updated",
|
|
@@ -1833,6 +1868,7 @@
|
|
|
1833
1868
|
"text.selected_qty_is_more_than_expected": "selected qty is more than expected",
|
|
1834
1869
|
"text.selected_release_order(s)_is_not_in_pending_worksheet_status": "selected release order(s) is not in pending worksheet status",
|
|
1835
1870
|
"text.selected_replenishment(s)_is_not_in_pending_worksheet_status": "selected replenishment(s) is not in pending worksheet status",
|
|
1871
|
+
"text.selected_items_not_found": "selected items not found in data",
|
|
1836
1872
|
"text.send_goods_received_note": "send GRN",
|
|
1837
1873
|
"text.sequence_out_of_range": "sequence out of range: {ranges}",
|
|
1838
1874
|
"text.serial_number_has_been_scanned": "serial number has been scanned",
|
|
@@ -1848,6 +1884,7 @@
|
|
|
1848
1884
|
"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",
|
|
1849
1885
|
"text.sku_is_required_kindly_fill_in_the_sku_to_continue": "SKU is required. Kindly fill in the sku to continue",
|
|
1850
1886
|
"text.sku_is_required": "sku is required",
|
|
1887
|
+
"text.sku_list_view_not_found": "SKU list view not found",
|
|
1851
1888
|
"text.sorting_is_completed": "sorting is completed",
|
|
1852
1889
|
"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.",
|
|
1853
1890
|
"text.status_field_is_empty": "status field is empty",
|
|
@@ -1930,6 +1967,7 @@
|
|
|
1930
1967
|
"text.unable_to_save_print_history_x": "unable to save print history ({state.counter} label(s) printed). Kindly contact our support",
|
|
1931
1968
|
"text.undo_inspection": "undo inspection",
|
|
1932
1969
|
"text.undo_inventory": "undo inventory",
|
|
1970
|
+
"text.undo_loading_package_success": "undo loading package successfully",
|
|
1933
1971
|
"text.undo_picking_worksheet": "undo inventory selection",
|
|
1934
1972
|
"text.undo_preunload": "undo preunload",
|
|
1935
1973
|
"text.undo_putaway": "undo putaway",
|
|
@@ -1974,6 +2012,7 @@
|
|
|
1974
2012
|
"text.wrong_lot_id": "wrong lot ID",
|
|
1975
2013
|
"text.wrong_release_qty": "wrong release qty",
|
|
1976
2014
|
"text.wrong_sorting_qty": "wrong sorting qty",
|
|
2015
|
+
"text.error_occurred": "unexpected error occurred",
|
|
1977
2016
|
"text.x_error": "{state.x} error",
|
|
1978
2017
|
"text.x_exceed_limit": "{state.x} exceed limit",
|
|
1979
2018
|
"text.x_is_empty": "{state.x} is empty",
|
|
@@ -1988,6 +2027,7 @@
|
|
|
1988
2027
|
"text.your_work_has_completed": "your work has completed",
|
|
1989
2028
|
"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.",
|
|
1990
2029
|
"text.zone_picking": "zone picking",
|
|
2030
|
+
"text.no_products_found": "No Products Found",
|
|
1991
2031
|
"title.add_inventory": "add inventory",
|
|
1992
2032
|
"title.add_product": "add product",
|
|
1993
2033
|
"title.add_rule_field": "add rule field",
|
|
@@ -2189,6 +2229,9 @@
|
|
|
2189
2229
|
"title.outbound_worksheet": "outbound worksheet",
|
|
2190
2230
|
"title.packing_list": "packing list",
|
|
2191
2231
|
"title.packing_worksheet_list": "packing worksheet list",
|
|
2232
|
+
"title.packing_label": "packing label",
|
|
2233
|
+
"title.packing_label_history": "packing label history",
|
|
2234
|
+
"title.print_packing_label": "print packing label",
|
|
2192
2235
|
"title.packing": "packing",
|
|
2193
2236
|
"title.pallet_replacement": "pallet replacement",
|
|
2194
2237
|
"title.pallet": "pallet",
|
|
@@ -2374,5 +2417,6 @@
|
|
|
2374
2417
|
"title.worksheet_unloading": "worksheet unloading",
|
|
2375
2418
|
"title.worksheet_vas": "worksheet vas",
|
|
2376
2419
|
"title.worksheet": "worksheet",
|
|
2377
|
-
"title.zone_worksheet": "zone worksheet"
|
|
2420
|
+
"title.zone_worksheet": "zone worksheet",
|
|
2421
|
+
"title.condition_of_goods": "condition of goods"
|
|
2378
2422
|
}
|
package/translations/ko.json
CHANGED
|
@@ -104,6 +104,7 @@
|
|
|
104
104
|
"button.reprint": "[ko] reprint",
|
|
105
105
|
"button.go_to_loaded": "[ko] Go to LOADED",
|
|
106
106
|
"button.go_to_picked": "[ko] Go to PICKED",
|
|
107
|
+
"button.group_packing_label": "κ·Έλ£Ή ν¬μ₯ λΌλ²¨",
|
|
107
108
|
"button.go_to_loading": "[ko] Go to LOADING",
|
|
108
109
|
"button.proceed": "[ko] proceed",
|
|
109
110
|
"button.product_changes": "[ko]product changes",
|
|
@@ -139,6 +140,7 @@
|
|
|
139
140
|
"button.view_merged_list": "λ³ν©λ¦¬μ€νΈ μ‘°ν",
|
|
140
141
|
"button.update_vas": "[ko]update vas",
|
|
141
142
|
"button.warehouse_return": "[ko] warehouse return",
|
|
143
|
+
"button.condition": "μν",
|
|
142
144
|
"claim_chit_list": "μ ν 리μ€νΈ",
|
|
143
145
|
"claim_created": "μλ‘μ΄ μ νκ° μμ± λμμ΅λλ€.",
|
|
144
146
|
"claim_updated": "μ νκ° μ
λ°μ΄νΈ λμμ΅λλ€.",
|
|
@@ -478,6 +480,7 @@
|
|
|
478
480
|
"field.number_of_shelf": "μ λ° μ",
|
|
479
481
|
"field.obsolete_qty": "[ko] obsolete qty",
|
|
480
482
|
"field.obsolete": "[ko] obsolete",
|
|
483
|
+
"field.inventory_quality": "[ko] inventory quality",
|
|
481
484
|
"field.onhand_inventory_quantity": "[ko]onhand inventory quantity",
|
|
482
485
|
"field.opening_balance": "μ΄κΈ° μκ³ ",
|
|
483
486
|
"field.opening_qty": "μ΄κΈ° μλ",
|
|
@@ -519,6 +522,7 @@
|
|
|
519
522
|
"field.packed_at": "[ko]packed at",
|
|
520
523
|
"field.packed_by": "[ko]packed by",
|
|
521
524
|
"field.packing_end": "[ko]packing end",
|
|
525
|
+
"field.packing_label_no": "ν¬μ₯ λΌλ²¨ λ²νΈ",
|
|
522
526
|
"field.packing_rate": "[ko] packing rate",
|
|
523
527
|
"field.packing_start": "[ko]packing start",
|
|
524
528
|
"field.packing_type": "ν¬μ₯ μ ν",
|
|
@@ -555,6 +559,7 @@
|
|
|
555
559
|
"field.last_printed_by": "[ko] last printed by",
|
|
556
560
|
"field.printed": "[ko] printed",
|
|
557
561
|
"field.printed_at": "[ko] printed at",
|
|
562
|
+
"field.printed_by": "[ko] printed by",
|
|
558
563
|
"field.range": "[ko] range",
|
|
559
564
|
"field.reprint_seq": "[ko] reprint seq",
|
|
560
565
|
"field.user": "[ko] user",
|
|
@@ -816,6 +821,7 @@
|
|
|
816
821
|
"field.*_location": "[ko] *location",
|
|
817
822
|
"field.*_qty": "[ko] *qty",
|
|
818
823
|
"field.*_sku": "[ko] *sku",
|
|
824
|
+
"field.type_of_condition": "λ¬Όν μν μ ν",
|
|
819
825
|
"label.activated": "νμ±ν",
|
|
820
826
|
"label.actual_qty": "μ€μ μλ",
|
|
821
827
|
"label.add_extension": "μΆκ° νμ₯",
|
|
@@ -1094,6 +1100,7 @@
|
|
|
1094
1100
|
"label.packing_type": "ν¨νΉ μ ν",
|
|
1095
1101
|
"label.packing_unit": "ν¬μ₯ λ¨μ",
|
|
1096
1102
|
"label.packing": "ν¬μ₯",
|
|
1103
|
+
"label.packing_label": "ν¬μ₯ λΌλ²¨",
|
|
1097
1104
|
"label.pallet_barcode": "pallet barcode",
|
|
1098
1105
|
"label.pallet_id": "νλ νΈ μμ΄λ",
|
|
1099
1106
|
"label.pallet_qty": "νλ νΈ μλ",
|
|
@@ -1120,6 +1127,7 @@
|
|
|
1120
1127
|
"label.postal_code": "μ°νΈμ½λ",
|
|
1121
1128
|
"label.previous_location": "μ΄μ λ‘μΌμ΄μ
",
|
|
1122
1129
|
"label.print_qty": "[ko] print qty",
|
|
1130
|
+
"label.print_quantity": "μΈμ μλ",
|
|
1123
1131
|
"label.process_type": "μ²λ¦¬ μ ν",
|
|
1124
1132
|
"label.product_barcode": "μ ν λ°μ½λ",
|
|
1125
1133
|
"label.product_info": "[ko]product info",
|
|
@@ -1240,9 +1248,11 @@
|
|
|
1240
1248
|
"label.total_location_with_opening_balance": "λ‘μΌμ΄μ
μ΄κΈ° μλ",
|
|
1241
1249
|
"label.total_opening_balance": "μ΄ μ΄κΈ° μλ",
|
|
1242
1250
|
"label.total_pack_qty": "μ 체 ν¨νΉ μλ",
|
|
1251
|
+
"label.total_packing_label": "μ΄ ν¬μ₯ λΌλ²¨",
|
|
1243
1252
|
"label.total_pallet_qty": "μ 체 νλ νΈ μλ",
|
|
1244
1253
|
"label.total_tracking_no": "[ko] total tracking no",
|
|
1245
1254
|
"label.total_uom_value": "μ΄ μΈ‘λμΉ",
|
|
1255
|
+
"label.total_sku": "μ΄ SKU",
|
|
1246
1256
|
"label.total_weight": "total weight",
|
|
1247
1257
|
"label.total": "μ΄κ³",
|
|
1248
1258
|
"label.tracking_no": "μΆμ λ²νΈ",
|
|
@@ -1293,6 +1303,11 @@
|
|
|
1293
1303
|
"label.wooden_pallet": "λ무 νλ νΈ",
|
|
1294
1304
|
"label.worksheet_no": "μμ μ§μμ λ²νΈ",
|
|
1295
1305
|
"label.zone_name": "μ‘΄ μ΄λ¦",
|
|
1306
|
+
"label.condition": "쑰건",
|
|
1307
|
+
"label.condition_of_goods_good": "μνΈ",
|
|
1308
|
+
"label.condition_of_goods_defect": "λΆλ",
|
|
1309
|
+
"label.condition_of_goods_damaged": "μμ",
|
|
1310
|
+
"label.condition_of_goods_quarantine": "격리",
|
|
1296
1311
|
"release_order_created": "μΆκ³ μ£Όλ¬Έμ΄ μμ± λμμ΅λλ€",
|
|
1297
1312
|
"release_order_updated": "μΆκ³ μ£Όλ¬Έμ΄ μμ λμμ΅λλ€",
|
|
1298
1313
|
"release_orders_requests": "μΆκ΅¬μ£Όλ¬Έμ΄ μμ² λμμ΅λλ€",
|
|
@@ -1479,6 +1494,11 @@
|
|
|
1479
1494
|
"text.extra_products_approved": "μΆκ° μνμ΄ μΉμΈλ μμ΅λλ€",
|
|
1480
1495
|
"text.extra_products_have_been_processed": "μΆκ° μνμ΄ μ²λ¦¬λμμ΅λλ€",
|
|
1481
1496
|
"text.extra_products_were_added": "μΆκ°μνμ΄ μΆκ°λμμ΅λλ€",
|
|
1497
|
+
"text.failed_to_open_packing_label_history": "ν¬μ₯ λΌλ²¨ μ΄λ ₯ μ΄κΈ° μ€ν¨",
|
|
1498
|
+
"text.failed_to_open_print_packing_label": "ν¬μ₯ λΌλ²¨ μΈμ μ΄κΈ° μ€ν¨",
|
|
1499
|
+
"text.failed_to_print": "μΈμ μ€ν¨",
|
|
1500
|
+
"text.failed_to_render_template": "ν
νλ¦Ώ λ λλ§ μ€ν¨",
|
|
1501
|
+
"text.failed_to_create_group_loading_packages": "κ·Έλ£Ή λ‘λ© ν¨ν€μ§ μμ± μ€ν¨",
|
|
1482
1502
|
"text.field": "νλ",
|
|
1483
1503
|
"text.fields": "νλ",
|
|
1484
1504
|
"text.form_is_not_completed": "form is not completed",
|
|
@@ -1502,6 +1522,9 @@
|
|
|
1502
1522
|
"text.goods_received_note_has_been_received": "μνμλ Ήμκ° μλ½λμγ
λΈλλ€",
|
|
1503
1523
|
"text.goods_received_note_has_been_sent_successfully": "μνμλ Ήμκ° μ±κ³΅μ μΌλ‘ μ μ‘λμμ΅λλ€",
|
|
1504
1524
|
"text.goods_received_note_uploaded": "text.goods_received_note_uploaded",
|
|
1525
|
+
"text.group_quantity_cannot_be_negative": "κ·Έλ£Ή μλμ μμκ° λ μ μμ΅λλ€",
|
|
1526
|
+
"text.group_quantity_cannot_be_zero": "κ·Έλ£Ή μλμ 0μ΄ λ μ μμ΅λλ€",
|
|
1527
|
+
"text.group_quantity_exceeds_total": "κ·Έλ£Ή μλμ΄ μ΄ μλμ μ΄κ³Όν μ μμ΅λλ€",
|
|
1505
1528
|
"text.holder_field_is_empty": "[ko] holder field is empty",
|
|
1506
1529
|
"text.inbound": "[ko]inbound",
|
|
1507
1530
|
"text.incomplete_container_information": "[ko]incomplete container information",
|
|
@@ -1594,6 +1617,7 @@
|
|
|
1594
1617
|
"text.month_is_empty": "[ko] month is empty",
|
|
1595
1618
|
"text.new_batch_id_is_empty": "μ λ°°μΉ λ²νΈκ° μμ΅λλ€",
|
|
1596
1619
|
"text.new_sku_empty": "[ko]new SKU column is empty",
|
|
1620
|
+
"text.new_packing_label_created": "μ ν¬μ₯ λΌλ²¨μ΄ μμ±λμμ΅λλ€",
|
|
1597
1621
|
"text.no_available_worksheet_selected": "[ko]no available worksheet selected",
|
|
1598
1622
|
"text.no_changes_to_be_submitted": "[ko]no changes to be submitted",
|
|
1599
1623
|
"text.no_company_selected": "νμ¬κ° μ νλμ§ μμμ΅λλ€",
|
|
@@ -1611,6 +1635,9 @@
|
|
|
1611
1635
|
"text.no_products": "productsμ΄ μμ΅λλ€",
|
|
1612
1636
|
"text.no_record_selected": "[ko]no record selected",
|
|
1613
1637
|
"text.no_serial_number_selected": "[ko]no serial number selected",
|
|
1638
|
+
"text.no_sku_selected": "SKUκ° μ νλμ§ μμμ΅λλ€",
|
|
1639
|
+
"text.no_valid_orders_selected": "μ ν¨ν μ£Όλ¬Έμ΄ μ νλμ§ μμμ΅λλ€",
|
|
1640
|
+
"text.no_valid_packages_selected": "μ ν¨ν ν¨ν€μ§κ° μ νλμ§ μμμ΅λλ€",
|
|
1614
1641
|
"text.not_a_reusable_pallet": "[ko] not a reusable pallet",
|
|
1615
1642
|
"text.now_using_normal_pallet": "[ko] now using normal pallet",
|
|
1616
1643
|
"text.now_using_reusable_pallet": "[ko] now using reusable pallet",
|
|
@@ -1620,6 +1647,7 @@
|
|
|
1620
1647
|
"text.online": "μ¨λΌμΈ",
|
|
1621
1648
|
"text.only_one_file_is_allowed_for_both_invoice_upload": "[ko]Only one file is allowed for both Invoice upload. Please ensure you select a single file.",
|
|
1622
1649
|
"text.only_one_file_is_allowed_for_both_AWB_upload": "[ko]Only one file is allowed for both AWB upload. Please ensure you select a single file",
|
|
1650
|
+
"text.only_available_on_loading_tab": "LOADING νμμλ§ μ¬μ© κ°λ₯ν©λλ€",
|
|
1623
1651
|
"text.only_supports_search_of_single_field": "[ko]only supports search of single field",
|
|
1624
1652
|
"text.optional": "μ ννλͺ©",
|
|
1625
1653
|
"text.order_has_been_completed": "order has been completed",
|
|
@@ -1681,6 +1709,7 @@
|
|
|
1681
1709
|
"text.please_select_an_arrival_notice": "select arrival notice",
|
|
1682
1710
|
"text.please_select_an_existing_manifest_or_create_a_new_one": "[ko] please select an existing manifest or create a new one",
|
|
1683
1711
|
"text.please_select_an_inventory": "[ko] please select an inventory",
|
|
1712
|
+
"text.please_select_at_least_one_record": "[ko] please select at least one record",
|
|
1684
1713
|
"text.please_select_container_size": "[ko] please select container size",
|
|
1685
1714
|
"text.please_select_label_indicator": "λΌλ²¨ ν¬μκΈ° μ ν",
|
|
1686
1715
|
"text.please_select_one_or_more_order_to_generate_worksheet": "[ko] please select one or more order to generate worksheet",
|
|
@@ -1699,6 +1728,7 @@
|
|
|
1699
1728
|
"text.please_select_order_with_status_deactivated_only": " [ko] please select order with status deactivated only",
|
|
1700
1729
|
"text.please_select_at_least_one_order_with_status_deactivated_to_proceed": "[ko] please select at least one order with status deactivated to proceed",
|
|
1701
1730
|
"text.please_select_maximum_50_worksheets_with_status_deactivated_to_proceed": "[ko] please select maximum 50 worksheets with status deactivated to proceed",
|
|
1731
|
+
"text.please_select_one_or_more_order": "νλ μ΄μμ μ£Όλ¬Έμ μ ννμΈμ",
|
|
1702
1732
|
"text.preunload_has_completed": "μμνμ°¨κ° μλ£ λμμ΅λλ€",
|
|
1703
1733
|
"text.previous_scan_is_executing": "[ko] the previous scan is still processing. Please wait 3-5 seconds before starting the next scan",
|
|
1704
1734
|
"text.print_1_label_for_item_with_non_specified_print_qty": "[ko]print 1 label for item with non-specified print qty",
|
|
@@ -1747,6 +1777,7 @@
|
|
|
1747
1777
|
"text.related_release_order_will_be_rejected": "κ΄λ ¨λ μΆκ³ μ£Όλ¬Έμ΄ μμ λ©λλ€",
|
|
1748
1778
|
"text.release_date_is_empty": "[ko]release date is empty",
|
|
1749
1779
|
"text.release_date_is_required": "[ko]release date is required",
|
|
1780
|
+
"text.release_good_number_not_found": "μΆκ³ λ²νΈλ₯Ό μ°Ύμ μ μμ΅λλ€",
|
|
1750
1781
|
"text.release_order_confirmed": "μΆκ³ μ£Όλ¬Έ νμΈ",
|
|
1751
1782
|
"text.release_order_created": "μΆκ³ μ£Όλ¬Έ μμ±",
|
|
1752
1783
|
"text.release_order_details_updated": "[ko] release order details updated",
|
|
@@ -1817,6 +1848,7 @@
|
|
|
1817
1848
|
"text.selected_qty_is_more_than_expected": "μ νλ μλμ΄ μμλ³΄λ€ λ§μ΅λλ€",
|
|
1818
1849
|
"text.selected_release_order(s)_is_not_in_pending_worksheet_status": "[ko] selected release order(s) is not in pending worksheet status",
|
|
1819
1850
|
"text.selected_replenishment(s)_is_not_in_pending_worksheet_status": "[ko] selected replenishment(s) is not in pending worksheet status",
|
|
1851
|
+
"text.selected_items_not_found": "μ νλ νλͺ©μ λ°μ΄ν°μμ μ°Ύμ μ μμ΅λλ€",
|
|
1820
1852
|
"text.send_goods_received_note": "μνμλ Ήμ μ μ‘",
|
|
1821
1853
|
"text.serial_number_has_been_scanned": "[ko] serial number has been scanned",
|
|
1822
1854
|
"text.serial_number_is_empty": "[ko]serial number is empty",
|
|
@@ -1828,6 +1860,7 @@
|
|
|
1828
1860
|
"text.signed": "λ‘κ·ΈμΈ",
|
|
1829
1861
|
"text.single_picking": "[ko] single picking",
|
|
1830
1862
|
"text.sku_is_required": "[ko]sku is required",
|
|
1863
|
+
"text.sku_list_view_not_found": "SKU λͺ©λ‘ λ·°λ₯Ό μ°Ύμ μ μμ΅λλ€",
|
|
1831
1864
|
"text.sorting_is_completed": "[ko] sorting is completed",
|
|
1832
1865
|
"text.state_is_empty_please_fill_in_the_data_before_proceed_create_order": "[ko] state is empty. please fill in the data before proceed create order.",
|
|
1833
1866
|
"text.status_field_is_empty": "[ko] status field is empty",
|
|
@@ -1919,6 +1952,7 @@
|
|
|
1919
1952
|
"text.all_items_qc_complete_proceed_to_loading": "[ko] All items QC complete. Proceed to LOADING to continue.",
|
|
1920
1953
|
"text.undo_inspection": "[ko] undo inspection",
|
|
1921
1954
|
"text.undo_inventory": "[ko]undo inventory",
|
|
1955
|
+
"text.undo_loading_package_success": "λ‘λ© ν¨ν€μ§ λλ리기 μλ£",
|
|
1922
1956
|
"text.undo_picking_worksheet": "μ¬κ³ νΌνΉ λλ리기",
|
|
1923
1957
|
"text.undo_preunload": "μμνμ°¨ λλ리기",
|
|
1924
1958
|
"text.undo_putaway": "μ¬κ³ μ μΉ λλ리기",
|
|
@@ -1958,6 +1992,7 @@
|
|
|
1958
1992
|
"text.wrong_pallet_id": "wrong pallet id",
|
|
1959
1993
|
"text.wrong_release_qty": "μλͺ»λ μΆκ³ μλ μ
λλ€",
|
|
1960
1994
|
"text.wrong_sorting_qty": "[ko] wrong sorting qty",
|
|
1995
|
+
"text.error_occurred": "μκΈ°μΉ μμ μ€λ₯κ° λ°μνμ΅λλ€",
|
|
1961
1996
|
"text.x_error": "{state.x} μ€λ₯",
|
|
1962
1997
|
"text.x_exceed_limit": "{state.x}μ΄(κ°) μ νμ μ΄κ³Ό ν©λλ€",
|
|
1963
1998
|
"text.x_is_empty": "{state.x}μ΄(κ°) μμ΅λλ€",
|
|
@@ -2217,6 +2252,9 @@
|
|
|
2217
2252
|
"title.outbound_worksheet": "μΆκ³ μμ
μ§μ",
|
|
2218
2253
|
"title.packing_list": "ν¬μ₯ λͺ©λ‘",
|
|
2219
2254
|
"title.packing_worksheet_list": "ν¬μ₯μμ
μ§μμ λͺ©λ‘",
|
|
2255
|
+
"title.packing_label": "ν¬μ₯ λΌλ²¨",
|
|
2256
|
+
"title.packing_label_history": "ν¬μ₯ λΌλ²¨ μ΄λ ₯",
|
|
2257
|
+
"title.print_packing_label": "ν¬μ₯ λΌλ²¨ μΈμ",
|
|
2220
2258
|
"title.packing": "ν¬μ₯",
|
|
2221
2259
|
"title.pallet_label": "pallet label",
|
|
2222
2260
|
"title.pallet_replacement": "νλ νΈ κ΅μ²΄",
|
|
@@ -2440,6 +2478,7 @@
|
|
|
2440
2478
|
"title.worksheet": "μμ
μ§μμ",
|
|
2441
2479
|
"title.vas_summary_report": "[ko]vas summary report",
|
|
2442
2480
|
"title.date_vas_summary_report": "[ko]{state.text} Vas Summary Report",
|
|
2481
|
+
"title.condition_of_goods": "μ¬κ³ μ 쑰건",
|
|
2443
2482
|
"text.vas_changes_has_been_processed": "[ko] vas changes has been processed",
|
|
2444
2483
|
"text.vas_order_created": "λΆκ°μλΉμ€μ£Όλ¬Έ μμ±λ¨",
|
|
2445
2484
|
"field.packing_type_sku": "[ko] packing type ({sku})",
|
|
@@ -2479,6 +2518,7 @@
|
|
|
2479
2518
|
"title.selected_vas": "[ko] selected vas",
|
|
2480
2519
|
"text.please_take_necessary_action_to_prevent_any_potential_issues": "[ko] please take necessary action to prevent any potential issues",
|
|
2481
2520
|
"text.please_wait_for_current_process_to_be_completed": "[ko] please wait for current process to be completed",
|
|
2521
|
+
"text.no_products_found": "μ νμ μ°Ύμ μ μμ΅λλ€.",
|
|
2482
2522
|
"field.adjusted_exp_date": "[ko] adjusted exp date",
|
|
2483
2523
|
"field.adjusted_warehouse": "[ko] adjusted warehouse",
|
|
2484
2524
|
"field.adjusted_location": "[ko] adjusted location",
|