@things-factory/product-base 8.0.69 → 8.0.74
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/dist-server/service/product/product-types.d.ts +2 -0
- package/dist-server/service/product/product-types.js +8 -0
- package/dist-server/service/product/product-types.js.map +1 -1
- package/dist-server/service/product/product.d.ts +1 -0
- package/dist-server/service/product/product.js +5 -0
- package/dist-server/service/product/product.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/server/service/product/product-types.ts +6 -0
- package/server/service/product/product.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/product-base",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.74",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create ./server/migrations/migration"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@things-factory/biz-base": "^8.0.
|
|
27
|
+
"@things-factory/biz-base": "^8.0.74",
|
|
28
28
|
"@things-factory/env": "^8.0.64",
|
|
29
|
-
"@things-factory/routing-base": "^8.0.
|
|
29
|
+
"@things-factory/routing-base": "^8.0.74"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "52ffc383d8baed71dd99a2bc85f4253b3fe69977"
|
|
32
32
|
}
|
|
@@ -235,6 +235,9 @@ export class NewProduct {
|
|
|
235
235
|
|
|
236
236
|
@Field({ nullable: true })
|
|
237
237
|
costCurrency?: string
|
|
238
|
+
|
|
239
|
+
@Field({ nullable: true })
|
|
240
|
+
defaultPrintUomUnit?: string
|
|
238
241
|
}
|
|
239
242
|
|
|
240
243
|
@ObjectType()
|
|
@@ -483,6 +486,9 @@ export class ProductPatch {
|
|
|
483
486
|
@Field({ nullable: true })
|
|
484
487
|
costCurrency?: string
|
|
485
488
|
|
|
489
|
+
@Field({ nullable: true })
|
|
490
|
+
defaultPrintUomUnit?: string
|
|
491
|
+
|
|
486
492
|
@Field({ nullable: true })
|
|
487
493
|
cuFlag?: string
|
|
488
494
|
}
|
|
@@ -410,6 +410,10 @@ export class Product {
|
|
|
410
410
|
@Field({ nullable: true })
|
|
411
411
|
isRequireSerialNumberScanningOutbound: boolean
|
|
412
412
|
|
|
413
|
+
@Column({ nullable: true, comment: '출력용 규격 기본값' })
|
|
414
|
+
@Field({ nullable: true })
|
|
415
|
+
defaultPrintUomUnit?: string
|
|
416
|
+
|
|
413
417
|
@Column({ nullable: true })
|
|
414
418
|
@Field({ nullable: true })
|
|
415
419
|
deletedAt: Date
|