@things-factory/product-base 8.0.69 → 8.0.71

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/product-base",
3
- "version": "8.0.69",
3
+ "version": "8.0.71",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -28,5 +28,5 @@
28
28
  "@things-factory/env": "^8.0.64",
29
29
  "@things-factory/routing-base": "^8.0.64"
30
30
  },
31
- "gitHead": "e28557e156cee7b63f9c247f9fb717c74afa6d0f"
31
+ "gitHead": "2529e0f8d04ab625251e1b877f2b726c110b57d4"
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