@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
package/translations/ms.json
CHANGED
|
@@ -101,6 +101,7 @@
|
|
|
101
101
|
"button.reprint": "cetak semula",
|
|
102
102
|
"button.go_to_loaded": "Pergi ke DIMUATKAN",
|
|
103
103
|
"button.go_to_picked": "Pergi ke DIPILIH",
|
|
104
|
+
"button.group_packing_label": "Label Pembungkusan Kumpulan",
|
|
104
105
|
"button.go_to_loading": "Pergi ke MEMUATKAN",
|
|
105
106
|
"button.proceed": "teruskan",
|
|
106
107
|
"button.product_changes": "perubahan produk",
|
|
@@ -131,6 +132,7 @@
|
|
|
131
132
|
"button.update_order_details": "kemaskini butiran pesanan",
|
|
132
133
|
"button.update_vas": "kemaskini VAS",
|
|
133
134
|
"button.validate": "sahkan",
|
|
135
|
+
"button.condition": "keadaan",
|
|
134
136
|
"button.vas": "VAS",
|
|
135
137
|
"button.vas_changes": "perubahan VAS",
|
|
136
138
|
"button.vas_list": "senarai VAS",
|
|
@@ -503,6 +505,7 @@
|
|
|
503
505
|
"field.number_of_row": "bilangan baris",
|
|
504
506
|
"field.number_of_shelf": "bilangan sel",
|
|
505
507
|
"field.obsolete": "lapuk",
|
|
508
|
+
"field.inventory_quality": "kualiti inventori",
|
|
506
509
|
"field.obsolete_qty": "kuantiti lapuk",
|
|
507
510
|
"field.onhand_inventory_quantity": "kuantiti inventori di tangan",
|
|
508
511
|
"field.opening": "pembukaan",
|
|
@@ -547,6 +550,7 @@
|
|
|
547
550
|
"field.packed_by": "dibungkus oleh",
|
|
548
551
|
"field.packing": "pembungkusan",
|
|
549
552
|
"field.packing_end": "tamat pembungkusan",
|
|
553
|
+
"field.packing_label_no": "No. Label Pembungkusan",
|
|
550
554
|
"field.packing_rate": "kadar pembungkusan",
|
|
551
555
|
"field.packing_size": "saiz pembungkusan",
|
|
552
556
|
"field.packing_start": "mula pembungkusan",
|
|
@@ -585,6 +589,7 @@
|
|
|
585
589
|
"field.last_printed_by": "dicetak oleh",
|
|
586
590
|
"field.printed": "dicetak",
|
|
587
591
|
"field.printed_at": "masa dicetak",
|
|
592
|
+
"field.printed_by": "dicetak oleh",
|
|
588
593
|
"field.range": "julat",
|
|
589
594
|
"field.reprint_seq": "jujukan cetak semula",
|
|
590
595
|
"field.user": "pengguna",
|
|
@@ -844,6 +849,7 @@
|
|
|
844
849
|
"field.your_name": "nama anda",
|
|
845
850
|
"field.zone": "zon",
|
|
846
851
|
"filed.role": "peranan",
|
|
852
|
+
"field.type_of_condition": "jenis keadaan",
|
|
847
853
|
"label.COLLECTION": "PENGAMBILAN",
|
|
848
854
|
"label.DELIVERY": "PENGHANTARAN",
|
|
849
855
|
"label.Location_format": "format lokasi",
|
|
@@ -1106,6 +1112,7 @@
|
|
|
1106
1112
|
"label.package_qty": "kuantiti paket",
|
|
1107
1113
|
"label.packed_qty": "kuantiti terkemas",
|
|
1108
1114
|
"label.packing": "pembungkusan",
|
|
1115
|
+
"label.packing_label": "Label Pembungkusan",
|
|
1109
1116
|
"label.packing_no": "nombor pembungkusan",
|
|
1110
1117
|
"label.packing_progress": "progress pembungkusan",
|
|
1111
1118
|
"label.packing_type": "jenis pembungkusan",
|
|
@@ -1140,6 +1147,7 @@
|
|
|
1140
1147
|
"label.previous_location": "lokasi sebelumnya",
|
|
1141
1148
|
"label.print_by_sku": "cetak mengikut SKU",
|
|
1142
1149
|
"label.print_qty": "kuantiti cetak",
|
|
1150
|
+
"label.print_quantity": "Kuantiti Cetak",
|
|
1143
1151
|
"label.printing_mode": "mod percetakan",
|
|
1144
1152
|
"label.process_type": "jenis proses",
|
|
1145
1153
|
"label.product": "produk",
|
|
@@ -1268,9 +1276,11 @@
|
|
|
1268
1276
|
"label.total_location_with_opening_balance": "jumlah lokasi dengan baki permulaan",
|
|
1269
1277
|
"label.total_opening_balance": "jumlah baki permulaan",
|
|
1270
1278
|
"label.total_pack_qty": "jumlah kuantiti pek",
|
|
1279
|
+
"label.total_packing_label": "Jumlah Label Pembungkusan",
|
|
1271
1280
|
"label.total_pallet_qty": "jumlah kuantiti palet",
|
|
1272
1281
|
"label.total_tracking_no": "total tracking no",
|
|
1273
1282
|
"label.total_uom_value": "jumlah nilai uom",
|
|
1283
|
+
"label.total_sku": "Jumlah SKU",
|
|
1274
1284
|
"label.tracking_no": "no penjejak",
|
|
1275
1285
|
"label.transfer": "pemindahan",
|
|
1276
1286
|
"label.transfer_inventory": "pemindahan inventori",
|
|
@@ -1323,6 +1333,11 @@
|
|
|
1323
1333
|
"label.worksheet_no": "no. lembaran kerja",
|
|
1324
1334
|
"label.zip_postal_code": "kod pos",
|
|
1325
1335
|
"label.zone_name": "nama zon",
|
|
1336
|
+
"label.condition": "Keadaan Inventori",
|
|
1337
|
+
"label.condition_of_goods_good": "Baik",
|
|
1338
|
+
"label.condition_of_goods_defect": "Cacat",
|
|
1339
|
+
"label.condition_of_goods_damaged": "Rosak",
|
|
1340
|
+
"label.condition_of_goods_quarantine": "Kuarantin",
|
|
1326
1341
|
"release_order_created": "pesanan keluar dicipta",
|
|
1327
1342
|
"release_order_updated": "pesanan keluar telah dikemaskini",
|
|
1328
1343
|
"release_orders_requests": "permintaan pesanan keluar",
|
|
@@ -1529,6 +1544,11 @@
|
|
|
1529
1544
|
"text.extra_products_approved": "produk tambahan diterima",
|
|
1530
1545
|
"text.extra_products_have_been_processed": "produk tambahan telah diproses",
|
|
1531
1546
|
"text.extra_products_were_added": "produk tambahan ditambah",
|
|
1547
|
+
"text.failed_to_open_packing_label_history": "gagal membuka sejarah label pembungkusan",
|
|
1548
|
+
"text.failed_to_open_print_packing_label": "gagal membuka cetak label pembungkusan",
|
|
1549
|
+
"text.failed_to_print": "gagal mencetak",
|
|
1550
|
+
"text.failed_to_render_template": "gagal memaparkan templat",
|
|
1551
|
+
"text.failed_to_create_group_loading_packages": "gagal mencipta kumpulan pakej pemuatan",
|
|
1532
1552
|
"text.field": "ruangan",
|
|
1533
1553
|
"text.fields": "ruangan",
|
|
1534
1554
|
"text.from_date_cannot_be_empty": "dari tarikh tidak boleh kosong",
|
|
@@ -1549,6 +1569,9 @@
|
|
|
1549
1569
|
"text.goods_delivery_note_uploaded": "nota penghantaran barang dimuat naik",
|
|
1550
1570
|
"text.goods_received_note_has_been_received": "GRN ditanda sebagai diterima",
|
|
1551
1571
|
"text.goods_received_note_has_been_sent_successfully": "GRN berjaya dihantar",
|
|
1572
|
+
"text.group_quantity_cannot_be_negative": "kuantiti kumpulan tidak boleh negatif",
|
|
1573
|
+
"text.group_quantity_cannot_be_zero": "kuantiti kumpulan tidak boleh sifar",
|
|
1574
|
+
"text.group_quantity_exceeds_total": "kuantiti kumpulan tidak boleh melebihi jumlah keseluruhan",
|
|
1552
1575
|
"text.holder_field_is_empty": "ruangan pemilik kosong",
|
|
1553
1576
|
"text.inbound": "masuk",
|
|
1554
1577
|
"text.incomplete_container_information": "maklumat kotainener tidak lengkap",
|
|
@@ -1646,6 +1669,7 @@
|
|
|
1646
1669
|
"text.month_is_empty": "bulan kosong",
|
|
1647
1670
|
"text.new_batch_id_is_empty": "new batch no is empty",
|
|
1648
1671
|
"text.new_sku_empty": "ruangan SKU baru kosong",
|
|
1672
|
+
"text.new_packing_label_created": "label pembungkusan baru dicipta",
|
|
1649
1673
|
"text.no_available_worksheet_selected": "tiada lembaran kerja tersedia dipilih",
|
|
1650
1674
|
"text.no_changes_to_be_submitted": "tiada perubahan untuk dihantar",
|
|
1651
1675
|
"text.no_company_selected": "no company selected",
|
|
@@ -1662,6 +1686,9 @@
|
|
|
1662
1686
|
"text.no_products": "tiada produk",
|
|
1663
1687
|
"text.no_record_selected": "tiada rekod dipilih",
|
|
1664
1688
|
"text.no_serial_number_selected": "tiada nombor siri dipilih",
|
|
1689
|
+
"text.no_sku_selected": "tiada SKU dipilih",
|
|
1690
|
+
"text.no_valid_orders_selected": "tiada pesanan yang sah dipilih",
|
|
1691
|
+
"text.no_valid_packages_selected": "tiada pakej yang sah dipilih",
|
|
1665
1692
|
"text.not_a_reusable_pallet": "bukan palet boleh guna semula",
|
|
1666
1693
|
"text.not_found_in_putaway_list": "tidak ditemui dalam senarai penyimpanan",
|
|
1667
1694
|
"text.nothing_changed": "tiada perubahan",
|
|
@@ -1672,6 +1699,7 @@
|
|
|
1672
1699
|
"text.online": "dalam talian",
|
|
1673
1700
|
"text.only_one_file_is_allowed_for_both_AWB_upload": "Hanya satu fail dibenarkan untuk muat naik AWB. Sila pastikan anda memilih satu fail sahaja",
|
|
1674
1701
|
"text.only_one_file_is_allowed_for_both_invoice_upload": "Hanya satu fail dibenarkan untuk muat naik invois. Sila pastikan anda memilih satu fail sahaja",
|
|
1702
|
+
"text.only_available_on_loading_tab": "hanya tersedia pada tab PEMUATAN",
|
|
1675
1703
|
"text.only_supports_search_of_single_field": "hanya menyokong carian satu ruangan",
|
|
1676
1704
|
"text.only_transfer_quantity_with_greater_than_zero": "hanya kuantiti transfer dengan lebih daripada 0 akan dicipta dalam pengisi",
|
|
1677
1705
|
"text.optional": "pilihan",
|
|
@@ -1746,10 +1774,12 @@
|
|
|
1746
1774
|
"text.please_select_a_truck": "silakan pilih kenderaan",
|
|
1747
1775
|
"text.please_select_an_existing_manifest_or_create_a_new_one": "sila pilih manifes sedia ada atau cipta yang baru",
|
|
1748
1776
|
"text.please_select_an_inventory": "silakan pilih stok",
|
|
1777
|
+
"text.please_select_at_least_one_record": "sila pilih sekurang-kurangnya satu rekod",
|
|
1749
1778
|
"text.please_select_at_least_one_order_with_status_deactivated_to_proceed": "sila pilih sekurang-kurangnya satu pesanan dengan status deaktivasi untuk diteruskan",
|
|
1750
1779
|
"text.please_select_container_size": "sila pilih saiz kontena",
|
|
1751
1780
|
"text.please_select_label_indicator": "sila pilih petunjuk label",
|
|
1752
1781
|
"text.please_select_maximum_50_worksheets_with_status_deactivated_to_proceed": "sila pilih maksimum 50 lembaran kerja dengan status deaktivasi untuk diteruskan",
|
|
1782
|
+
"text.please_select_one_or_more_order": "sila pilih satu atau lebih pesanan",
|
|
1753
1783
|
"text.please_select_one_or_more_order_to_generate_worksheet": "sila pilih satu atau lebih pesanan untuk menjana lembaran kerja",
|
|
1754
1784
|
"text.please_select_order_with_status_deactivated_only": "sila pilih pesanan dengan status deaktivasi sahaja",
|
|
1755
1785
|
"text.please_select_product_to_replenish": "sila pilih produk untuk diisi semula",
|
|
@@ -1810,6 +1840,7 @@
|
|
|
1810
1840
|
"text.releaseGood_cancelled": "{releaseGood} dibatalkan",
|
|
1811
1841
|
"text.release_date_is_empty": "tarikh pelepasan kosong",
|
|
1812
1842
|
"text.release_date_is_required": "tarikh pelepasan diperlukan",
|
|
1843
|
+
"text.release_good_number_not_found": "nombor pelepasan barang tidak ditemui",
|
|
1813
1844
|
"text.release_order_confirmed": "pesanan pengeluaran disemak",
|
|
1814
1845
|
"text.release_order_created": "pesanan pengeluaran dicipta",
|
|
1815
1846
|
"text.release_order_details_updated": "maklumat pesanan pengeluaran dikemaskini",
|
|
@@ -1870,6 +1901,7 @@
|
|
|
1870
1901
|
"text.selected_qty_is_more_than_expected": "kuantiti dipilih lebih dari dijangka",
|
|
1871
1902
|
"text.selected_release_order(s)_is_not_in_pending_worksheet_status": "pesanan pelepasan yang dipilih tidak dalam status lembaran kerja menunggu",
|
|
1872
1903
|
"text.selected_replenishment(s)_is_not_in_pending_worksheet_status": "pengisian semula yang dipilih tidak dalam status lembaran kerja menunggu",
|
|
1904
|
+
"text.selected_items_not_found": "item yang dipilih tidak ditemui dalam data",
|
|
1873
1905
|
"text.send_goods_received_note": "hantar GRN",
|
|
1874
1906
|
"text.serial_number_has_been_scanned": "nombor siri telah dipindai",
|
|
1875
1907
|
"text.serial_number_is_empty": "nombor siri kosong",
|
|
@@ -1884,6 +1916,7 @@
|
|
|
1884
1916
|
"text.sku_has_vas_releaseQty_less_than_qty_for_vas_changing_will_require_user_to_reenter_vas_information": "SKU mempunyai VAS. kuantiti pelepasan adalah kurang daripada kuantiti untuk perubahan VAS akan memerlukan pengguna untuk memasukkan semula maklumat VAS",
|
|
1885
1917
|
"text.sku_is_required": "sku diperlukan",
|
|
1886
1918
|
"text.sku_is_required_kindly_fill_in_the_sku_to_continue": "SKU diperlukan. sila isi SKU untuk meneruskan",
|
|
1919
|
+
"text.sku_list_view_not_found": "paparan senarai SKU tidak ditemui",
|
|
1887
1920
|
"text.sorting_is_completed": "penyusunan telah selesai",
|
|
1888
1921
|
"text.state_is_empty_please_fill_in_the_data_before_proceed_create_order": "status kosong. sila isi data sebelum membuat pesanan.",
|
|
1889
1922
|
"text.status_field_is_empty": "status kosong",
|
|
@@ -1972,6 +2005,7 @@
|
|
|
1972
2005
|
"text.all_items_qc_complete_proceed_to_loading": "Semua item QC telah siap. Teruskan ke MEMUATKAN untuk meneruskan.",
|
|
1973
2006
|
"text.undo_inspection": "undur semakan",
|
|
1974
2007
|
"text.undo_inventory": "undur inventori",
|
|
2008
|
+
"text.undo_loading_package_success": "undur pakej pemuatan berjaya",
|
|
1975
2009
|
"text.undo_picking_worksheet": "undur pengambilan lembaran kerja",
|
|
1976
2010
|
"text.undo_preunload": "undur pemuatan awal",
|
|
1977
2011
|
"text.undo_putaway": "undur putaway",
|
|
@@ -2018,6 +2052,7 @@
|
|
|
2018
2052
|
"text.wrong_pallet_id": "id pallet yang salah",
|
|
2019
2053
|
"text.wrong_release_qty": "kuantiti pelepasan yang salah",
|
|
2020
2054
|
"text.wrong_sorting_qty": "kuantiti penyusunan yang salah",
|
|
2055
|
+
"text.error_occurred": "ralat tidak dijangka berlaku",
|
|
2021
2056
|
"text.x_error": "{state.x} ralat",
|
|
2022
2057
|
"text.x_exceed_limit": "{state.x} melebihi had",
|
|
2023
2058
|
"text.x_is_empty": "{state.x} kosong",
|
|
@@ -2032,6 +2067,7 @@
|
|
|
2032
2067
|
"text.your_work_has_completed": "kerja anda telah selesai",
|
|
2033
2068
|
"text.zip/postal_code_is_empty_please_fill_in_the_data_before_proceed_create_order": "kod pos/pos kosong. sila isi data sebelum membuat pesanan.",
|
|
2034
2069
|
"text.zone_picking": "pengambilan zon",
|
|
2070
|
+
"text.no_products_found": "tiada produk dijumpai",
|
|
2035
2071
|
"title.add_inventory": "tambah stok",
|
|
2036
2072
|
"title.add_product": "tambah produk",
|
|
2037
2073
|
"title.add_rule_field": "tambah bidang peraturan",
|
|
@@ -2255,6 +2291,9 @@
|
|
|
2255
2291
|
"title.packing": "pembungkusan",
|
|
2256
2292
|
"title.packing_list": "senarai pembungkusan",
|
|
2257
2293
|
"title.packing_worksheet_list": "senarai lembaran kerja pembungkusan",
|
|
2294
|
+
"title.packing_label": "label pembungkusan",
|
|
2295
|
+
"title.packing_label_history": "sejarah label pembungkusan",
|
|
2296
|
+
"title.print_packing_label": "cetak label pembungkusan",
|
|
2258
2297
|
"title.pallet": "palet",
|
|
2259
2298
|
"title.pallet_label": "pengabelan palet",
|
|
2260
2299
|
"title.pallet_replacement": "mengganti pallet",
|
|
@@ -2468,6 +2507,7 @@
|
|
|
2468
2507
|
"title.worksheet_unloading_return": "lembaran kerja pemunggahan pengembalian",
|
|
2469
2508
|
"title.worksheet_vas": "lembaran kerja VAS",
|
|
2470
2509
|
"title.zone_worksheet": "lembaran kerja zon",
|
|
2510
|
+
"title.condition_of_goods": "keadaan barang",
|
|
2471
2511
|
"field.adjusted_exp_date": "[ms] adjusted exp date",
|
|
2472
2512
|
"field.adjusted_warehouse": "[ms] adjusted warehouse",
|
|
2473
2513
|
"field.adjusted_location": "[ms] adjusted location",
|
package/translations/zh.json
CHANGED
|
@@ -101,6 +101,7 @@
|
|
|
101
101
|
"button.reprint": "重新打印",
|
|
102
102
|
"button.go_to_loaded": "前往已装载",
|
|
103
103
|
"button.go_to_picked": "前往已拣选",
|
|
104
|
+
"button.group_packing_label": "组包装标签",
|
|
104
105
|
"button.go_to_loading": "前往装载",
|
|
105
106
|
"button.proceed": "继续",
|
|
106
107
|
"button.product_changes": "产品变更",
|
|
@@ -137,6 +138,7 @@
|
|
|
137
138
|
"button.view_merged_list": "查看合并列表",
|
|
138
139
|
"button.warehouse_return": "仓库退货",
|
|
139
140
|
"button.wooden_pallet": "木托盘",
|
|
141
|
+
"button.condition": "状态",
|
|
140
142
|
"claim_chit_list": "索赔单列表",
|
|
141
143
|
"claim_created": "新建索赔",
|
|
142
144
|
"claim_updated": "索赔已更新",
|
|
@@ -503,6 +505,7 @@
|
|
|
503
505
|
"field.number_of_row": "行数",
|
|
504
506
|
"field.number_of_shelf": "货架数",
|
|
505
507
|
"field.obsolete": "过时",
|
|
508
|
+
"field.inventory_quality": "库存质量",
|
|
506
509
|
"field.obsolete_qty": "过时数量",
|
|
507
510
|
"field.onhand_inventory_quantity": "现有库存数量",
|
|
508
511
|
"field.opening": "期初",
|
|
@@ -547,6 +550,7 @@
|
|
|
547
550
|
"field.packed_by": "包装人",
|
|
548
551
|
"field.packing": "包装",
|
|
549
552
|
"field.packing_end": "包装结束",
|
|
553
|
+
"field.packing_label_no": "包装标签号",
|
|
550
554
|
"field.packing_rate": "包装率",
|
|
551
555
|
"field.packing_size": "装箱尺寸",
|
|
552
556
|
"field.packing_start": "包装开始",
|
|
@@ -585,6 +589,7 @@
|
|
|
585
589
|
"field.last_printed_by": "最后打印人",
|
|
586
590
|
"field.printed": "已打印",
|
|
587
591
|
"field.printed_at": "打印时间",
|
|
592
|
+
"field.printed_by": "打印人",
|
|
588
593
|
"field.range": "范围",
|
|
589
594
|
"field.reprint_seq": "重打序号",
|
|
590
595
|
"field.user": "用户",
|
|
@@ -851,6 +856,7 @@
|
|
|
851
856
|
"field.zone_end": "区域结束",
|
|
852
857
|
"field.zone_start": "区域开始",
|
|
853
858
|
"filed.role": "角色",
|
|
859
|
+
"field.type_of_condition": "货物状态类型",
|
|
854
860
|
"label.COLLECTION": "收货",
|
|
855
861
|
"label.DELIVERY": "递送",
|
|
856
862
|
"label.Location_format": "位置格式",
|
|
@@ -1125,6 +1131,7 @@
|
|
|
1125
1131
|
"label.package_qty": "包装数量",
|
|
1126
1132
|
"label.packed_qty": "已包装数量",
|
|
1127
1133
|
"label.packing": "包装",
|
|
1134
|
+
"label.packing_label": "包装标签",
|
|
1128
1135
|
"label.packing_no": "包装编号",
|
|
1129
1136
|
"label.packing_progress": "包装进度",
|
|
1130
1137
|
"label.packing_type": "包装类型",
|
|
@@ -1159,6 +1166,7 @@
|
|
|
1159
1166
|
"label.previous_location": "前一个位置",
|
|
1160
1167
|
"label.print_by_sku": "按SKU打印",
|
|
1161
1168
|
"label.print_qty": "打印数量",
|
|
1169
|
+
"label.print_quantity": "打印数量",
|
|
1162
1170
|
"label.printing_mode": "打印模式",
|
|
1163
1171
|
"label.process_type": "process type",
|
|
1164
1172
|
"label.product": "产品",
|
|
@@ -1286,9 +1294,11 @@
|
|
|
1286
1294
|
"label.total_location_with_opening_balance": "总位置开平衡",
|
|
1287
1295
|
"label.total_opening_balance": "总开平衡",
|
|
1288
1296
|
"label.total_pack_qty": "总包装数量",
|
|
1297
|
+
"label.total_packing_label": "总包装标签",
|
|
1289
1298
|
"label.total_pallet_qty": "总托盘数量",
|
|
1290
1299
|
"label.total_tracking_no": "总跟踪编号",
|
|
1291
1300
|
"label.total_uom_value": "总单位值",
|
|
1301
|
+
"label.total_sku": "总SKU",
|
|
1292
1302
|
"label.tracking_no": "跟踪编号",
|
|
1293
1303
|
"label.transfer": "转移",
|
|
1294
1304
|
"label.transfer_inventory": "转移库存",
|
|
@@ -1347,6 +1357,11 @@
|
|
|
1347
1357
|
"label.worksheet_no": "工作表编号",
|
|
1348
1358
|
"label.zip_postal_code": "邮政编码",
|
|
1349
1359
|
"label.zone_name": "区域名称",
|
|
1360
|
+
"label.condition": "货物状态",
|
|
1361
|
+
"label.condition_of_goods_good": "良好",
|
|
1362
|
+
"label.condition_of_goods_defect": "缺陷",
|
|
1363
|
+
"label.condition_of_goods_damaged": "损坏",
|
|
1364
|
+
"label.condition_of_goods_quarantine": "隔离",
|
|
1350
1365
|
"release_order_created": "释放订单已创建",
|
|
1351
1366
|
"release_order_updated": "释放订单已更新",
|
|
1352
1367
|
"release_orders_requests": "释放订单请求",
|
|
@@ -1555,6 +1570,11 @@
|
|
|
1555
1570
|
"text.extra_products_approved": "额外产品已批准",
|
|
1556
1571
|
"text.extra_products_have_been_processed": "额外产品已处理",
|
|
1557
1572
|
"text.extra_products_were_added": "额外产品已添加",
|
|
1573
|
+
"text.failed_to_open_packing_label_history": "打开包装标签历史失败",
|
|
1574
|
+
"text.failed_to_open_print_packing_label": "打开打印包装标签失败",
|
|
1575
|
+
"text.failed_to_print": "打印失败",
|
|
1576
|
+
"text.failed_to_render_template": "模板渲染失败",
|
|
1577
|
+
"text.failed_to_create_group_loading_packages": "创建分组装载包裹失败",
|
|
1558
1578
|
"text.field": "字段",
|
|
1559
1579
|
"text.fields": "字段",
|
|
1560
1580
|
"text.from_date_cannot_be_empty": "开始日期不能为空",
|
|
@@ -1575,6 +1595,9 @@
|
|
|
1575
1595
|
"text.goods_delivery_note_uploaded": "交货单已上传",
|
|
1576
1596
|
"text.goods_received_note_has_been_received": "GRN已标记为已接收",
|
|
1577
1597
|
"text.goods_received_note_has_been_sent_successfully": "GRN已发送成功",
|
|
1598
|
+
"text.group_quantity_cannot_be_negative": "分组数量不能为负数",
|
|
1599
|
+
"text.group_quantity_cannot_be_zero": "分组数量不能为零",
|
|
1600
|
+
"text.group_quantity_exceeds_total": "分组数量不能超过总数量",
|
|
1578
1601
|
"text.holder_field_is_empty": "持有人字段为空",
|
|
1579
1602
|
"text.inbound": "入库",
|
|
1580
1603
|
"text.incomplete_container_information": "不完整的容器信息",
|
|
@@ -1672,6 +1695,7 @@
|
|
|
1672
1695
|
"text.month_is_empty": "月份为空",
|
|
1673
1696
|
"text.new_batch_id_is_empty": "新批次号为空",
|
|
1674
1697
|
"text.new_sku_empty": "新SKU为空",
|
|
1698
|
+
"text.new_packing_label_created": "新包装标签已创建",
|
|
1675
1699
|
"text.no_available_worksheet_selected": "没有可用的作业表",
|
|
1676
1700
|
"text.no_changes_to_be_submitted": "没有要提交的更改",
|
|
1677
1701
|
"text.no_company_selected": "没有公司选择",
|
|
@@ -1688,6 +1712,9 @@
|
|
|
1688
1712
|
"text.no_products": "没有产品",
|
|
1689
1713
|
"text.no_record_selected": "没有记录",
|
|
1690
1714
|
"text.no_serial_number_selected": "没有序列号",
|
|
1715
|
+
"text.no_sku_selected": "没有选择SKU",
|
|
1716
|
+
"text.no_valid_orders_selected": "没有选择有效的订单",
|
|
1717
|
+
"text.no_valid_packages_selected": "没有选择有效的包裹",
|
|
1691
1718
|
"text.not_a_reusable_pallet": "不是可重复使用的托盘",
|
|
1692
1719
|
"text.not_found_in_putaway_list": "未找到在上架列表中",
|
|
1693
1720
|
"text.nothing_changed": "没有改变",
|
|
@@ -1698,6 +1725,7 @@
|
|
|
1698
1725
|
"text.online": "在线",
|
|
1699
1726
|
"text.only_one_file_is_allowed_for_both_AWB_upload": "只能上传一个AWB文件。请确保您选择一个文件",
|
|
1700
1727
|
"text.only_one_file_is_allowed_for_both_invoice_upload": "只能上传一个发票文件。请确保您选择一个文件。",
|
|
1728
|
+
"text.only_available_on_loading_tab": "仅在装载标签页可用",
|
|
1701
1729
|
"text.only_supports_search_of_single_field": "只支持单个字段的搜索",
|
|
1702
1730
|
"text.only_transfer_quantity_with_greater_than_zero": "只有大于0的转移数量将在补货中创建",
|
|
1703
1731
|
"text.optional": "可选",
|
|
@@ -1772,10 +1800,12 @@
|
|
|
1772
1800
|
"text.please_select_a_truck": "选择一辆卡车",
|
|
1773
1801
|
"text.please_select_an_existing_manifest_or_create_a_new_one": "请选择一个现有的清单或创建一个新的清单",
|
|
1774
1802
|
"text.please_select_an_inventory": "请选择一个库存",
|
|
1803
|
+
"text.please_select_at_least_one_record": "请选择至少一条记录",
|
|
1775
1804
|
"text.please_select_at_least_one_order_with_status_deactivated_to_proceed": "请选择至少一个状态为已停用的订单以继续",
|
|
1776
1805
|
"text.please_select_container_size": "请选择容器尺寸",
|
|
1777
1806
|
"text.please_select_label_indicator": "请选择标签指示器",
|
|
1778
1807
|
"text.please_select_maximum_50_worksheets_with_status_deactivated_to_proceed": "请选择最多50个状态为已停用的工作表以继续",
|
|
1808
|
+
"text.please_select_one_or_more_order": "请选择一个或多个订单",
|
|
1779
1809
|
"text.please_select_one_or_more_order_to_generate_worksheet": "请选择一个或多个订单以生成工作表",
|
|
1780
1810
|
"text.please_select_order_with_status_deactivated_only": "请选择状态为已停用的订单",
|
|
1781
1811
|
"text.please_select_product_to_replenish": "请选择产品以补货",
|
|
@@ -1836,6 +1866,7 @@
|
|
|
1836
1866
|
"text.releaseGood_cancelled": "{releaseGood}已取消",
|
|
1837
1867
|
"text.release_date_is_empty": "日期为空",
|
|
1838
1868
|
"text.release_date_is_required": "日期为空",
|
|
1869
|
+
"text.release_good_number_not_found": "未找到发货单号",
|
|
1839
1870
|
"text.release_order_confirmed": "释放订单已确认",
|
|
1840
1871
|
"text.release_order_created": "释放订单已创建",
|
|
1841
1872
|
"text.release_order_details_updated": "释放订单详情已更新",
|
|
@@ -1897,6 +1928,7 @@
|
|
|
1897
1928
|
"text.selected_qty_is_more_than_expected": "选中的数量大于预期",
|
|
1898
1929
|
"text.selected_release_order(s)_is_not_in_pending_worksheet_status": "选中的释放订单不在待处理工作表状态",
|
|
1899
1930
|
"text.selected_replenishment(s)_is_not_in_pending_worksheet_status": "选中的补货不在待处理工作表状态",
|
|
1931
|
+
"text.selected_items_not_found": "选中的项目在数据中未找到",
|
|
1900
1932
|
"text.send_goods_received_note": "发送收货通知",
|
|
1901
1933
|
"text.serial_number_has_been_scanned": "序列号已扫描",
|
|
1902
1934
|
"text.serial_number_is_empty": "序列号为空",
|
|
@@ -1911,6 +1943,7 @@
|
|
|
1911
1943
|
"text.sku_has_vas_releaseQty_less_than_qty_for_vas_changing_will_require_user_to_reenter_vas_information": "SKU有VAS。释放数量小于VAS更改数量将需要用户重新输入VAS信息",
|
|
1912
1944
|
"text.sku_is_required": "SKU为空",
|
|
1913
1945
|
"text.sku_is_required_kindly_fill_in_the_sku_to_continue": "SKU为空。请填写SKU以继续",
|
|
1946
|
+
"text.sku_list_view_not_found": "未找到SKU列表视图",
|
|
1914
1947
|
"text.sorting_is_completed": "排序已完成",
|
|
1915
1948
|
"text.state_is_empty_please_fill_in_the_data_before_proceed_create_order": "状态为空。请填写数据以继续创建订单。",
|
|
1916
1949
|
"text.status_field_is_empty": "状态字段为空",
|
|
@@ -1999,6 +2032,7 @@
|
|
|
1999
2032
|
"text.unable_to_save_print_history_x": "无法保存打印历史({state.counter}标签打印)。请联系我们的支持",
|
|
2000
2033
|
"text.undo_inspection": "撤销检查",
|
|
2001
2034
|
"text.undo_inventory": "撤销库存",
|
|
2035
|
+
"text.undo_loading_package_success": "撤销装载包裹成功",
|
|
2002
2036
|
"text.undo_picking_worksheet": "撤销库存选择",
|
|
2003
2037
|
"text.undo_preunload": "撤销预卸货",
|
|
2004
2038
|
"text.undo_putaway": "撤销放置",
|
|
@@ -2045,6 +2079,7 @@
|
|
|
2045
2079
|
"text.wrong_pallet_id": "托盘ID不正确",
|
|
2046
2080
|
"text.wrong_release_qty": "错误的释放数量",
|
|
2047
2081
|
"text.wrong_sorting_qty": "错误的排序数量",
|
|
2082
|
+
"text.error_occurred": "发生意外错误",
|
|
2048
2083
|
"text.x_error": "{state.x} 错误",
|
|
2049
2084
|
"text.x_exceed_limit": "{state.x} 超出限制",
|
|
2050
2085
|
"text.x_is_empty": "{state.x} 为空",
|
|
@@ -2059,6 +2094,7 @@
|
|
|
2059
2094
|
"text.your_work_has_completed": "你的工作已完成",
|
|
2060
2095
|
"text.zip/postal_code_is_empty_please_fill_in_the_data_before_proceed_create_order": "[zh] ZIP/Postal code is empty. please fill in the data before proceed create order.",
|
|
2061
2096
|
"text.zone_picking": "区域拣选",
|
|
2097
|
+
"text.no_products_found": "未找到产品",
|
|
2062
2098
|
"title.add_inventory": "添加库存",
|
|
2063
2099
|
"title.add_product": "添加产品",
|
|
2064
2100
|
"title.add_rule_field": "添加规则字段",
|
|
@@ -2288,6 +2324,9 @@
|
|
|
2288
2324
|
"title.packing": "装箱",
|
|
2289
2325
|
"title.packing_list": "装箱单",
|
|
2290
2326
|
"title.packing_worksheet_list": "装箱工作表列表",
|
|
2327
|
+
"title.packing_label": "包装标签",
|
|
2328
|
+
"title.packing_label_history": "包装标签历史",
|
|
2329
|
+
"title.print_packing_label": "打印包装标签",
|
|
2291
2330
|
"title.pallet": "托盘",
|
|
2292
2331
|
"title.pallet_label": "托盘标签",
|
|
2293
2332
|
"title.pallet_replacement": "托盘更换",
|
|
@@ -2506,6 +2545,7 @@
|
|
|
2506
2545
|
"title.worksheet_unloading_return": "工作表卸货退货",
|
|
2507
2546
|
"title.worksheet_vas": "VAS清单",
|
|
2508
2547
|
"title.zone_worksheet": "区域工作表",
|
|
2548
|
+
"title.condition_of_goods": "货物状态",
|
|
2509
2549
|
"field.adjusted_exp_date": "[zh] adjusted exp date",
|
|
2510
2550
|
"field.adjusted_warehouse": "[zh] adjusted warehouse",
|
|
2511
2551
|
"field.adjusted_location": "[zh] adjusted location",
|