@things-factory/product-ui 4.3.741 → 4.3.745
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.
- package/client/pages/product-list.js +15 -0
- package/package.json +9 -9
- package/translations/en.json +2 -1
- package/translations/ja.json +2 -1
- package/translations/ko.json +2 -1
- package/translations/ms.json +2 -1
- package/translations/zh.json +2 -1
|
@@ -451,6 +451,20 @@ class ProductList extends localize(i18next)(PageView) {
|
|
|
451
451
|
sortable: true,
|
|
452
452
|
width: 120
|
|
453
453
|
},
|
|
454
|
+
{
|
|
455
|
+
type: 'boolean',
|
|
456
|
+
name: 'isRequiredCheckManufactureDate',
|
|
457
|
+
header: i18next.t('field.required_checking_manufacture_date'),
|
|
458
|
+
record: { editable: true, align: 'center' },
|
|
459
|
+
imex: {
|
|
460
|
+
header: i18next.t('field.required_checking_manufacture_date'),
|
|
461
|
+
key: 'isRequiredCheckManufactureDate',
|
|
462
|
+
width: 30,
|
|
463
|
+
type: 'string'
|
|
464
|
+
},
|
|
465
|
+
sortable: true,
|
|
466
|
+
width: 120
|
|
467
|
+
},
|
|
454
468
|
{
|
|
455
469
|
type: 'boolean',
|
|
456
470
|
name: 'isRequireSerialNumberScanningInbound',
|
|
@@ -878,6 +892,7 @@ class ProductList extends localize(i18next)(PageView) {
|
|
|
878
892
|
outboundAlert
|
|
879
893
|
productShelfLife
|
|
880
894
|
isRequiredCheckExpiry
|
|
895
|
+
isRequiredCheckManufactureDate
|
|
881
896
|
isRequireSerialNumberScanning
|
|
882
897
|
isRequireSerialNumberScanningInbound
|
|
883
898
|
isRequireSerialNumberScanningOutbound
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/product-ui",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.745",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@things-factory/form-ui": "^4.3.
|
|
27
|
-
"@things-factory/grist-ui": "^4.3.
|
|
28
|
-
"@things-factory/i18n-base": "^4.3.
|
|
29
|
-
"@things-factory/import-ui": "^4.3.
|
|
30
|
-
"@things-factory/layout-base": "^4.3.
|
|
31
|
-
"@things-factory/product-base": "^4.3.
|
|
32
|
-
"@things-factory/shell": "^4.3.
|
|
26
|
+
"@things-factory/form-ui": "^4.3.743",
|
|
27
|
+
"@things-factory/grist-ui": "^4.3.743",
|
|
28
|
+
"@things-factory/i18n-base": "^4.3.743",
|
|
29
|
+
"@things-factory/import-ui": "^4.3.743",
|
|
30
|
+
"@things-factory/layout-base": "^4.3.743",
|
|
31
|
+
"@things-factory/product-base": "^4.3.745",
|
|
32
|
+
"@things-factory/shell": "^4.3.743"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "89c8b3c8c7ac589d4f547a984c1027a6f509671f"
|
|
35
35
|
}
|
package/translations/en.json
CHANGED
|
@@ -93,5 +93,6 @@
|
|
|
93
93
|
"title.product_bundle_setting": "product bundle setting",
|
|
94
94
|
"title.product_bundle": "product bundle",
|
|
95
95
|
"title.product_set": "product set",
|
|
96
|
-
"title.product": "product"
|
|
96
|
+
"title.product": "product",
|
|
97
|
+
"field.required_checking_manufacture_date": "required checking manufacture date"
|
|
97
98
|
}
|
package/translations/ja.json
CHANGED
|
@@ -85,5 +85,6 @@
|
|
|
85
85
|
"title.product": "[jp]product",
|
|
86
86
|
"field.child_product_detail": "[jp] child product detail",
|
|
87
87
|
"field.unit_cost": "[jp] unit cost",
|
|
88
|
-
"field.shelf_life": "[jp] shelf life"
|
|
88
|
+
"field.shelf_life": "[jp] shelf life",
|
|
89
|
+
"field.required_checking_manufacture_date": "[jp]required checking manufacture date"
|
|
89
90
|
}
|
package/translations/ko.json
CHANGED
|
@@ -90,5 +90,6 @@
|
|
|
90
90
|
"title.product": "[ko]product",
|
|
91
91
|
"field.child_product_detail": "[ko] child product detail",
|
|
92
92
|
"field.unit_cost": "[ko] unit cost",
|
|
93
|
-
"field.shelf_life": "[ko] shelf life"
|
|
93
|
+
"field.shelf_life": "[ko] shelf life",
|
|
94
|
+
"field.required_checking_manufacture_date": "[ko]required checking manufacture date"
|
|
94
95
|
}
|
package/translations/ms.json
CHANGED
|
@@ -90,5 +90,6 @@
|
|
|
90
90
|
"title.product": "[ms]product",
|
|
91
91
|
"field.child_product_detail": "[ms] child product detail",
|
|
92
92
|
"field.unit_cost": "[ms] unit cost",
|
|
93
|
-
"field.shelf_life": "[ms] shelf life"
|
|
93
|
+
"field.shelf_life": "[ms] shelf life",
|
|
94
|
+
"field.required_checking_manufacture_date": "[ms]required checking manufacture date"
|
|
94
95
|
}
|
package/translations/zh.json
CHANGED
|
@@ -90,5 +90,6 @@
|
|
|
90
90
|
"title.product": "[zh]product",
|
|
91
91
|
"field.child_product_detail": "[zh] child product detail",
|
|
92
92
|
"field.unit_cost": "[zh] unit cost",
|
|
93
|
-
"field.shelf_life": "[zh] shelf life"
|
|
93
|
+
"field.shelf_life": "[zh] shelf life",
|
|
94
|
+
"field.required_checking_manufacture_date": "[zh]required checking manufacture date"
|
|
94
95
|
}
|