@things-factory/operato-wms 4.3.817 → 4.3.818
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.
|
@@ -437,7 +437,7 @@ class ValidateGanPopup extends localize(i18next)(LitElement) {
|
|
|
437
437
|
//make sure no batchId and sku pair is duplicated in the same gan
|
|
438
438
|
let batchSkuPairs = this.records
|
|
439
439
|
.filter(item => item.batchId !== null && item.sku !== null) // Filter out items with null batchId or sku
|
|
440
|
-
.map(item => `${item.batchId.toLowerCase()}-${item.sku
|
|
440
|
+
.map(item => `${item.batchId.toLowerCase()}-${item.sku}-${item.refNo.toLowerCase()}`) // Create a combined key of batchId and sku
|
|
441
441
|
|
|
442
442
|
let uniqueBatchSkuPairs = new Set(batchSkuPairs)
|
|
443
443
|
if (uniqueBatchSkuPairs.size !== batchSkuPairs.length) {
|
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.818",
|
|
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.815",
|
|
92
92
|
"@things-factory/product-base": "^4.3.815",
|
|
93
93
|
"@things-factory/resource-ui": "^4.3.815",
|
|
94
|
-
"@things-factory/sales-ui": "^4.3.
|
|
94
|
+
"@things-factory/sales-ui": "^4.3.818",
|
|
95
95
|
"@things-factory/scene-data-transform": "^4.3.815",
|
|
96
96
|
"@things-factory/scene-excel": "^4.3.815",
|
|
97
97
|
"@things-factory/scene-firebase": "^4.3.815",
|
|
@@ -107,8 +107,8 @@
|
|
|
107
107
|
"@things-factory/system-ui": "^4.3.815",
|
|
108
108
|
"@things-factory/transport-base": "^4.3.815",
|
|
109
109
|
"@things-factory/tutorial-ui": "^4.3.815",
|
|
110
|
-
"@things-factory/warehouse-base": "^4.3.
|
|
111
|
-
"@things-factory/worksheet-base": "^4.3.
|
|
110
|
+
"@things-factory/warehouse-base": "^4.3.818",
|
|
111
|
+
"@things-factory/worksheet-base": "^4.3.818"
|
|
112
112
|
},
|
|
113
113
|
"devDependencies": {
|
|
114
114
|
"@things-factory/builder": "^4.3.815",
|
|
@@ -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": "68f211abfcbc53a014e9ad11d536680b2b86c250"
|
|
121
121
|
}
|