@things-factory/warehouse-base 7.1.30 → 7.1.33

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/warehouse-base",
3
- "version": "7.1.30",
3
+ "version": "7.1.33",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -24,12 +24,12 @@
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": "^7.1.24",
28
- "@things-factory/id-rule-base": "^7.1.24",
29
- "@things-factory/integration-sellercraft": "^7.1.30",
30
- "@things-factory/marketplace-base": "^7.1.30",
31
- "@things-factory/product-base": "^7.1.30",
32
- "@things-factory/setting-base": "^7.1.24"
27
+ "@things-factory/biz-base": "^7.1.33",
28
+ "@things-factory/id-rule-base": "^7.1.33",
29
+ "@things-factory/integration-sellercraft": "^7.1.33",
30
+ "@things-factory/marketplace-base": "^7.1.33",
31
+ "@things-factory/product-base": "^7.1.33",
32
+ "@things-factory/setting-base": "^7.1.33"
33
33
  },
34
- "gitHead": "1e985cc6d9db84862cbaf08363442e91e6ab10ba"
34
+ "gitHead": "da463a7d7851cf47c7d4b8136e7be6690b55969e"
35
35
  }
@@ -161,6 +161,9 @@ export class InventoryPatch {
161
161
  @Field({ nullable: true })
162
162
  lot?: string
163
163
 
164
+ @Field({ nullable: true })
165
+ isMachineFiltering?: boolean
166
+
164
167
  @Field(type => ObjectRef, { nullable: true })
165
168
  originInventory?: ObjectRef
166
169
  }
@@ -254,6 +257,9 @@ export class NewInventory {
254
257
  @Field({ nullable: true })
255
258
  lot?: string
256
259
 
260
+ @Field({ nullable: true })
261
+ isMachineFiltering?: boolean
262
+
257
263
  @Field(type => ObjectRef, { nullable: true })
258
264
  originInventory?: ObjectRef
259
265
  }
@@ -339,6 +339,10 @@ export class Inventory {
339
339
  @Field({ nullable: true })
340
340
  lot?: string
341
341
 
342
+ @Column({ nullable: true, comment: '기계 선별 여부', default: false })
343
+ @Field({ nullable: true })
344
+ isMachineFiltering?: boolean
345
+
342
346
  @ManyToOne(type => Inventory, { nullable: true })
343
347
  @Field(type => Inventory, { nullable: true })
344
348
  originInventory?: Inventory
@@ -393,6 +397,7 @@ export class Inventory {
393
397
  this.creatorId = obj.inventory_creator_id
394
398
  this.updaterId = obj.inventory_updater_id
395
399
  this.lot = obj.inventory_lot
400
+ this.isMachineFiltering = obj.is_machine_filtering
396
401
  }
397
402
  }
398
403
  }