@things-factory/operato-wms 4.3.681 → 4.3.682
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.
|
@@ -115,6 +115,10 @@ export const WORKSHEET_STATUS = {
|
|
|
115
115
|
PARTIAL_PROCESSING: {
|
|
116
116
|
name: i18next.t('label.partial_processing'),
|
|
117
117
|
value: 'PARTIAL_PROCESSING'
|
|
118
|
+
},
|
|
119
|
+
PARTIAL_EXECUTING: {
|
|
120
|
+
name: i18next.t('label.partial_executing'),
|
|
121
|
+
value: 'PARTIAL_EXECUTING'
|
|
118
122
|
}
|
|
119
123
|
}
|
|
120
124
|
|
|
@@ -2298,7 +2298,7 @@ class PickingProduct extends connect(store)(localize(i18next)(PageView)) {
|
|
|
2298
2298
|
settings: {
|
|
2299
2299
|
name: 'name',
|
|
2300
2300
|
operator: 'in',
|
|
2301
|
-
value: ['enable-product-scanning', 'qr-code-scanning', 'enable-tote-scanning']
|
|
2301
|
+
value: ['enable-product-scanning', 'qr-code-scanning', 'enable-tote-scanning', 'enable-input-qty']
|
|
2302
2302
|
},
|
|
2303
2303
|
settingsDomain: this._worksheetInfo.partnerDomainId
|
|
2304
2304
|
})
|
|
@@ -2307,6 +2307,7 @@ class PickingProduct extends connect(store)(localize(i18next)(PageView)) {
|
|
|
2307
2307
|
|
|
2308
2308
|
this._enableProductScanning = settingsMap.get('enable-product-scanning') === 'true'
|
|
2309
2309
|
this._enableToteScanning = settingsMap.get('enable-tote-scanning') === 'true'
|
|
2310
|
+
this._enableInputQty = settingsMap.get('enable-input-qty')
|
|
2310
2311
|
this._qrProcessing = settingsMap.get('qr-code-scanning')
|
|
2311
2312
|
|
|
2312
2313
|
this._selectedOrderInventory = this.data?.records[0] || undefined
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-wms",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.682",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"@things-factory/print-ui": "^4.3.675",
|
|
92
92
|
"@things-factory/product-base": "^4.3.677",
|
|
93
93
|
"@things-factory/resource-ui": "^4.3.677",
|
|
94
|
-
"@things-factory/sales-ui": "^4.3.
|
|
94
|
+
"@things-factory/sales-ui": "^4.3.682",
|
|
95
95
|
"@things-factory/scene-data-transform": "^4.3.591",
|
|
96
96
|
"@things-factory/scene-excel": "^4.3.591",
|
|
97
97
|
"@things-factory/scene-firebase": "^4.3.591",
|
|
@@ -107,8 +107,8 @@
|
|
|
107
107
|
"@things-factory/system-ui": "^4.3.675",
|
|
108
108
|
"@things-factory/transport-base": "^4.3.677",
|
|
109
109
|
"@things-factory/tutorial-ui": "^4.3.677",
|
|
110
|
-
"@things-factory/warehouse-base": "^4.3.
|
|
111
|
-
"@things-factory/worksheet-base": "^4.3.
|
|
110
|
+
"@things-factory/warehouse-base": "^4.3.682",
|
|
111
|
+
"@things-factory/worksheet-base": "^4.3.682"
|
|
112
112
|
},
|
|
113
113
|
"devDependencies": {
|
|
114
114
|
"@things-factory/builder": "^4.3.591",
|
|
@@ -117,5 +117,5 @@
|
|
|
117
117
|
"cypress-localstorage-commands": "^1.6.1",
|
|
118
118
|
"eslint-plugin-cypress": "^2.12.1"
|
|
119
119
|
},
|
|
120
|
-
"gitHead": "
|
|
120
|
+
"gitHead": "b2ad61e11288f94f4fc73b4f74c049e70a77079a"
|
|
121
121
|
}
|
package/translations/en.json
CHANGED
|
@@ -1049,6 +1049,7 @@
|
|
|
1049
1049
|
"label.order_status_loading": "loading",
|
|
1050
1050
|
"label.order_status_packing": "packing",
|
|
1051
1051
|
"label.order_status_partial_return": "partial return",
|
|
1052
|
+
"label.order_status_partial_processing": "partial processing",
|
|
1052
1053
|
"label.order_status_pending": "pending",
|
|
1053
1054
|
"label.order_status_pending_approval": "pending approval",
|
|
1054
1055
|
"label.order_status_pending_cancel": "pending cancel",
|
package/translations/ko.json
CHANGED
|
@@ -1041,6 +1041,7 @@
|
|
|
1041
1041
|
"label.order_status_loading": "상차중",
|
|
1042
1042
|
"label.order_status_packing": "[ko] packing",
|
|
1043
1043
|
"label.order_status_partial_return": "부분 반환",
|
|
1044
|
+
"label.order_status_partial_processing": "부분 처리중",
|
|
1044
1045
|
"label.order_status_pending_approval": "승인 대기",
|
|
1045
1046
|
"label.order_status_pending_cancel": "취소 대기",
|
|
1046
1047
|
"label.order_status_pending_receive": "미수집",
|
package/translations/ms.json
CHANGED
|
@@ -1059,6 +1059,7 @@
|
|
|
1059
1059
|
"label.order_status_in_transit": "dalam perjalanan",
|
|
1060
1060
|
"label.order_status_inspecting": "disemak",
|
|
1061
1061
|
"label.order_status_intransit": "dalam perjalanan",
|
|
1062
|
+
"label.order_status_partial_processing": "sebahagian diproses",
|
|
1062
1063
|
"label.order_status_pending": "dalam penyediaan",
|
|
1063
1064
|
"label.order_status_pending_cancel": "pending dibatalkan",
|
|
1064
1065
|
"label.order_status_pending_receive": "pending diterima",
|
package/translations/zh.json
CHANGED
|
@@ -1076,6 +1076,7 @@
|
|
|
1076
1076
|
"label.order_status_loading": "装载中",
|
|
1077
1077
|
"label.order_status_packing": "包装中",
|
|
1078
1078
|
"label.order_status_partial_return": "部分退货",
|
|
1079
|
+
"label.order_status_partial_processing": "部分处理中",
|
|
1079
1080
|
"label.order_status_pending": "待处理",
|
|
1080
1081
|
"label.order_status_pending_approval": "待批准",
|
|
1081
1082
|
"label.order_status_pending_cancel": "待取消",
|