@things-factory/operato-wms 4.3.820 → 4.3.823
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.
|
@@ -240,10 +240,12 @@ class InventoryAdjustmentApproval extends connect(store)(localize(i18next)(PageV
|
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
242
|
|
|
243
|
+
const isTransfer = record.transactionType === 'TRANSFER'
|
|
243
244
|
recordDiff.push({
|
|
244
245
|
column: item.name,
|
|
245
246
|
current: currentVal || '[N/A]',
|
|
246
|
-
update:
|
|
247
|
+
update:
|
|
248
|
+
updatedVal != null && (isTransfer || currentVal != updatedVal) ? updatedVal : '[N/A]'
|
|
247
249
|
})
|
|
248
250
|
})
|
|
249
251
|
}
|
|
@@ -1878,6 +1878,13 @@ class CreateArrivalNotice extends localize(i18next)(PageView) {
|
|
|
1878
1878
|
},
|
|
1879
1879
|
...(this.enableDirectInbound
|
|
1880
1880
|
? [
|
|
1881
|
+
{
|
|
1882
|
+
type: 'date',
|
|
1883
|
+
name: 'expDate',
|
|
1884
|
+
header: i18next.t('field.exp_date'),
|
|
1885
|
+
imex: { header: i18next.t('field.exp_date'), key: 'expDate', width: 25, type: 'string' },
|
|
1886
|
+
width: 120
|
|
1887
|
+
},
|
|
1881
1888
|
{
|
|
1882
1889
|
type: 'object',
|
|
1883
1890
|
name: 'location',
|
|
@@ -1966,6 +1973,7 @@ class CreateArrivalNotice extends localize(i18next)(PageView) {
|
|
|
1966
1973
|
palletQty
|
|
1967
1974
|
palletId
|
|
1968
1975
|
manufactureDate
|
|
1976
|
+
expDate
|
|
1969
1977
|
batchId
|
|
1970
1978
|
batchIdRef
|
|
1971
1979
|
unitPrice
|
|
@@ -1992,6 +2000,7 @@ class CreateArrivalNotice extends localize(i18next)(PageView) {
|
|
|
1992
2000
|
primaryUnit
|
|
1993
2001
|
primaryValue
|
|
1994
2002
|
costPrice
|
|
2003
|
+
isRequiredCheckExpiry
|
|
1995
2004
|
}
|
|
1996
2005
|
productDetail {
|
|
1997
2006
|
id
|
|
@@ -508,10 +508,12 @@ class ReleaseOrderDetail extends connect(store)(localize(i18next)(PageView)) {
|
|
|
508
508
|
<label ?hidden="${!this._ownTransport}">${i18next.t('label.co_no')}</label>
|
|
509
509
|
<input name="collectionOrderNo" ?hidden="${!this._ownTransport}" ?readonly="${!this?._editable}" />
|
|
510
510
|
|
|
511
|
-
<label ?hidden="${this.roType === 'b2b'}"
|
|
511
|
+
<label ?hidden="${this.roType === 'b2b' && !this._beforeRemark}"
|
|
512
|
+
>${i18next.t('label.order_remark')}</label
|
|
513
|
+
>
|
|
512
514
|
<textarea
|
|
513
515
|
name="remark"
|
|
514
|
-
?hidden="${this.roType === 'b2b'}"
|
|
516
|
+
?hidden="${this.roType === 'b2b' && !this._beforeRemark}"
|
|
515
517
|
rows="5"
|
|
516
518
|
?readonly="${!this?._editable}"
|
|
517
519
|
></textarea>
|
|
@@ -1216,7 +1218,9 @@ class ReleaseOrderDetail extends connect(store)(localize(i18next)(PageView)) {
|
|
|
1216
1218
|
this.inventoryGristConfig = {
|
|
1217
1219
|
pagination: { infinite: true },
|
|
1218
1220
|
rows: { selectable: { multiple: true }, appendable: false },
|
|
1219
|
-
list: {
|
|
1221
|
+
list: {
|
|
1222
|
+
fields: ['sku', 'productName', 'batchId', 'invStatus', 'packingType', 'releaseQty', 'releaseUomValue', 'remark']
|
|
1223
|
+
},
|
|
1220
1224
|
columns: [
|
|
1221
1225
|
{ name: 'releaseUomValue', hidden: true },
|
|
1222
1226
|
{ name: 'remainUomValue', hidden: true },
|
|
@@ -1288,6 +1292,12 @@ class ReleaseOrderDetail extends connect(store)(localize(i18next)(PageView)) {
|
|
|
1288
1292
|
name: 'batchIdRef',
|
|
1289
1293
|
header: i18next.t('field.batch_no_ref'),
|
|
1290
1294
|
width: 100
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
type: 'string',
|
|
1298
|
+
name: 'remark',
|
|
1299
|
+
header: i18next.t('field.remark'),
|
|
1300
|
+
width: 200
|
|
1291
1301
|
}
|
|
1292
1302
|
]
|
|
1293
1303
|
}
|
|
@@ -1617,6 +1627,7 @@ class ReleaseOrderDetail extends connect(store)(localize(i18next)(PageView)) {
|
|
|
1617
1627
|
releaseQty
|
|
1618
1628
|
releaseUomValue
|
|
1619
1629
|
status
|
|
1630
|
+
remark
|
|
1620
1631
|
}
|
|
1621
1632
|
inventoryInfos {
|
|
1622
1633
|
id
|
|
@@ -1650,6 +1661,7 @@ class ReleaseOrderDetail extends connect(store)(localize(i18next)(PageView)) {
|
|
|
1650
1661
|
}
|
|
1651
1662
|
status
|
|
1652
1663
|
refWorksheetId
|
|
1664
|
+
remark
|
|
1653
1665
|
}
|
|
1654
1666
|
shippingOrderInfo {
|
|
1655
1667
|
id
|
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.823",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@things-factory/attachment-ui": "^4.3.815",
|
|
67
67
|
"@things-factory/auth-ui": "^4.3.815",
|
|
68
68
|
"@things-factory/barcode-ui": "^4.3.815",
|
|
69
|
-
"@things-factory/biz-ui": "^4.3.
|
|
69
|
+
"@things-factory/biz-ui": "^4.3.823",
|
|
70
70
|
"@things-factory/board-service": "^4.3.815",
|
|
71
71
|
"@things-factory/board-ui": "^4.3.815",
|
|
72
72
|
"@things-factory/code-ui": "^4.3.815",
|
|
@@ -81,17 +81,17 @@
|
|
|
81
81
|
"@things-factory/help": "^4.3.815",
|
|
82
82
|
"@things-factory/i18n-base": "^4.3.815",
|
|
83
83
|
"@things-factory/id-rule-base": "^4.3.815",
|
|
84
|
-
"@things-factory/import-ui": "^4.3.
|
|
85
|
-
"@things-factory/import-ui-excel": "^4.3.
|
|
84
|
+
"@things-factory/import-ui": "^4.3.823",
|
|
85
|
+
"@things-factory/import-ui-excel": "^4.3.823",
|
|
86
86
|
"@things-factory/menu-ui": "^4.3.815",
|
|
87
87
|
"@things-factory/more-ui": "^4.3.815",
|
|
88
88
|
"@things-factory/notification": "^4.3.815",
|
|
89
89
|
"@things-factory/pdf": "^4.3.815",
|
|
90
90
|
"@things-factory/print-proxy-service": "^4.3.815",
|
|
91
91
|
"@things-factory/print-ui": "^4.3.815",
|
|
92
|
-
"@things-factory/product-base": "^4.3.
|
|
93
|
-
"@things-factory/resource-ui": "^4.3.
|
|
94
|
-
"@things-factory/sales-ui": "^4.3.
|
|
92
|
+
"@things-factory/product-base": "^4.3.822",
|
|
93
|
+
"@things-factory/resource-ui": "^4.3.823",
|
|
94
|
+
"@things-factory/sales-ui": "^4.3.823",
|
|
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.819",
|
|
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.823",
|
|
111
|
+
"@things-factory/worksheet-base": "^4.3.823"
|
|
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": "701b5d8d38c9df8d482dc6dac012950c151b83b2"
|
|
121
121
|
}
|