@things-factory/warehouse-base 8.0.0-beta.8 → 8.0.0
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/inventory/inventory-mutation.js +15 -4
- package/dist-server/service/inventory/inventory-mutation.js.map +1 -1
- package/dist-server/service/inventory/inventory-query.d.ts +2 -0
- package/dist-server/service/inventory/inventory-types.d.ts +4 -0
- package/dist-server/service/inventory/inventory-types.js +16 -0
- package/dist-server/service/inventory/inventory-types.js.map +1 -1
- package/dist-server/service/inventory/inventory.d.ts +2 -0
- package/dist-server/service/inventory/inventory.js +12 -0
- package/dist-server/service/inventory/inventory.js.map +1 -1
- package/dist-server/service/warehouse/warehouse-mutation.js +24 -0
- package/dist-server/service/warehouse/warehouse-mutation.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/server/constants/index.ts +5 -0
- package/server/constants/inventory.ts +67 -0
- package/server/constants/location.ts +14 -0
- package/server/constants/pallet.ts +10 -0
- package/server/constants/rule-type.ts +5 -0
- package/server/constants/tote.ts +5 -0
- package/server/controllers/ecommerce/ecommerce-controller.ts +108 -0
- package/server/controllers/ecommerce/index.ts +2 -0
- package/server/controllers/ecommerce/sellercraft-controller.ts +100 -0
- package/server/controllers/index.ts +2 -0
- package/server/controllers/warehouse-controller.ts +181 -0
- package/server/index.ts +9 -0
- package/server/middlewares/index.ts +0 -0
- package/server/migrations/index.ts +9 -0
- package/server/service/index.ts +80 -0
- package/server/service/inventory/index.ts +6 -0
- package/server/service/inventory/inventory-mutation.ts +530 -0
- package/server/service/inventory/inventory-query.ts +1259 -0
- package/server/service/inventory/inventory-types.ts +367 -0
- package/server/service/inventory/inventory.ts +408 -0
- package/server/service/inventory-change/index.ts +6 -0
- package/server/service/inventory-change/inventory-change-mutation.ts +969 -0
- package/server/service/inventory-change/inventory-change-query.ts +93 -0
- package/server/service/inventory-change/inventory-change-types.ts +36 -0
- package/server/service/inventory-change/inventory-change.ts +164 -0
- package/server/service/inventory-history/index.ts +6 -0
- package/server/service/inventory-history/inventory-history-mutation.ts +116 -0
- package/server/service/inventory-history/inventory-history-query.ts +1845 -0
- package/server/service/inventory-history/inventory-history-types.ts +444 -0
- package/server/service/inventory-history/inventory-history.ts +203 -0
- package/server/service/inventory-item/index.ts +6 -0
- package/server/service/inventory-item/inventory-item-mutation.ts +217 -0
- package/server/service/inventory-item/inventory-item-query.ts +226 -0
- package/server/service/inventory-item/inventory-item-type.ts +74 -0
- package/server/service/inventory-item/inventory-item.ts +105 -0
- package/server/service/inventory-item-change/index.ts +6 -0
- package/server/service/inventory-item-change/inventory-item-change-mutation.ts +119 -0
- package/server/service/inventory-item-change/inventory-item-change-query.ts +47 -0
- package/server/service/inventory-item-change/inventory-item-change-type.ts +68 -0
- package/server/service/inventory-item-change/inventory-item-change.ts +92 -0
- package/server/service/inventory-product/index.ts +6 -0
- package/server/service/inventory-product/inventory-product-mutation.ts +116 -0
- package/server/service/inventory-product/inventory-product-query.ts +47 -0
- package/server/service/inventory-product/inventory-product-type.ts +59 -0
- package/server/service/inventory-product/inventory-product.ts +88 -0
- package/server/service/location/index.ts +6 -0
- package/server/service/location/location-mutation.ts +134 -0
- package/server/service/location/location-query.ts +244 -0
- package/server/service/location/location-types.ts +173 -0
- package/server/service/location/location.ts +121 -0
- package/server/service/movement/index.ts +6 -0
- package/server/service/movement/movement-mutation.ts +60 -0
- package/server/service/movement/movement-query.ts +263 -0
- package/server/service/movement/movement-types.ts +74 -0
- package/server/service/movement/movement.ts +81 -0
- package/server/service/pallet/index.ts +6 -0
- package/server/service/pallet/pallet-mutation.ts +242 -0
- package/server/service/pallet/pallet-query.ts +106 -0
- package/server/service/pallet/pallet-types.ts +80 -0
- package/server/service/pallet/pallet.ts +92 -0
- package/server/service/pallet-count/index.ts +6 -0
- package/server/service/pallet-count/pallet-count-mutation.ts +151 -0
- package/server/service/pallet-count/pallet-count-query.ts +45 -0
- package/server/service/pallet-count/pallet-count-types.ts +36 -0
- package/server/service/pallet-count/pallet-count.ts +70 -0
- package/server/service/pallet-history/index.ts +6 -0
- package/server/service/pallet-history/pallet-history-mutation.ts +114 -0
- package/server/service/pallet-history/pallet-history-query.ts +48 -0
- package/server/service/pallet-history/pallet-history-types.ts +36 -0
- package/server/service/pallet-history/pallet-history.ts +89 -0
- package/server/service/reduced-inventory-history/index.ts +3 -0
- package/server/service/reduced-inventory-history/reduced-inventory-history.ts +92 -0
- package/server/service/tote/index.ts +6 -0
- package/server/service/tote/tote-mutation.ts +201 -0
- package/server/service/tote/tote-query.ts +106 -0
- package/server/service/tote/tote-types.ts +44 -0
- package/server/service/tote/tote.ts +77 -0
- package/server/service/warehouse/index.ts +6 -0
- package/server/service/warehouse/warehouse-mutation.ts +152 -0
- package/server/service/warehouse/warehouse-query.ts +58 -0
- package/server/service/warehouse/warehouse-types.ts +50 -0
- package/server/service/warehouse/warehouse.ts +95 -0
- package/server/utils/datetime-util.ts +54 -0
- package/server/utils/index.ts +3 -0
- package/server/utils/inventory-no-generator.ts +15 -0
- package/server/utils/inventory-util.ts +490 -0
|
@@ -0,0 +1,408 @@
|
|
|
1
|
+
import { Field, Float, ID, Int, ObjectType } from 'type-graphql'
|
|
2
|
+
import {
|
|
3
|
+
Column,
|
|
4
|
+
CreateDateColumn,
|
|
5
|
+
Entity,
|
|
6
|
+
Index,
|
|
7
|
+
ManyToOne,
|
|
8
|
+
OneToMany,
|
|
9
|
+
PrimaryGeneratedColumn,
|
|
10
|
+
RelationId,
|
|
11
|
+
UpdateDateColumn
|
|
12
|
+
} from 'typeorm'
|
|
13
|
+
|
|
14
|
+
import { User } from '@things-factory/auth-base'
|
|
15
|
+
import { Bizplace } from '@things-factory/biz-base'
|
|
16
|
+
import { Product, ProductDetail } from '@things-factory/product-base'
|
|
17
|
+
import { Domain, ScalarDate, roundTransformer } from '@things-factory/shell'
|
|
18
|
+
|
|
19
|
+
import { InventoryChange } from '../inventory-change/inventory-change'
|
|
20
|
+
import { InventoryItem } from '../inventory-item/inventory-item'
|
|
21
|
+
import { Location } from '../location/location'
|
|
22
|
+
import { Pallet } from '../pallet/pallet'
|
|
23
|
+
import { Warehouse } from '../warehouse/warehouse'
|
|
24
|
+
|
|
25
|
+
@Entity()
|
|
26
|
+
@Index('ix_inventory_0', (inventory: Inventory) => [inventory.domain, inventory.palletId], { unique: true })
|
|
27
|
+
@Index('inventories_product_id_and_status', (inventory: Inventory) => [inventory.product, inventory.status])
|
|
28
|
+
@ObjectType()
|
|
29
|
+
export class Inventory {
|
|
30
|
+
@PrimaryGeneratedColumn('uuid')
|
|
31
|
+
@Field(type => ID)
|
|
32
|
+
readonly id: string
|
|
33
|
+
|
|
34
|
+
@ManyToOne(type => Domain)
|
|
35
|
+
@Field(type => Domain)
|
|
36
|
+
domain: Domain
|
|
37
|
+
|
|
38
|
+
@RelationId((inventory: Inventory) => inventory.domain)
|
|
39
|
+
domainId: string
|
|
40
|
+
|
|
41
|
+
@ManyToOne(type => Bizplace, { nullable: true })
|
|
42
|
+
@Field(type => Bizplace, { nullable: true })
|
|
43
|
+
bizplace: Bizplace
|
|
44
|
+
|
|
45
|
+
@ManyToOne(type => Inventory)
|
|
46
|
+
@Field(type => Inventory)
|
|
47
|
+
refInventory: Inventory
|
|
48
|
+
|
|
49
|
+
@Column()
|
|
50
|
+
@Field()
|
|
51
|
+
name: string
|
|
52
|
+
|
|
53
|
+
@Column({ nullable: true })
|
|
54
|
+
@Field({ nullable: true })
|
|
55
|
+
palletId: string
|
|
56
|
+
|
|
57
|
+
@Column({ nullable: true })
|
|
58
|
+
@Field({ nullable: true })
|
|
59
|
+
cartonId: string
|
|
60
|
+
|
|
61
|
+
@Column({ nullable: true })
|
|
62
|
+
@Field({ nullable: true })
|
|
63
|
+
batchId: string
|
|
64
|
+
|
|
65
|
+
@Column({ nullable: true })
|
|
66
|
+
@Field({ nullable: true })
|
|
67
|
+
batchIdRef: string
|
|
68
|
+
|
|
69
|
+
@Column({ nullable: true })
|
|
70
|
+
@Field({ nullable: true })
|
|
71
|
+
refOrderId: string
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Expected: Putting ManyToOne relation with OrderProduct to find out unloaded inventories within unloading process
|
|
75
|
+
* Because if there's inventory which has same batch id with others but different product id
|
|
76
|
+
* then can't find out exact same inventory by batch id as a condition to find
|
|
77
|
+
*
|
|
78
|
+
* Problem: Because of circular dependency problem.
|
|
79
|
+
* OrderProduct entity comes from sales-base module and the module is looking for warehouse-base module
|
|
80
|
+
*
|
|
81
|
+
* Solution: Putting plain orderProductId field instead of ManyToOne relation for this release (2.2.0-beta)
|
|
82
|
+
*/
|
|
83
|
+
@Column({ nullable: true })
|
|
84
|
+
@Field({ nullable: true })
|
|
85
|
+
orderProductId: string
|
|
86
|
+
|
|
87
|
+
@Column({ nullable: true })
|
|
88
|
+
@Field({ nullable: true })
|
|
89
|
+
orderInventoryId: string
|
|
90
|
+
|
|
91
|
+
@Column({ nullable: true })
|
|
92
|
+
@Field({ nullable: true })
|
|
93
|
+
orderVasId: string
|
|
94
|
+
|
|
95
|
+
@ManyToOne(type => Pallet, { nullable: true })
|
|
96
|
+
@Field(type => Pallet, { nullable: true })
|
|
97
|
+
reusablePallet: Pallet
|
|
98
|
+
|
|
99
|
+
@ManyToOne(type => Product, { nullable: true })
|
|
100
|
+
@Field({ nullable: true })
|
|
101
|
+
product: Product
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* To be updated to remove nullable. once all process that links to inventory has been updated to use product detail instead of product
|
|
105
|
+
*/
|
|
106
|
+
@ManyToOne(type => ProductDetail, { nullable: true })
|
|
107
|
+
@Field({ nullable: true })
|
|
108
|
+
productDetail: ProductDetail
|
|
109
|
+
|
|
110
|
+
@ManyToOne(type => Warehouse, { nullable: true })
|
|
111
|
+
@Field(type => Warehouse, { nullable: true })
|
|
112
|
+
warehouse: Warehouse
|
|
113
|
+
|
|
114
|
+
@ManyToOne(type => Location)
|
|
115
|
+
@Field(type => Location, { nullable: true })
|
|
116
|
+
location: Location
|
|
117
|
+
|
|
118
|
+
@Column({ nullable: true })
|
|
119
|
+
@Field({ nullable: true })
|
|
120
|
+
zone: string
|
|
121
|
+
|
|
122
|
+
@Column('int', { nullable: true })
|
|
123
|
+
@Field({ nullable: true })
|
|
124
|
+
manufactureYear: number
|
|
125
|
+
|
|
126
|
+
@Column('date', { nullable: true })
|
|
127
|
+
@Field(type => ScalarDate, { nullable: true })
|
|
128
|
+
manufactureDate: Date
|
|
129
|
+
|
|
130
|
+
@Column('float', { nullable: true, transformer: roundTransformer })
|
|
131
|
+
@Field({ nullable: true })
|
|
132
|
+
costPrice: number
|
|
133
|
+
|
|
134
|
+
@Column('float', { nullable: true, transformer: roundTransformer })
|
|
135
|
+
@Field({ nullable: true })
|
|
136
|
+
sellPrice: number
|
|
137
|
+
|
|
138
|
+
@Column({ nullable: true })
|
|
139
|
+
@Field({ nullable: true })
|
|
140
|
+
packingType: string
|
|
141
|
+
|
|
142
|
+
@Column('float', { nullable: true, default: 1, transformer: roundTransformer })
|
|
143
|
+
@Field({ nullable: true })
|
|
144
|
+
packingSize: number
|
|
145
|
+
|
|
146
|
+
@Column({ nullable: true })
|
|
147
|
+
@Field({ nullable: true })
|
|
148
|
+
unit: string
|
|
149
|
+
|
|
150
|
+
@Column({ nullable: true })
|
|
151
|
+
@Field({ nullable: true })
|
|
152
|
+
uom: string
|
|
153
|
+
|
|
154
|
+
@Column('float', { nullable: true, transformer: roundTransformer })
|
|
155
|
+
@Field({ nullable: true })
|
|
156
|
+
uomValue: number
|
|
157
|
+
|
|
158
|
+
@Column('float', { nullable: true, transformer: roundTransformer })
|
|
159
|
+
@Field({ nullable: true })
|
|
160
|
+
lockedUomValue: number
|
|
161
|
+
|
|
162
|
+
@Column('float', { transformer: roundTransformer })
|
|
163
|
+
@Field({ nullable: true })
|
|
164
|
+
qty: number
|
|
165
|
+
|
|
166
|
+
@Column('float', { nullable: true, transformer: roundTransformer })
|
|
167
|
+
@Field({ nullable: true })
|
|
168
|
+
lockedQty: number
|
|
169
|
+
|
|
170
|
+
@Column('float', { nullable: true, transformer: roundTransformer })
|
|
171
|
+
@Field({ nullable: true })
|
|
172
|
+
unitCost: number
|
|
173
|
+
|
|
174
|
+
@Column({ default: 0 })
|
|
175
|
+
@Field()
|
|
176
|
+
lastSeq: number
|
|
177
|
+
|
|
178
|
+
@Column({ nullable: true })
|
|
179
|
+
@Field({ nullable: true })
|
|
180
|
+
description: string
|
|
181
|
+
|
|
182
|
+
@Column({ nullable: true })
|
|
183
|
+
@Field({ nullable: true })
|
|
184
|
+
status: string
|
|
185
|
+
|
|
186
|
+
@Column({ nullable: true })
|
|
187
|
+
@Field({ nullable: true })
|
|
188
|
+
otherRef: string
|
|
189
|
+
|
|
190
|
+
@Column({ nullable: true })
|
|
191
|
+
@Field({ nullable: true })
|
|
192
|
+
remark: string
|
|
193
|
+
|
|
194
|
+
@OneToMany(type => InventoryChange, inventoryChanges => inventoryChanges.inventory)
|
|
195
|
+
@Field(type => [InventoryChange], { nullable: true })
|
|
196
|
+
inventoryChanges: InventoryChange[]
|
|
197
|
+
|
|
198
|
+
@OneToMany(type => InventoryItem, inventoryItems => inventoryItems.inventory)
|
|
199
|
+
@Field(type => [InventoryItem], { nullable: true })
|
|
200
|
+
inventoryItems: InventoryItem[]
|
|
201
|
+
|
|
202
|
+
@Field({ nullable: true })
|
|
203
|
+
serialNumbers?: string
|
|
204
|
+
|
|
205
|
+
@Column('date', { nullable: true })
|
|
206
|
+
@Field(type => ScalarDate, { nullable: true })
|
|
207
|
+
expirationDate: Date
|
|
208
|
+
|
|
209
|
+
@Field({ nullable: true })
|
|
210
|
+
productId: string
|
|
211
|
+
|
|
212
|
+
@Field({ nullable: true })
|
|
213
|
+
productName: string
|
|
214
|
+
|
|
215
|
+
@Field({ nullable: true })
|
|
216
|
+
productSKU: string
|
|
217
|
+
|
|
218
|
+
@Field({ nullable: true })
|
|
219
|
+
productType: string
|
|
220
|
+
|
|
221
|
+
@Field({ nullable: true })
|
|
222
|
+
primaryValue: string
|
|
223
|
+
|
|
224
|
+
@Field({ nullable: true })
|
|
225
|
+
primaryUnit: string
|
|
226
|
+
|
|
227
|
+
@Field({ nullable: true })
|
|
228
|
+
auxUnit1: string
|
|
229
|
+
|
|
230
|
+
@Field({ nullable: true })
|
|
231
|
+
productBrand: string
|
|
232
|
+
|
|
233
|
+
@Column({ nullable: true, default: '' })
|
|
234
|
+
@Field({ nullable: true })
|
|
235
|
+
productColor?: string
|
|
236
|
+
|
|
237
|
+
@Column({ nullable: true, default: '' })
|
|
238
|
+
@Field({ nullable: true })
|
|
239
|
+
productQuality?: string
|
|
240
|
+
|
|
241
|
+
// 작업 구분
|
|
242
|
+
@Column({ nullable: true, default: '' })
|
|
243
|
+
@Field({ nullable: true })
|
|
244
|
+
workCategory?: string
|
|
245
|
+
|
|
246
|
+
// 제품 상태 (불량/반품)
|
|
247
|
+
@Column({ nullable: true, default: '' })
|
|
248
|
+
@Field({ nullable: true })
|
|
249
|
+
productStatus?: string
|
|
250
|
+
|
|
251
|
+
@Column({ nullable: true })
|
|
252
|
+
@Field({ nullable: true })
|
|
253
|
+
auxInfo1?: string
|
|
254
|
+
|
|
255
|
+
// 자호
|
|
256
|
+
@Column({ nullable: true })
|
|
257
|
+
@Field({ nullable: true })
|
|
258
|
+
auxInfo2?: string
|
|
259
|
+
|
|
260
|
+
@Column({ nullable: true })
|
|
261
|
+
@Field({ nullable: true })
|
|
262
|
+
auxInfo3?: string
|
|
263
|
+
|
|
264
|
+
@Field(type => Float, { nullable: true })
|
|
265
|
+
averageUnitCost: number
|
|
266
|
+
|
|
267
|
+
@Field(type => Float, { nullable: true })
|
|
268
|
+
remainQty: number
|
|
269
|
+
|
|
270
|
+
@Field(type => Int, { nullable: true })
|
|
271
|
+
nonLoadedQty: number
|
|
272
|
+
|
|
273
|
+
@Field(type => Float, { nullable: true })
|
|
274
|
+
nonLoadedUomValue: number
|
|
275
|
+
|
|
276
|
+
@Field({ nullable: true })
|
|
277
|
+
initialInboundAt: string
|
|
278
|
+
|
|
279
|
+
@ManyToOne(type => User, {
|
|
280
|
+
nullable: true
|
|
281
|
+
})
|
|
282
|
+
@Field({ nullable: true })
|
|
283
|
+
creator: User
|
|
284
|
+
|
|
285
|
+
@RelationId((inventory: Inventory) => inventory.creator)
|
|
286
|
+
creatorId: string
|
|
287
|
+
|
|
288
|
+
@ManyToOne(type => User, {
|
|
289
|
+
nullable: true
|
|
290
|
+
})
|
|
291
|
+
@Field({ nullable: true })
|
|
292
|
+
updater: User
|
|
293
|
+
|
|
294
|
+
@RelationId((inventory: Inventory) => inventory.updater)
|
|
295
|
+
updaterId: string
|
|
296
|
+
|
|
297
|
+
@CreateDateColumn()
|
|
298
|
+
@Field({ nullable: true })
|
|
299
|
+
createdAt: Date
|
|
300
|
+
|
|
301
|
+
@UpdateDateColumn()
|
|
302
|
+
@Field({ nullable: true })
|
|
303
|
+
updatedAt: Date
|
|
304
|
+
|
|
305
|
+
@Field({ nullable: true })
|
|
306
|
+
remainUomValueWithUom?: string
|
|
307
|
+
|
|
308
|
+
@Field({ nullable: true })
|
|
309
|
+
remainUomValue?: number
|
|
310
|
+
|
|
311
|
+
@Field({ nullable: true })
|
|
312
|
+
changeCount?: number
|
|
313
|
+
|
|
314
|
+
@Field({ nullable: true })
|
|
315
|
+
binLocation?: string
|
|
316
|
+
|
|
317
|
+
@Field({ nullable: true })
|
|
318
|
+
orderNo?: string
|
|
319
|
+
|
|
320
|
+
@Field({ nullable: true })
|
|
321
|
+
inventoryItemCount: number
|
|
322
|
+
|
|
323
|
+
@Field({ nullable: true })
|
|
324
|
+
availableQty: number
|
|
325
|
+
|
|
326
|
+
@Field({ nullable: true })
|
|
327
|
+
releaseQty: number
|
|
328
|
+
|
|
329
|
+
@Field({ nullable: true })
|
|
330
|
+
quarantineQty: number
|
|
331
|
+
|
|
332
|
+
@Field({ nullable: true })
|
|
333
|
+
reserveQty: number
|
|
334
|
+
|
|
335
|
+
@Field({ nullable: true })
|
|
336
|
+
warehouseQty: number
|
|
337
|
+
|
|
338
|
+
@Column({ nullable: true })
|
|
339
|
+
@Field({ nullable: true })
|
|
340
|
+
lot?: string
|
|
341
|
+
|
|
342
|
+
@Column({ nullable: true, comment: '기계 선별 여부', default: false })
|
|
343
|
+
@Field({ nullable: true })
|
|
344
|
+
isMachineFiltering?: boolean
|
|
345
|
+
|
|
346
|
+
@Column({ nullable: true, comment: '원산지' })
|
|
347
|
+
@Field({ nullable: true })
|
|
348
|
+
origin?: string
|
|
349
|
+
|
|
350
|
+
@ManyToOne(type => Inventory, { nullable: true })
|
|
351
|
+
@Field(type => Inventory, { nullable: true })
|
|
352
|
+
originInventory?: Inventory
|
|
353
|
+
|
|
354
|
+
@RelationId((inventory: Inventory) => inventory.originInventory)
|
|
355
|
+
originInventoryId?: string
|
|
356
|
+
|
|
357
|
+
constructor(obj?) {
|
|
358
|
+
if (obj) {
|
|
359
|
+
this.id = obj.inventory_id
|
|
360
|
+
this.bizplace = {
|
|
361
|
+
id: obj.bizplace_id,
|
|
362
|
+
name: obj.bizplace_name,
|
|
363
|
+
description: obj.bizplace_description
|
|
364
|
+
} as any
|
|
365
|
+
this.product = new Product(obj)
|
|
366
|
+
this.location = new Location(obj)
|
|
367
|
+
this.warehouse = new Warehouse(obj)
|
|
368
|
+
this.name = obj.inventory_name
|
|
369
|
+
this.palletId = obj.inventory_pallet_id
|
|
370
|
+
this.batchId = obj.inventory_batch_id
|
|
371
|
+
this.refOrderId = obj.inventory_ref_order_id
|
|
372
|
+
this.orderProductId = obj.inventory_order_product_id
|
|
373
|
+
this.zone = obj.inventory_zone
|
|
374
|
+
this.costPrice = obj.inventory_cost_price
|
|
375
|
+
this.sellPrice = obj.inventory_sell_price
|
|
376
|
+
this.packingType = obj.inventory_packing_type
|
|
377
|
+
this.unit = obj.inventory_unit
|
|
378
|
+
this.uom = obj.inventory_uom
|
|
379
|
+
this.uomValue = obj.inventory_uom_value
|
|
380
|
+
this.lockedUomValue = obj.inventory_locked_uom_value
|
|
381
|
+
this.qty = obj.inventory_qty
|
|
382
|
+
this.lockedQty = obj.inventory_locked_qty
|
|
383
|
+
this.lastSeq = obj.inventory_last_seq
|
|
384
|
+
this.description = obj.inventory_description
|
|
385
|
+
this.status = obj.inventory_status
|
|
386
|
+
this.otherRef = obj.inventory_other_ref
|
|
387
|
+
this.remark = obj.inventory_remark
|
|
388
|
+
this.createdAt = obj.inventory_created_at
|
|
389
|
+
this.updatedAt = obj.inventory_updated_at
|
|
390
|
+
this.expirationDate = obj.inventory_expiration_date
|
|
391
|
+
this.unitCost = obj.inventory_unit_cost
|
|
392
|
+
this.manufactureYear = obj.inventory_manufacture_year
|
|
393
|
+
this.manufactureDate = obj.inventory_manufacture_date
|
|
394
|
+
this.batchIdRef = obj.inventory_batch_id_ref
|
|
395
|
+
this.cartonId = obj.inventory_carton_id
|
|
396
|
+
this.packingSize = obj.inventory_packing_size
|
|
397
|
+
this.productColor = obj.inventory_product_color
|
|
398
|
+
this.productQuality = obj.inventory_product_quality
|
|
399
|
+
this.workCategory = obj.inventory_work_category
|
|
400
|
+
this.productStatus = obj.inventory_product_status
|
|
401
|
+
this.creatorId = obj.inventory_creator_id
|
|
402
|
+
this.updaterId = obj.inventory_updater_id
|
|
403
|
+
this.lot = obj.inventory_lot
|
|
404
|
+
this.isMachineFiltering = obj.is_machine_filtering
|
|
405
|
+
this.origin = obj.origin
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { InventoryChange } from './inventory-change'
|
|
2
|
+
import { InventoryChangeMutation } from './inventory-change-mutation'
|
|
3
|
+
import { InventoryChangeQuery } from './inventory-change-query'
|
|
4
|
+
|
|
5
|
+
export const entities = [InventoryChange]
|
|
6
|
+
export const resolvers = [InventoryChangeQuery, InventoryChangeMutation]
|