@things-factory/operato-wms 4.3.670 → 4.3.673
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.
|
@@ -221,6 +221,7 @@ class BulkOperation extends localize(i18next)(PageView) {
|
|
|
221
221
|
state: '',
|
|
222
222
|
country: '',
|
|
223
223
|
phone1: '',
|
|
224
|
+
batchId: '',
|
|
224
225
|
sku: '',
|
|
225
226
|
packingType: '',
|
|
226
227
|
packingSize: 0,
|
|
@@ -234,7 +235,13 @@ class BulkOperation extends localize(i18next)(PageView) {
|
|
|
234
235
|
billingPostalCode: '',
|
|
235
236
|
billingCountry: '',
|
|
236
237
|
billingState: '',
|
|
237
|
-
billingCity: ''
|
|
238
|
+
billingCity: '',
|
|
239
|
+
expirationDate:
|
|
240
|
+
new Date().getDate().toString().padStart(2, '0') +
|
|
241
|
+
'/' +
|
|
242
|
+
(new Date().getMonth() + 1).toString().padStart(2, '0') +
|
|
243
|
+
'/' +
|
|
244
|
+
new Date().getFullYear()
|
|
238
245
|
}
|
|
239
246
|
]
|
|
240
247
|
}
|
|
@@ -580,6 +587,8 @@ class BulkOperation extends localize(i18next)(PageView) {
|
|
|
580
587
|
city: String(record.city || ''),
|
|
581
588
|
state: String(record.state || ''),
|
|
582
589
|
country: String(record.country || ''),
|
|
590
|
+
batchId: String(record.batchId || ''),
|
|
591
|
+
cartonId: String(record.cartonId || ''),
|
|
583
592
|
sku: String(record.sku || ''),
|
|
584
593
|
productId: String(record.productId || ''),
|
|
585
594
|
productDetailId: String(record.productDetailId || ''),
|
|
@@ -598,7 +607,10 @@ class BulkOperation extends localize(i18next)(PageView) {
|
|
|
598
607
|
billingPostalCode: String(record.billingPostalCode || ''),
|
|
599
608
|
billingCountry: String(record.billingCountry || ''),
|
|
600
609
|
billingState: String(record.billingState || ''),
|
|
601
|
-
billingCity: String(record.billingCity || '')
|
|
610
|
+
billingCity: String(record.billingCity || ''),
|
|
611
|
+
expirationDate: Number.isInteger(record.expirationDate)
|
|
612
|
+
? record.expirationDate.toString()
|
|
613
|
+
: record.expirationDate
|
|
602
614
|
}
|
|
603
615
|
})}
|
|
604
616
|
.bizplaceId=${this._roBizplaceId}
|
|
@@ -238,7 +238,6 @@ class ValidateRoPopup extends localize(i18next)(LitElement) {
|
|
|
238
238
|
header: i18next.t('field.country'),
|
|
239
239
|
width: 150
|
|
240
240
|
},
|
|
241
|
-
,
|
|
242
241
|
{
|
|
243
242
|
type: 'string',
|
|
244
243
|
name: 'sku',
|
|
@@ -257,6 +256,18 @@ class ValidateRoPopup extends localize(i18next)(LitElement) {
|
|
|
257
256
|
header: i18next.t('field.batch_no'),
|
|
258
257
|
width: 150
|
|
259
258
|
},
|
|
259
|
+
{
|
|
260
|
+
type: 'string',
|
|
261
|
+
name: 'cartonId',
|
|
262
|
+
header: i18next.t('field.carton_id'),
|
|
263
|
+
width: 150
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
type: 'string',
|
|
267
|
+
name: 'expirationDate',
|
|
268
|
+
header: i18next.t('field.expiry_date'),
|
|
269
|
+
width: 150
|
|
270
|
+
},
|
|
260
271
|
{
|
|
261
272
|
type: 'float',
|
|
262
273
|
name: 'releaseQty',
|
|
@@ -375,6 +386,8 @@ class ValidateRoPopup extends localize(i18next)(LitElement) {
|
|
|
375
386
|
productId
|
|
376
387
|
productInfo
|
|
377
388
|
batchId
|
|
389
|
+
expirationDate
|
|
390
|
+
cartonId
|
|
378
391
|
packingType
|
|
379
392
|
packingSize
|
|
380
393
|
uom
|
|
@@ -442,7 +455,10 @@ class ValidateRoPopup extends localize(i18next)(LitElement) {
|
|
|
442
455
|
releaseQty: x.releaseQty,
|
|
443
456
|
postalCode: String(x.postalCode),
|
|
444
457
|
phone1: String(x.phone1),
|
|
445
|
-
exportOption: false
|
|
458
|
+
exportOption: false,
|
|
459
|
+
expirationDate: x?.expirationDate ? x.expirationDate : null,
|
|
460
|
+
batchId: x?.batchId ? x.batchId : null,
|
|
461
|
+
cartonId: x?.cartonId ? x.cartonId : null
|
|
446
462
|
}
|
|
447
463
|
}),
|
|
448
464
|
bizplaceId: this.bizplaceId
|
package/config.development.js
CHANGED
|
@@ -4,8 +4,15 @@ module.exports = {
|
|
|
4
4
|
useVirtualHostBasedDomain: false,
|
|
5
5
|
fallbackRoute: '/',
|
|
6
6
|
subdomainOffset: 2,
|
|
7
|
-
port:
|
|
7
|
+
port: 4000,
|
|
8
8
|
inspect: '9330',
|
|
9
|
+
storage: {
|
|
10
|
+
type: 's3',
|
|
11
|
+
accessKeyId: 'AKIAUQEOPWEJHCE4MTH4',
|
|
12
|
+
secretAccessKey: 'HkQ1engoFOhduKltXF4j6OakRmLY/9JhvyTWbc8b',
|
|
13
|
+
bucketName: 'opa-one',
|
|
14
|
+
region: 'ap-southeast-1'
|
|
15
|
+
},
|
|
9
16
|
ormconfig: {
|
|
10
17
|
name: 'default',
|
|
11
18
|
type: 'postgres',
|
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.673",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -62,53 +62,53 @@
|
|
|
62
62
|
"@operato/scene-tab": "^0.1.8",
|
|
63
63
|
"@operato/scene-table": "^0.1.8",
|
|
64
64
|
"@operato/scene-wheel-sorter": "^0.1.8",
|
|
65
|
-
"@things-factory/apptool-ui": "^4.3.
|
|
66
|
-
"@things-factory/attachment-ui": "^4.3.
|
|
67
|
-
"@things-factory/auth-ui": "^4.3.
|
|
68
|
-
"@things-factory/barcode-ui": "^4.3.
|
|
69
|
-
"@things-factory/biz-ui": "^4.3.
|
|
70
|
-
"@things-factory/board-service": "^4.3.
|
|
71
|
-
"@things-factory/board-ui": "^4.3.
|
|
72
|
-
"@things-factory/code-ui": "^4.3.
|
|
73
|
-
"@things-factory/context-ui": "^4.3.
|
|
74
|
-
"@things-factory/export-ui": "^4.3.
|
|
75
|
-
"@things-factory/export-ui-csv": "^4.3.
|
|
76
|
-
"@things-factory/export-ui-excel": "^4.3.
|
|
77
|
-
"@things-factory/fav-base": "^4.3.
|
|
78
|
-
"@things-factory/form-ui": "^4.3.
|
|
79
|
-
"@things-factory/geography": "^4.3.
|
|
80
|
-
"@things-factory/grist-ui": "^4.3.
|
|
81
|
-
"@things-factory/help": "^4.3.
|
|
82
|
-
"@things-factory/i18n-base": "^4.3.
|
|
83
|
-
"@things-factory/id-rule-base": "^4.3.
|
|
84
|
-
"@things-factory/import-ui": "^4.3.
|
|
85
|
-
"@things-factory/import-ui-excel": "^4.3.
|
|
86
|
-
"@things-factory/menu-ui": "^4.3.
|
|
87
|
-
"@things-factory/more-ui": "^4.3.
|
|
88
|
-
"@things-factory/notification": "^4.3.
|
|
65
|
+
"@things-factory/apptool-ui": "^4.3.673",
|
|
66
|
+
"@things-factory/attachment-ui": "^4.3.673",
|
|
67
|
+
"@things-factory/auth-ui": "^4.3.673",
|
|
68
|
+
"@things-factory/barcode-ui": "^4.3.673",
|
|
69
|
+
"@things-factory/biz-ui": "^4.3.673",
|
|
70
|
+
"@things-factory/board-service": "^4.3.673",
|
|
71
|
+
"@things-factory/board-ui": "^4.3.673",
|
|
72
|
+
"@things-factory/code-ui": "^4.3.673",
|
|
73
|
+
"@things-factory/context-ui": "^4.3.673",
|
|
74
|
+
"@things-factory/export-ui": "^4.3.673",
|
|
75
|
+
"@things-factory/export-ui-csv": "^4.3.673",
|
|
76
|
+
"@things-factory/export-ui-excel": "^4.3.673",
|
|
77
|
+
"@things-factory/fav-base": "^4.3.673",
|
|
78
|
+
"@things-factory/form-ui": "^4.3.673",
|
|
79
|
+
"@things-factory/geography": "^4.3.673",
|
|
80
|
+
"@things-factory/grist-ui": "^4.3.673",
|
|
81
|
+
"@things-factory/help": "^4.3.673",
|
|
82
|
+
"@things-factory/i18n-base": "^4.3.673",
|
|
83
|
+
"@things-factory/id-rule-base": "^4.3.673",
|
|
84
|
+
"@things-factory/import-ui": "^4.3.673",
|
|
85
|
+
"@things-factory/import-ui-excel": "^4.3.673",
|
|
86
|
+
"@things-factory/menu-ui": "^4.3.673",
|
|
87
|
+
"@things-factory/more-ui": "^4.3.673",
|
|
88
|
+
"@things-factory/notification": "^4.3.673",
|
|
89
89
|
"@things-factory/pdf": "^4.3.591",
|
|
90
|
-
"@things-factory/print-proxy-service": "^4.3.
|
|
91
|
-
"@things-factory/print-ui": "^4.3.
|
|
92
|
-
"@things-factory/product-base": "^4.3.
|
|
93
|
-
"@things-factory/resource-ui": "^4.3.
|
|
94
|
-
"@things-factory/sales-ui": "^4.3.
|
|
90
|
+
"@things-factory/print-proxy-service": "^4.3.673",
|
|
91
|
+
"@things-factory/print-ui": "^4.3.673",
|
|
92
|
+
"@things-factory/product-base": "^4.3.673",
|
|
93
|
+
"@things-factory/resource-ui": "^4.3.673",
|
|
94
|
+
"@things-factory/sales-ui": "^4.3.673",
|
|
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",
|
|
98
98
|
"@things-factory/scene-form": "^4.3.591",
|
|
99
99
|
"@things-factory/scene-google-map": "^4.3.591",
|
|
100
100
|
"@things-factory/scene-graphql": "^4.3.591",
|
|
101
|
-
"@things-factory/scene-label": "^4.3.
|
|
101
|
+
"@things-factory/scene-label": "^4.3.673",
|
|
102
102
|
"@things-factory/scene-marker": "^4.3.591",
|
|
103
103
|
"@things-factory/scene-mqtt": "^4.3.591",
|
|
104
104
|
"@things-factory/scene-restful": "^4.3.591",
|
|
105
105
|
"@things-factory/scene-visualizer": "^4.3.591",
|
|
106
|
-
"@things-factory/setting-ui": "^4.3.
|
|
107
|
-
"@things-factory/system-ui": "^4.3.
|
|
108
|
-
"@things-factory/transport-base": "^4.3.
|
|
109
|
-
"@things-factory/tutorial-ui": "^4.3.
|
|
110
|
-
"@things-factory/warehouse-base": "^4.3.
|
|
111
|
-
"@things-factory/worksheet-base": "^4.3.
|
|
106
|
+
"@things-factory/setting-ui": "^4.3.673",
|
|
107
|
+
"@things-factory/system-ui": "^4.3.673",
|
|
108
|
+
"@things-factory/transport-base": "^4.3.673",
|
|
109
|
+
"@things-factory/tutorial-ui": "^4.3.673",
|
|
110
|
+
"@things-factory/warehouse-base": "^4.3.673",
|
|
111
|
+
"@things-factory/worksheet-base": "^4.3.673"
|
|
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": "d22f985380f3af2ebc0f81ea8bec478ba00b4777"
|
|
121
121
|
}
|