@things-factory/operato-wms 4.3.815 → 4.3.816

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.
@@ -166,11 +166,11 @@ class BulkOperation extends localize(i18next)(PageView) {
166
166
 
167
167
  get _ganData() {
168
168
  let date =
169
- new Date().getDate().toString().padStart(2, '0') +
170
- '/' +
169
+ new Date().getFullYear() +
170
+ '-' +
171
171
  (new Date().getMonth() + 1).toString().padStart(2, '0') +
172
- '/' +
173
- new Date().getFullYear()
172
+ '-' +
173
+ new Date().getDate().toString().padStart(2, '0')
174
174
  return [
175
175
  {
176
176
  refNo: '',
@@ -193,7 +193,8 @@ class BulkOperation extends localize(i18next)(PageView) {
193
193
  packQty: 0,
194
194
  palletQty: 0,
195
195
  manufactureDate: '',
196
- unitPrice: ''
196
+ unitPrice: '',
197
+ itemRemark: ''
197
198
  }
198
199
  ]
199
200
  }
@@ -544,6 +545,7 @@ class BulkOperation extends localize(i18next)(PageView) {
544
545
  palletQty: parseInt(raw.palletQty || 0),
545
546
  palletId: String(raw.lotId || ''),
546
547
  unitPrice: raw.unitPrice,
548
+ itemRemark: raw.itemRemark ? String(raw.itemRemark) : null,
547
549
  manufactureDate: Number.isInteger(raw.manufactureDate)
548
550
  ? raw.manufactureDate.toString()
549
551
  : raw.manufactureDate,
@@ -219,6 +219,12 @@ class ValidateGanPopup extends localize(i18next)(LitElement) {
219
219
  header: i18next.t('field.unit_price'),
220
220
  width: 100
221
221
  },
222
+ {
223
+ type: 'string',
224
+ name: 'itemRemark',
225
+ header: i18next.t('field.item_remark'),
226
+ width: 200
227
+ },
222
228
  {
223
229
  type: 'string',
224
230
  name: 'manufactureDate',
@@ -323,6 +329,7 @@ class ValidateGanPopup extends localize(i18next)(LitElement) {
323
329
  palletQty
324
330
  palletId
325
331
  unitPrice
332
+ itemRemark
326
333
  manufactureDate
327
334
  errorMsg
328
335
  }
@@ -377,6 +384,7 @@ class ValidateGanPopup extends localize(i18next)(LitElement) {
377
384
  palletQty: raw.palletQty,
378
385
  palletId: raw.palletId,
379
386
  unitPrice: parseFloat(raw.unitPrice),
387
+ itemRemark: raw.itemRemark,
380
388
  manufactureDate: raw.manufactureDate
381
389
  }
382
390
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-wms",
3
- "version": "4.3.815",
3
+ "version": "4.3.816",
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.815",
94
+ "@things-factory/sales-ui": "^4.3.816",
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",
@@ -108,7 +108,7 @@
108
108
  "@things-factory/transport-base": "^4.3.815",
109
109
  "@things-factory/tutorial-ui": "^4.3.815",
110
110
  "@things-factory/warehouse-base": "^4.3.815",
111
- "@things-factory/worksheet-base": "^4.3.815"
111
+ "@things-factory/worksheet-base": "^4.3.816"
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": "e44c5a15e2b5495997bb929f5dfc80622a326c5e"
120
+ "gitHead": "a8de177d8e01a3d7fb6af50656a9c1430fd9bdc3"
121
121
  }
@@ -782,6 +782,7 @@
782
782
  "field.unit_gross_weight": "unit gross weight",
783
783
  "field.unit_nett_weight": "unit nett weight",
784
784
  "field.unit_price": "unit price",
785
+ "field.item_remark": "item remark",
785
786
  "field.unit_uom_value": "unit uom value",
786
787
  "field.unit_value": "unit value",
787
788
  "field.unit_volume": "unit volume",
@@ -766,6 +766,7 @@
766
766
  "field.type": "유형",
767
767
  "field.unassigned_qty": "[ko] unassigned qty",
768
768
  "field.unit_price": "단위 가격",
769
+ "field.item_remark": "항목 비고",
769
770
  "field.unit_value": "단위 값",
770
771
  "field.unit_volume": "[ko]unit volume",
771
772
  "field.unit": "단위",
@@ -806,6 +806,7 @@
806
806
  "field.unit_gross_weight": "unit berat kasar",
807
807
  "field.unit_nett_weight": "unit berat nett",
808
808
  "field.unit_price": "unit harga",
809
+ "field.item_remark": "catatan item",
809
810
  "field.unit_uom_value": "nilai uom unit",
810
811
  "field.unit_value": "nilai unit",
811
812
  "field.unit_volume": "unit volume",
@@ -811,6 +811,7 @@
811
811
  "field.unit_gross_weight": "单位毛重",
812
812
  "field.unit_nett_weight": "单位净重",
813
813
  "field.unit_price": "单价",
814
+ "field.item_remark": "项目备注",
814
815
  "field.unit_uom_value": "单位单位值",
815
816
  "field.unit_value": "单位值",
816
817
  "field.unit_volume": "单位体积",