@things-factory/product-base 7.0.19 → 7.0.22

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": "7.0.19",
3
+ "version": "7.0.22",
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 -d ./server/migrations"
25
25
  },
26
26
  "dependencies": {
27
- "@things-factory/biz-base": "^7.0.19",
27
+ "@things-factory/biz-base": "^7.0.22",
28
28
  "@things-factory/env": "^7.0.14",
29
- "@things-factory/routing-base": "^7.0.19"
29
+ "@things-factory/routing-base": "^7.0.22"
30
30
  },
31
- "gitHead": "d12e0e75184c6d17e73f0a330a618a18a7e61d22"
31
+ "gitHead": "2482cabd0a609346f2dfb1c89316b72468dd33bf"
32
32
  }
@@ -212,6 +212,10 @@ export class NewProduct {
212
212
  // 경매입고
213
213
  @Field(type => Boolean, { nullable: true })
214
214
  isAuction?: boolean
215
+
216
+ // 출고유형
217
+ @Field({ nullable: true })
218
+ releaseType?: string
215
219
  }
216
220
 
217
221
  @ObjectType()
@@ -437,6 +441,10 @@ export class ProductPatch {
437
441
  @Field(type => Boolean, { nullable: true })
438
442
  isAuction?: boolean
439
443
 
444
+ // 출고유형
445
+ @Field({ nullable: true })
446
+ releaseType?: string
447
+
440
448
  @Field({ nullable: true })
441
449
  cuFlag?: string
442
450
  }
@@ -393,6 +393,10 @@ export class Product {
393
393
  @Field()
394
394
  pickingStrategy: pickStrategy
395
395
 
396
+ @Column({ nullable: true })
397
+ @Field({ nullable: true })
398
+ releaseType?: string
399
+
396
400
  @Field({ nullable: true })
397
401
  refCode: string
398
402