@things-factory/sales-base 8.0.0-beta.9 → 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/tsconfig.tsbuildinfo +1 -1
- package/package.json +13 -13
- package/server/constants/attachment-type.ts +9 -0
- package/server/constants/index.ts +7 -0
- package/server/constants/load-type.ts +4 -0
- package/server/constants/order.ts +203 -0
- package/server/constants/product-group-type.ts +4 -0
- package/server/constants/release-good.ts +9 -0
- package/server/constants/transfer-order-type.ts +6 -0
- package/server/constants/validation-error-code.ts +3 -0
- package/server/constants/vas-target-type.ts +25 -0
- package/server/controllers/ecommerce/ecommerce-controller.ts +122 -0
- package/server/controllers/ecommerce/index.ts +2 -0
- package/server/controllers/ecommerce/sellercraft-controller.ts +182 -0
- package/server/controllers/index.ts +2 -0
- package/server/controllers/order-controller.ts +296 -0
- package/server/errors/index.ts +1 -0
- package/server/errors/validation-error.ts +25 -0
- package/server/index.ts +5 -0
- package/server/migrations/index.ts +9 -0
- package/server/service/arrival-notice/arrival-notice-mutation.ts +1152 -0
- package/server/service/arrival-notice/arrival-notice-query.ts +549 -0
- package/server/service/arrival-notice/arrival-notice-types.ts +310 -0
- package/server/service/arrival-notice/arrival-notice.ts +202 -0
- package/server/service/arrival-notice/index.ts +9 -0
- package/server/service/claim/claim-mutation.ts +308 -0
- package/server/service/claim/claim-query.ts +122 -0
- package/server/service/claim/claim-types.ts +130 -0
- package/server/service/claim/claim.ts +140 -0
- package/server/service/claim/index.ts +9 -0
- package/server/service/claim-detail/claim-detail-mutation.ts +102 -0
- package/server/service/claim-detail/claim-detail-query.ts +55 -0
- package/server/service/claim-detail/claim-detail-types.ts +47 -0
- package/server/service/claim-detail/claim-detail.ts +69 -0
- package/server/service/claim-detail/index.ts +9 -0
- package/server/service/claim-order/claim-order-mutation.ts +101 -0
- package/server/service/claim-order/claim-order-query.ts +47 -0
- package/server/service/claim-order/claim-order-types.ts +35 -0
- package/server/service/claim-order/claim-order.ts +81 -0
- package/server/service/claim-order/index.ts +9 -0
- package/server/service/collection-order/collection-order-mutation.ts +245 -0
- package/server/service/collection-order/collection-order-query.ts +97 -0
- package/server/service/collection-order/collection-order-types.ts +165 -0
- package/server/service/collection-order/collection-order.ts +135 -0
- package/server/service/collection-order/index.ts +9 -0
- package/server/service/delivery-order/delivery-order-mutation.ts +967 -0
- package/server/service/delivery-order/delivery-order-query.ts +631 -0
- package/server/service/delivery-order/delivery-order-types.ts +268 -0
- package/server/service/delivery-order/delivery-order.ts +258 -0
- package/server/service/delivery-order/index.ts +9 -0
- package/server/service/draft-release-good/draft-release-good-mutation.ts +765 -0
- package/server/service/draft-release-good/draft-release-good-query.ts +354 -0
- package/server/service/draft-release-good/draft-release-good-type.ts +261 -0
- package/server/service/draft-release-good/draft-release-good.ts +284 -0
- package/server/service/draft-release-good/index.ts +9 -0
- package/server/service/goods-receival-note/goods-receival-note-mutation.ts +129 -0
- package/server/service/goods-receival-note/goods-receival-note-query.ts +280 -0
- package/server/service/goods-receival-note/goods-receival-note-types.ts +105 -0
- package/server/service/goods-receival-note/goods-receival-note.ts +127 -0
- package/server/service/goods-receival-note/index.ts +9 -0
- package/server/service/index.ts +238 -0
- package/server/service/inventory-check/index.ts +9 -0
- package/server/service/inventory-check/inventory-check-mutation.ts +149 -0
- package/server/service/inventory-check/inventory-check-query.ts +48 -0
- package/server/service/inventory-check/inventory-check-types.ts +48 -0
- package/server/service/inventory-check/inventory-check.ts +90 -0
- package/server/service/invoice/index.ts +9 -0
- package/server/service/invoice/invoice-mutation.ts +95 -0
- package/server/service/invoice/invoice-query.ts +53 -0
- package/server/service/invoice/invoice-types.ts +279 -0
- package/server/service/invoice/invoice.ts +230 -0
- package/server/service/invoice-product/index.ts +9 -0
- package/server/service/invoice-product/invoice-product-mutation.ts +54 -0
- package/server/service/invoice-product/invoice-product-query.ts +54 -0
- package/server/service/invoice-product/invoice-product-types.ts +84 -0
- package/server/service/invoice-product/invoice-product.ts +92 -0
- package/server/service/job-sheet/index.ts +9 -0
- package/server/service/job-sheet/job-sheet-mutation.ts +92 -0
- package/server/service/job-sheet/job-sheet-query.ts +112 -0
- package/server/service/job-sheet/job-sheet-types.ts +78 -0
- package/server/service/job-sheet/job-sheet.ts +102 -0
- package/server/service/manifest/index.ts +6 -0
- package/server/service/manifest/manifest-mutation.ts +190 -0
- package/server/service/manifest/manifest-query.ts +149 -0
- package/server/service/manifest/manifest-type.ts +84 -0
- package/server/service/manifest/manifest.ts +114 -0
- package/server/service/order-inventory/index.ts +9 -0
- package/server/service/order-inventory/order-inventory-mutation.ts +54 -0
- package/server/service/order-inventory/order-inventory-query.ts +722 -0
- package/server/service/order-inventory/order-inventory-types.ts +238 -0
- package/server/service/order-inventory/order-inventory.ts +401 -0
- package/server/service/order-product/index.ts +9 -0
- package/server/service/order-product/order-product-mutation.ts +48 -0
- package/server/service/order-product/order-product-query.ts +89 -0
- package/server/service/order-product/order-product-types.ts +335 -0
- package/server/service/order-product/order-product.ts +362 -0
- package/server/service/order-tote/index.ts +9 -0
- package/server/service/order-tote/order-tote-mutation.ts +31 -0
- package/server/service/order-tote/order-tote-query.ts +112 -0
- package/server/service/order-tote/order-tote-types.ts +47 -0
- package/server/service/order-tote/order-tote.ts +73 -0
- package/server/service/order-tote-item/index.ts +9 -0
- package/server/service/order-tote-item/order-tote-item-mutation.ts +31 -0
- package/server/service/order-tote-item/order-tote-item-query.ts +82 -0
- package/server/service/order-tote-item/order-tote-item-types.ts +56 -0
- package/server/service/order-tote-item/order-tote-item.ts +72 -0
- package/server/service/order-tote-seal/index.ts +9 -0
- package/server/service/order-tote-seal/order-tote-seal-mutation.ts +31 -0
- package/server/service/order-tote-seal/order-tote-seal-query.ts +59 -0
- package/server/service/order-tote-seal/order-tote-seal-types.ts +41 -0
- package/server/service/order-tote-seal/order-tote-seal.ts +46 -0
- package/server/service/order-vas/index.ts +9 -0
- package/server/service/order-vas/order-vas-mutation.ts +20 -0
- package/server/service/order-vas/order-vas-query.ts +72 -0
- package/server/service/order-vas/order-vas-types.ts +159 -0
- package/server/service/order-vas/order-vas.ts +207 -0
- package/server/service/others/index.ts +5 -0
- package/server/service/others/other-query.ts +563 -0
- package/server/service/others/other-types.ts +115 -0
- package/server/service/purchase-order/index.ts +9 -0
- package/server/service/purchase-order/purchase-order-mutation.ts +458 -0
- package/server/service/purchase-order/purchase-order-query.ts +90 -0
- package/server/service/purchase-order/purchase-order-types.ts +154 -0
- package/server/service/purchase-order/purchase-order.ts +172 -0
- package/server/service/purchase-order-other-charge/index.ts +9 -0
- package/server/service/purchase-order-other-charge/purchase-order-other-charge-mutation.ts +31 -0
- package/server/service/purchase-order-other-charge/purchase-order-other-charge-query.ts +52 -0
- package/server/service/purchase-order-other-charge/purchase-order-other-charge-types.ts +44 -0
- package/server/service/purchase-order-other-charge/purchase-order-other-charge.ts +68 -0
- package/server/service/release-good/index.ts +9 -0
- package/server/service/release-good/release-good-mutation.ts +1686 -0
- package/server/service/release-good/release-good-query.ts +980 -0
- package/server/service/release-good/release-good-types.ts +662 -0
- package/server/service/release-good/release-good.ts +490 -0
- package/server/service/retail-replenishment-order/index.ts +9 -0
- package/server/service/retail-replenishment-order/retail-replenishment-order-mutation.ts +382 -0
- package/server/service/retail-replenishment-order/retail-replenishment-order-query.ts +54 -0
- package/server/service/retail-replenishment-order/retail-replenishment-order-types.ts +101 -0
- package/server/service/retail-replenishment-order/retail-replenishment-order.ts +115 -0
- package/server/service/return-order/index.ts +9 -0
- package/server/service/return-order/return-order-mutation.ts +516 -0
- package/server/service/return-order/return-order-query.ts +226 -0
- package/server/service/return-order/return-order-types.ts +196 -0
- package/server/service/return-order/return-order.ts +127 -0
- package/server/service/reverse-kitting-order/index.ts +9 -0
- package/server/service/reverse-kitting-order/reverse-kitting-order-mutation.ts +500 -0
- package/server/service/reverse-kitting-order/reverse-kitting-order-query.ts +197 -0
- package/server/service/reverse-kitting-order/reverse-kitting-order-type.ts +173 -0
- package/server/service/reverse-kitting-order/reverse-kitting-order.ts +121 -0
- package/server/service/reverse-kitting-order-inventory/index.ts +9 -0
- package/server/service/reverse-kitting-order-inventory/reverse-kitting-order-inventory-mutation.ts +129 -0
- package/server/service/reverse-kitting-order-inventory/reverse-kitting-order-inventory-query.ts +52 -0
- package/server/service/reverse-kitting-order-inventory/reverse-kitting-order-inventory-type.ts +95 -0
- package/server/service/reverse-kitting-order-inventory/reverse-kitting-order-inventory.ts +143 -0
- package/server/service/shipping-order/index.ts +9 -0
- package/server/service/shipping-order/shipping-order-mutation.ts +61 -0
- package/server/service/shipping-order/shipping-order-query.ts +61 -0
- package/server/service/shipping-order/shipping-order-types.ts +89 -0
- package/server/service/shipping-order/shipping-order.ts +129 -0
- package/server/service/transfer-order/index.ts +9 -0
- package/server/service/transfer-order/transfer-order-mutation.ts +309 -0
- package/server/service/transfer-order/transfer-order-query.ts +66 -0
- package/server/service/transfer-order/transfer-order-types.ts +97 -0
- package/server/service/transfer-order/transfer-order.ts +117 -0
- package/server/service/vas/index.ts +9 -0
- package/server/service/vas/vas-mutation.ts +106 -0
- package/server/service/vas/vas-query.ts +60 -0
- package/server/service/vas/vas-types.ts +71 -0
- package/server/service/vas/vas.ts +77 -0
- package/server/service/vas-order/index.ts +9 -0
- package/server/service/vas-order/vas-order-mutation.ts +259 -0
- package/server/service/vas-order/vas-order-query.ts +119 -0
- package/server/service/vas-order/vas-order-types.ts +49 -0
- package/server/service/vas-order/vas-order.ts +81 -0
- package/server/utils/datetime-util.ts +54 -0
- package/server/utils/index.ts +3 -0
- package/server/utils/inventory-util.ts +1155 -0
- package/server/utils/order-no-generator.ts +146 -0
|
@@ -0,0 +1,563 @@
|
|
|
1
|
+
import orderBy from 'lodash/orderBy'
|
|
2
|
+
import { Arg, Args, Ctx, Directive, Query, Resolver } from 'type-graphql'
|
|
3
|
+
import { EntityManager } from 'typeorm'
|
|
4
|
+
|
|
5
|
+
import { User } from '@things-factory/auth-base'
|
|
6
|
+
import { Bizplace, getPermittedBizplaces } from '@things-factory/biz-base'
|
|
7
|
+
import { Product, ProductDetail } from '@things-factory/product-base'
|
|
8
|
+
import { PartnerSetting, Setting } from '@things-factory/setting-base'
|
|
9
|
+
import { Domain, ListParam } from '@things-factory/shell'
|
|
10
|
+
|
|
11
|
+
import {
|
|
12
|
+
InventoryProductGroup,
|
|
13
|
+
InventoryProductGroupList,
|
|
14
|
+
NewOrderInventory,
|
|
15
|
+
NewOrderProduct,
|
|
16
|
+
OrderInventory,
|
|
17
|
+
OrderProduct
|
|
18
|
+
} from '../'
|
|
19
|
+
import { InventoryUtil } from '../../utils'
|
|
20
|
+
|
|
21
|
+
@Resolver()
|
|
22
|
+
export class OtherQuery {
|
|
23
|
+
@Directive('@privilege(category: "inventory", privilege: "query", domainOwnerGranted: true)')
|
|
24
|
+
@Directive('@transaction')
|
|
25
|
+
@Query(returns => InventoryProductGroupList)
|
|
26
|
+
async allBizplaceProductInventory(
|
|
27
|
+
@Ctx() context: ResolverContext,
|
|
28
|
+
@Args(type => ListParam) params: ListParam
|
|
29
|
+
): Promise<InventoryProductGroupList> {
|
|
30
|
+
const { domain, user, tx, bizplace } = context.state
|
|
31
|
+
|
|
32
|
+
let permittedBizplaces: Bizplace[] = await getPermittedBizplaces(domain, user)
|
|
33
|
+
|
|
34
|
+
let bizplaceId: any = params.filters.find(filter => filter.name === 'bizplace_id').value
|
|
35
|
+
let foundPermittedBizplace: Bizplace
|
|
36
|
+
let companyBizplace: Bizplace
|
|
37
|
+
|
|
38
|
+
if (bizplaceId) {
|
|
39
|
+
foundPermittedBizplace = permittedBizplaces.find(biz => biz.id == bizplaceId)
|
|
40
|
+
|
|
41
|
+
if (foundPermittedBizplace) {
|
|
42
|
+
if (!foundPermittedBizplace.company?.id) {
|
|
43
|
+
foundPermittedBizplace = await tx.getRepository(Bizplace).findOne({
|
|
44
|
+
where: { id: foundPermittedBizplace.id },
|
|
45
|
+
relations: ['company', 'company.domain']
|
|
46
|
+
})
|
|
47
|
+
}
|
|
48
|
+
const companyDomain: Domain = foundPermittedBizplace.company.domain
|
|
49
|
+
companyBizplace = await tx.getRepository(Bizplace).findOne({ where: { domain: companyDomain } })
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const bizplaces: Bizplace[] = [foundPermittedBizplace, companyBizplace]
|
|
54
|
+
if (bizplace) bizplaces.push(bizplace)
|
|
55
|
+
|
|
56
|
+
const { items, total } = await InventoryUtil.bizplaceProductInventory(bizplaces, params, context, tx)
|
|
57
|
+
|
|
58
|
+
return { items, total }
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@Directive('@privilege(category: "inventory", privilege: "query", domainOwnerGranted: true)')
|
|
62
|
+
@Directive('@transaction')
|
|
63
|
+
@Query(returns => InventoryProductGroupList)
|
|
64
|
+
async inventoryProductGroup(
|
|
65
|
+
@Ctx() context: ResolverContext,
|
|
66
|
+
@Args(type => ListParam) params: ListParam
|
|
67
|
+
): Promise<InventoryProductGroupList> {
|
|
68
|
+
const { domain, user, tx, bizplace } = context.state
|
|
69
|
+
|
|
70
|
+
let permittedBizplaces: Bizplace[] = await getPermittedBizplaces(domain, user)
|
|
71
|
+
|
|
72
|
+
let bizplaceId: any = params.filters.find(filter => filter.name === 'bizplace_id').value
|
|
73
|
+
let foundPermittedBizplace: Bizplace
|
|
74
|
+
let companyBizplace: Bizplace
|
|
75
|
+
|
|
76
|
+
if (bizplaceId) {
|
|
77
|
+
foundPermittedBizplace = permittedBizplaces.find(biz => biz.id == bizplaceId)
|
|
78
|
+
|
|
79
|
+
if (foundPermittedBizplace) {
|
|
80
|
+
if (!foundPermittedBizplace.company?.id) {
|
|
81
|
+
foundPermittedBizplace = await tx.getRepository(Bizplace).findOne({
|
|
82
|
+
where: { id: foundPermittedBizplace.id },
|
|
83
|
+
relations: ['company', 'company.domain']
|
|
84
|
+
})
|
|
85
|
+
}
|
|
86
|
+
const companyDomain: Domain = foundPermittedBizplace.company.domain
|
|
87
|
+
companyBizplace = await tx.getRepository(Bizplace).findOne({ where: { domain: { id: companyDomain.id } } })
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
const bizplaces: Bizplace[] = [foundPermittedBizplace, companyBizplace]
|
|
92
|
+
if (bizplace) bizplaces.push(bizplace)
|
|
93
|
+
|
|
94
|
+
const { items, total } = await InventoryUtil.bizplaceInventoryProductGroup(bizplaces, params, context, tx)
|
|
95
|
+
|
|
96
|
+
return { items, total }
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
@Directive('@transaction')
|
|
100
|
+
@Query(returns => InventoryProductGroupList)
|
|
101
|
+
async inventoryProductGroupOpenAPI(
|
|
102
|
+
@Ctx() context: ResolverContext,
|
|
103
|
+
@Args(type => ListParam) params: ListParam
|
|
104
|
+
): Promise<InventoryProductGroupList> {
|
|
105
|
+
const { domain, user, tx, bizplace } = context.state
|
|
106
|
+
|
|
107
|
+
let permittedBizplaces: Bizplace[] = await getPermittedBizplaces(domain, user)
|
|
108
|
+
|
|
109
|
+
let bizplaceId: any = params.filters.find(filter => filter.name === 'bizplace_id').value
|
|
110
|
+
let foundPermittedBizplace: Bizplace
|
|
111
|
+
let companyBizplace: Bizplace
|
|
112
|
+
|
|
113
|
+
if (bizplaceId) {
|
|
114
|
+
foundPermittedBizplace = permittedBizplaces.find(biz => biz.id == bizplaceId)
|
|
115
|
+
|
|
116
|
+
if (foundPermittedBizplace) {
|
|
117
|
+
if (!foundPermittedBizplace.company?.id) {
|
|
118
|
+
foundPermittedBizplace = await tx.getRepository(Bizplace).findOne({
|
|
119
|
+
where: { id: foundPermittedBizplace.id },
|
|
120
|
+
relations: ['company', 'company.domain']
|
|
121
|
+
})
|
|
122
|
+
}
|
|
123
|
+
const companyDomain: Domain = foundPermittedBizplace.company.domain
|
|
124
|
+
companyBizplace = await tx.getRepository(Bizplace).findOne({ where: { domain: { id: companyDomain.id } } })
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
const bizplaces: Bizplace[] = [foundPermittedBizplace, companyBizplace]
|
|
129
|
+
if (bizplace) bizplaces.push(bizplace)
|
|
130
|
+
|
|
131
|
+
const { items, total } = await InventoryUtil.inventoryProductGroupOpenAPI(bizplaces, params, context, tx)
|
|
132
|
+
|
|
133
|
+
return { items, total }
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
@Directive('@privilege(category: "order_customer", privilege: "query", domainOwnerGranted: true)')
|
|
137
|
+
@Directive('@transaction')
|
|
138
|
+
@Query(returns => [OrderInventory])
|
|
139
|
+
async bulkUploadValidateWarehousePartnersProductsQuantity(
|
|
140
|
+
@Ctx() context: ResolverContext,
|
|
141
|
+
@Arg('partnerBizplaceId') partnerBizplaceId: string,
|
|
142
|
+
@Arg('orderInventories', type => [NewOrderInventory], { nullable: true }) orderInventories?: NewOrderInventory[]
|
|
143
|
+
): Promise<OrderInventory[]> {
|
|
144
|
+
const { domain, user, tx, bizplace } = context.state
|
|
145
|
+
|
|
146
|
+
let permittedBizplaces: Bizplace[] = await getPermittedBizplaces(domain, user)
|
|
147
|
+
let foundPermittedBizplace: Bizplace
|
|
148
|
+
let companyBizplace: Bizplace
|
|
149
|
+
|
|
150
|
+
const partnerBizplace: Bizplace = await tx.getRepository(Bizplace).findOne({
|
|
151
|
+
where: {
|
|
152
|
+
id: partnerBizplaceId
|
|
153
|
+
},
|
|
154
|
+
relations: ['company', 'company.domain']
|
|
155
|
+
})
|
|
156
|
+
|
|
157
|
+
if (partnerBizplaceId) {
|
|
158
|
+
foundPermittedBizplace = permittedBizplaces.find(biz => biz.id == partnerBizplaceId)
|
|
159
|
+
|
|
160
|
+
if (foundPermittedBizplace) {
|
|
161
|
+
if (!foundPermittedBizplace.company?.id) {
|
|
162
|
+
foundPermittedBizplace = await tx.getRepository(Bizplace).findOne({
|
|
163
|
+
where: { id: foundPermittedBizplace.id },
|
|
164
|
+
relations: ['company', 'company.domain']
|
|
165
|
+
})
|
|
166
|
+
}
|
|
167
|
+
const companyDomain: Domain = foundPermittedBizplace.company.domain
|
|
168
|
+
companyBizplace = await tx.getRepository(Bizplace).findOne({ where: { domain: { id: companyDomain.id } } })
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
const bizplaces: Bizplace[] = [foundPermittedBizplace, companyBizplace]
|
|
173
|
+
if (bizplace) bizplaces.push(bizplace)
|
|
174
|
+
|
|
175
|
+
let newOrderInventories: any[] = []
|
|
176
|
+
|
|
177
|
+
for (var i = 0; i < orderInventories.length; i++) {
|
|
178
|
+
const orderInventory: any = orderInventories[i]
|
|
179
|
+
|
|
180
|
+
let filters: any[] = [
|
|
181
|
+
{
|
|
182
|
+
name: 'productName',
|
|
183
|
+
operator: 'eq',
|
|
184
|
+
value: orderInventory.productSKU
|
|
185
|
+
}
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
if (orderInventory?.packingType != null) {
|
|
189
|
+
filters.push({
|
|
190
|
+
name: 'packingType',
|
|
191
|
+
operator: 'eq',
|
|
192
|
+
value: orderInventory.packingType
|
|
193
|
+
})
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
const params: any = {
|
|
197
|
+
filters: [...filters]
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
const { items, total } = await InventoryUtil.bizplaceInventoryProductGroup(bizplaces, params, context, tx)
|
|
201
|
+
|
|
202
|
+
// Filter to find for item with enough remain qty
|
|
203
|
+
const availableItems = items.filter(item => item.remainQty >= orderInventory.releaseQty)
|
|
204
|
+
let availableItem
|
|
205
|
+
|
|
206
|
+
if (availableItems.length > 0) {
|
|
207
|
+
availableItem = availableItems[0]
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
let packageUomValue = availableItem ? availableItem.remainUomValue / availableItem.remainQty : null
|
|
211
|
+
const newOrderInventory: any = {
|
|
212
|
+
product: availableItem
|
|
213
|
+
? {
|
|
214
|
+
id: availableItem.productId,
|
|
215
|
+
sku: availableItem.productSKU,
|
|
216
|
+
name: availableItem.productName
|
|
217
|
+
}
|
|
218
|
+
: { id: null },
|
|
219
|
+
inventory: availableItem
|
|
220
|
+
? {
|
|
221
|
+
...availableItem,
|
|
222
|
+
remainQty: availableItem ? availableItem.remainQty : null,
|
|
223
|
+
remainUomValue: availableItem ? availableItem.remainUomValue : null,
|
|
224
|
+
remainUomValueWithUom: availableItem ? availableItem.remainUomValueWithUom : ''
|
|
225
|
+
}
|
|
226
|
+
: null,
|
|
227
|
+
productId: availableItem ? availableItem.productId : null,
|
|
228
|
+
productSKU: availableItem ? availableItem.productSKU : orderInventory.productSKU,
|
|
229
|
+
productName: availableItem ? availableItem.productName : null,
|
|
230
|
+
uom: availableItem ? availableItem.uom : null,
|
|
231
|
+
remainQty: availableItem ? availableItem.remainQty : null,
|
|
232
|
+
remainUomValue: availableItem ? availableItem.remainUomValue : null,
|
|
233
|
+
remainUomValueWithUom: availableItem ? availableItem.remainUomValueWithUom : '',
|
|
234
|
+
batchId: availableItem ? availableItem.batchId : null,
|
|
235
|
+
batchIdRef: availableItem ? availableItem.batchIdRef : null,
|
|
236
|
+
packingType: availableItem ? availableItem.packingType : orderInventory.packingType,
|
|
237
|
+
packingSize: availableItem ? availableItem.packingSize : 1,
|
|
238
|
+
releaseQty: orderInventory.releaseQty
|
|
239
|
+
? Number.isInteger(orderInventory.releaseQty)
|
|
240
|
+
? orderInventory.releaseQty
|
|
241
|
+
: null
|
|
242
|
+
: null,
|
|
243
|
+
releaseUomValue: availableItem
|
|
244
|
+
? Number.isInteger(orderInventory.releaseQty)
|
|
245
|
+
? parseFloat((orderInventory.releaseQty * packageUomValue).toFixed(2))
|
|
246
|
+
: null
|
|
247
|
+
: null,
|
|
248
|
+
groupType: availableItem ? availableItem.groupType : null,
|
|
249
|
+
isError: !availableItem ? true : false
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
newOrderInventories.push(newOrderInventory)
|
|
253
|
+
|
|
254
|
+
// end loop
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
try {
|
|
258
|
+
await InventoryUtil.validateWarehousePartnersProductsQuantity(
|
|
259
|
+
domain,
|
|
260
|
+
partnerBizplace,
|
|
261
|
+
newOrderInventories,
|
|
262
|
+
context,
|
|
263
|
+
tx
|
|
264
|
+
)
|
|
265
|
+
} catch (e) {
|
|
266
|
+
const errorData = JSON.parse(e.detail.data)
|
|
267
|
+
|
|
268
|
+
errorData.forEach(dt => {
|
|
269
|
+
let idx = newOrderInventories.findIndex(
|
|
270
|
+
x =>
|
|
271
|
+
x.product?.id && x.product.id == dt.productId && x.batchId == dt.batchId && x.packingType == dt.packingType
|
|
272
|
+
)
|
|
273
|
+
|
|
274
|
+
if (idx >= 0) {
|
|
275
|
+
newOrderInventories[idx].remainQty = dt.availableQty
|
|
276
|
+
newOrderInventories[idx].remainUomValue = dt.availableUomValue
|
|
277
|
+
newOrderInventories[idx].isError =
|
|
278
|
+
dt.availableQty == null
|
|
279
|
+
? newOrderInventories[idx].releaseQty > 0
|
|
280
|
+
: newOrderInventories[idx].releaseQty > dt.availableQty
|
|
281
|
+
newOrderInventories[idx].remainUomValueWithUom =
|
|
282
|
+
dt.availableUomValue == null ? '' : `${dt.availableUomValue} ${dt.uom}`
|
|
283
|
+
if (newOrderInventories[idx].inventory != null) {
|
|
284
|
+
newOrderInventories[idx].inventory.remainQty = dt.availableQty
|
|
285
|
+
newOrderInventories[idx].inventory.remainUomValue = dt.availableUomValue
|
|
286
|
+
newOrderInventories[idx].inventory.remainUomValueWithUom = `${dt.availableUomValue} ${dt.uom}` || ''
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
})
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
return orderBy(newOrderInventories, ['isError'], ['desc'])
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
@Directive('@privilege(category: "order_customer", privilege: "query", domainOwnerGranted: true)')
|
|
296
|
+
@Directive('@transaction')
|
|
297
|
+
@Query(returns => [InventoryProductGroup])
|
|
298
|
+
async bulkUploadValidateOrderProducts(
|
|
299
|
+
@Ctx() context: ResolverContext,
|
|
300
|
+
@Arg('partnerBizplaceId') partnerBizplaceId: string,
|
|
301
|
+
@Arg('orderProducts', type => [NewOrderProduct], { nullable: true }) orderProducts: NewOrderProduct[]
|
|
302
|
+
): Promise<OrderProduct[]> {
|
|
303
|
+
const { domain, user, tx, bizplace } = context.state
|
|
304
|
+
|
|
305
|
+
const productDetailRepo = tx.getRepository(ProductDetail)
|
|
306
|
+
|
|
307
|
+
let permittedBizplaces: Bizplace[] = await getPermittedBizplaces(domain, user)
|
|
308
|
+
let foundPermittedBizplace: Bizplace
|
|
309
|
+
let companyBizplace: Bizplace
|
|
310
|
+
|
|
311
|
+
if (partnerBizplaceId) {
|
|
312
|
+
foundPermittedBizplace = permittedBizplaces.find(biz => biz.id == partnerBizplaceId)
|
|
313
|
+
|
|
314
|
+
if (foundPermittedBizplace) {
|
|
315
|
+
if (!foundPermittedBizplace.company?.id) {
|
|
316
|
+
foundPermittedBizplace = await tx.getRepository(Bizplace).findOne({
|
|
317
|
+
where: { id: foundPermittedBizplace.id },
|
|
318
|
+
relations: ['domain', 'company', 'company.domain']
|
|
319
|
+
})
|
|
320
|
+
}
|
|
321
|
+
const companyDomain: Domain = foundPermittedBizplace.company.domain
|
|
322
|
+
companyBizplace = await tx.getRepository(Bizplace).findOne({ where: { domain: { id: companyDomain.id } } })
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
const bizplaces: Bizplace[] = [foundPermittedBizplace, companyBizplace]
|
|
327
|
+
if (bizplace) bizplaces.push(bizplace)
|
|
328
|
+
|
|
329
|
+
let strictProduct: any = false
|
|
330
|
+
|
|
331
|
+
const strictProductSelectionSetting: Setting = await tx.getRepository(Setting).findOne({
|
|
332
|
+
where: { domain: { id: domain.id }, category: 'id-rule', name: 'strict-product-selection' }
|
|
333
|
+
})
|
|
334
|
+
|
|
335
|
+
if (strictProductSelectionSetting) strictProduct = strictProductSelectionSetting.value
|
|
336
|
+
|
|
337
|
+
const partnerStrictProductSelectionSetting: PartnerSetting = await tx.getRepository(PartnerSetting).findOne({
|
|
338
|
+
where: {
|
|
339
|
+
setting: { id: strictProductSelectionSetting.id },
|
|
340
|
+
domain: { id: domain.id },
|
|
341
|
+
partnerDomain: { id: foundPermittedBizplace?.domain?.id }
|
|
342
|
+
}
|
|
343
|
+
})
|
|
344
|
+
|
|
345
|
+
if (partnerStrictProductSelectionSetting) strictProduct = partnerStrictProductSelectionSetting.value
|
|
346
|
+
|
|
347
|
+
let newOrderProducts: any[] = []
|
|
348
|
+
|
|
349
|
+
for (var i = 0; i < orderProducts.length; i++) {
|
|
350
|
+
const orderProduct = orderProducts[i]
|
|
351
|
+
const productSKU: string = orderProduct.productSKU
|
|
352
|
+
const foundProduct: Product = await tx.getRepository(Product).findOne({
|
|
353
|
+
where: {
|
|
354
|
+
sku: productSKU,
|
|
355
|
+
bizplace: { id: companyBizplace.id }
|
|
356
|
+
}
|
|
357
|
+
})
|
|
358
|
+
|
|
359
|
+
let newOrderProduct: any
|
|
360
|
+
|
|
361
|
+
if (foundProduct) {
|
|
362
|
+
let productDetail: ProductDetail
|
|
363
|
+
const hasConditions: boolean = Boolean(
|
|
364
|
+
(orderProduct?.packingType && orderProduct?.packingType.trim() != '') ||
|
|
365
|
+
(orderProduct?.uom && orderProduct?.uom.trim() != '')
|
|
366
|
+
)
|
|
367
|
+
let productDetailCondition: any = { product: foundProduct }
|
|
368
|
+
|
|
369
|
+
if (hasConditions) {
|
|
370
|
+
if (orderProduct?.packingType && orderProduct.packingType.trim() != '')
|
|
371
|
+
productDetailCondition.packingType = orderProduct.packingType.trim()
|
|
372
|
+
|
|
373
|
+
if (orderProduct?.uom && orderProduct.uom.trim() != '') productDetailCondition.uom = orderProduct.uom.trim()
|
|
374
|
+
} else {
|
|
375
|
+
productDetailCondition.isDefault = true
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
productDetail = await productDetailRepo.findOne({
|
|
379
|
+
where: productDetailCondition
|
|
380
|
+
})
|
|
381
|
+
|
|
382
|
+
const uomValue: number =
|
|
383
|
+
strictProduct == true
|
|
384
|
+
? productDetail?.uomValue
|
|
385
|
+
? productDetail.uomValue
|
|
386
|
+
: null
|
|
387
|
+
: orderProduct?.uomValue
|
|
388
|
+
? orderProduct.uomValue
|
|
389
|
+
: productDetail.uomValue
|
|
390
|
+
|
|
391
|
+
newOrderProduct = {
|
|
392
|
+
...orderProduct,
|
|
393
|
+
packingType: orderProduct?.packingType ? orderProduct.packingType : productDetail.packingType,
|
|
394
|
+
packingSize: productDetail?.packingSize ? productDetail.packingSize : null,
|
|
395
|
+
uom: productDetail?.uom ? productDetail.uom : null,
|
|
396
|
+
uomValue: uomValue,
|
|
397
|
+
productName: `${foundProduct.name}(${foundProduct.description}(${foundProduct.sku}))`,
|
|
398
|
+
productBrand: foundProduct?.brand ? foundProduct.brand : null,
|
|
399
|
+
isError: productDetail ? false : true,
|
|
400
|
+
product: {
|
|
401
|
+
id: foundProduct.id,
|
|
402
|
+
name: foundProduct.name,
|
|
403
|
+
sku: foundProduct.sku,
|
|
404
|
+
type: foundProduct.type,
|
|
405
|
+
brand: foundProduct.brand,
|
|
406
|
+
primaryUnit: productDetail?.uom ? productDetail.uom : null,
|
|
407
|
+
primaryValue: productDetail?.uomValue ? productDetail.uomValue : null
|
|
408
|
+
},
|
|
409
|
+
totalUomValue:
|
|
410
|
+
orderProduct.packQty > 0
|
|
411
|
+
? uomValue
|
|
412
|
+
? `${(orderProduct.packQty * uomValue).toFixed(2)} ${productDetail.uom}`
|
|
413
|
+
: null
|
|
414
|
+
: null
|
|
415
|
+
}
|
|
416
|
+
} else {
|
|
417
|
+
newOrderProduct = {
|
|
418
|
+
...orderProduct,
|
|
419
|
+
productName: orderProduct.productSKU,
|
|
420
|
+
isError: true
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
newOrderProducts.push(newOrderProduct)
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
return newOrderProducts
|
|
428
|
+
}
|
|
429
|
+
@Directive('@privilege(category: "order_customer", privilege: "query", domainOwnerGranted: true)')
|
|
430
|
+
@Directive('@transaction')
|
|
431
|
+
@Query(returns => [InventoryProductGroup])
|
|
432
|
+
async bulkUploadValidatePoOrderProducts(
|
|
433
|
+
@Ctx() context: ResolverContext,
|
|
434
|
+
@Arg('partnerBizplaceId') partnerBizplaceId: string,
|
|
435
|
+
@Arg('orderProducts', type => [NewOrderProduct], { nullable: true }) orderProducts: NewOrderProduct[]
|
|
436
|
+
): Promise<OrderProduct[]> {
|
|
437
|
+
const { domain, user, tx, bizplace } = context.state
|
|
438
|
+
|
|
439
|
+
const productDetailRepo = tx.getRepository(ProductDetail)
|
|
440
|
+
|
|
441
|
+
let permittedBizplaces: Bizplace[] = await getPermittedBizplaces(domain, user)
|
|
442
|
+
let foundPermittedBizplace: Bizplace
|
|
443
|
+
let companyBizplace: Bizplace
|
|
444
|
+
|
|
445
|
+
if (partnerBizplaceId) {
|
|
446
|
+
foundPermittedBizplace = permittedBizplaces.find(biz => biz.id == partnerBizplaceId)
|
|
447
|
+
|
|
448
|
+
if (foundPermittedBizplace) {
|
|
449
|
+
if (!foundPermittedBizplace.company?.id) {
|
|
450
|
+
foundPermittedBizplace = await tx.getRepository(Bizplace).findOne({
|
|
451
|
+
where: { id: foundPermittedBizplace.id },
|
|
452
|
+
relations: ['domain', 'company', 'company.domain']
|
|
453
|
+
})
|
|
454
|
+
}
|
|
455
|
+
const companyDomain: Domain = foundPermittedBizplace.company.domain
|
|
456
|
+
companyBizplace = await tx.getRepository(Bizplace).findOne({ where: { domain: { id: companyDomain.id } } })
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
const bizplaces: Bizplace[] = [foundPermittedBizplace, companyBizplace]
|
|
461
|
+
if (bizplace) bizplaces.push(bizplace)
|
|
462
|
+
|
|
463
|
+
let strictProduct: any = false
|
|
464
|
+
|
|
465
|
+
const strictProductSelectionSetting: Setting = await tx.getRepository(Setting).findOne({
|
|
466
|
+
where: { domain: { id: domain.id }, category: 'id-rule', name: 'strict-product-selection' }
|
|
467
|
+
})
|
|
468
|
+
|
|
469
|
+
if (strictProductSelectionSetting) strictProduct = strictProductSelectionSetting.value
|
|
470
|
+
|
|
471
|
+
const partnerStrictProductSelectionSetting: PartnerSetting = await tx.getRepository(PartnerSetting).findOne({
|
|
472
|
+
where: {
|
|
473
|
+
setting: { id: strictProductSelectionSetting.id },
|
|
474
|
+
domain: { id: domain.id },
|
|
475
|
+
partnerDomain: { id: foundPermittedBizplace?.domain?.id }
|
|
476
|
+
}
|
|
477
|
+
})
|
|
478
|
+
|
|
479
|
+
if (partnerStrictProductSelectionSetting) strictProduct = partnerStrictProductSelectionSetting.value
|
|
480
|
+
|
|
481
|
+
let newOrderProducts: any[] = []
|
|
482
|
+
|
|
483
|
+
for (var i = 0; i < orderProducts.length; i++) {
|
|
484
|
+
const orderProduct = orderProducts[i]
|
|
485
|
+
const productSKU: string = orderProduct.productSKU
|
|
486
|
+
const foundProduct: Product = await tx.getRepository(Product).findOne({
|
|
487
|
+
where: {
|
|
488
|
+
sku: productSKU,
|
|
489
|
+
bizplace: { id: companyBizplace.id }
|
|
490
|
+
}
|
|
491
|
+
})
|
|
492
|
+
|
|
493
|
+
let newOrderProduct: any
|
|
494
|
+
|
|
495
|
+
if (foundProduct) {
|
|
496
|
+
let productDetail: ProductDetail
|
|
497
|
+
const hasConditions: boolean = Boolean(
|
|
498
|
+
(orderProduct?.packingType && orderProduct?.packingType.trim() != '') ||
|
|
499
|
+
(orderProduct?.uom && orderProduct?.uom.trim() != '')
|
|
500
|
+
)
|
|
501
|
+
let productDetailCondition: any = { product: foundProduct }
|
|
502
|
+
|
|
503
|
+
if (hasConditions) {
|
|
504
|
+
if (orderProduct?.packingType && orderProduct.packingType.trim() != '')
|
|
505
|
+
productDetailCondition.packingType = orderProduct.packingType.trim()
|
|
506
|
+
|
|
507
|
+
if (orderProduct?.uom && orderProduct.uom.trim() != '') productDetailCondition.uom = orderProduct.uom.trim()
|
|
508
|
+
} else {
|
|
509
|
+
productDetailCondition.isDefault = true
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
productDetail = await productDetailRepo.findOne({
|
|
513
|
+
where: productDetailCondition
|
|
514
|
+
})
|
|
515
|
+
|
|
516
|
+
const uomValue: number =
|
|
517
|
+
strictProduct == true
|
|
518
|
+
? productDetail?.uomValue
|
|
519
|
+
? productDetail.uomValue
|
|
520
|
+
: null
|
|
521
|
+
: orderProduct?.uomValue
|
|
522
|
+
? orderProduct.uomValue
|
|
523
|
+
: productDetail.uomValue
|
|
524
|
+
|
|
525
|
+
newOrderProduct = {
|
|
526
|
+
...orderProduct,
|
|
527
|
+
packingType: orderProduct?.packingType ? orderProduct.packingType : productDetail.packingType,
|
|
528
|
+
packingSize: productDetail?.packingSize ? productDetail.packingSize : null,
|
|
529
|
+
uom: productDetail?.uom ? productDetail.uom : null,
|
|
530
|
+
uomValue: uomValue,
|
|
531
|
+
productName: `${foundProduct.name}(${foundProduct.description}(${foundProduct.sku}))`,
|
|
532
|
+
productBrand: foundProduct?.brand ? foundProduct.brand : null,
|
|
533
|
+
isError: productDetail ? false : true,
|
|
534
|
+
product: {
|
|
535
|
+
id: foundProduct.id,
|
|
536
|
+
name: foundProduct.name,
|
|
537
|
+
sku: foundProduct.sku,
|
|
538
|
+
type: foundProduct.type,
|
|
539
|
+
brand: foundProduct.brand,
|
|
540
|
+
primaryUnit: productDetail?.uom ? productDetail.uom : null,
|
|
541
|
+
primaryValue: productDetail?.uomValue ? productDetail.uomValue : null
|
|
542
|
+
},
|
|
543
|
+
totalUomValue:
|
|
544
|
+
orderProduct.packQty > 0
|
|
545
|
+
? uomValue
|
|
546
|
+
? `${(orderProduct.packQty * uomValue).toFixed(2)} ${productDetail.uom}`
|
|
547
|
+
: null
|
|
548
|
+
: null
|
|
549
|
+
}
|
|
550
|
+
} else {
|
|
551
|
+
newOrderProduct = {
|
|
552
|
+
...orderProduct,
|
|
553
|
+
productName: orderProduct.productSKU,
|
|
554
|
+
isError: true
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
newOrderProducts.push(newOrderProduct)
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
return newOrderProducts
|
|
562
|
+
}
|
|
563
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { Field, Float, Int, ObjectType } from 'type-graphql'
|
|
2
|
+
|
|
3
|
+
import { Product } from '@things-factory/product-base'
|
|
4
|
+
import { ScalarDate } from '@things-factory/shell'
|
|
5
|
+
|
|
6
|
+
@ObjectType()
|
|
7
|
+
export class InventoryProductGroupList {
|
|
8
|
+
@Field(type => [InventoryProductGroup], { nullable: true })
|
|
9
|
+
items: InventoryProductGroup[]
|
|
10
|
+
|
|
11
|
+
@Field(type => Int, { nullable: true })
|
|
12
|
+
total: number
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@ObjectType()
|
|
16
|
+
export class InventoryProductGroup {
|
|
17
|
+
@Field({ nullable: true })
|
|
18
|
+
id: string
|
|
19
|
+
|
|
20
|
+
@Field({ nullable: true })
|
|
21
|
+
productId: string
|
|
22
|
+
|
|
23
|
+
@Field({ nullable: true })
|
|
24
|
+
batchId: string
|
|
25
|
+
|
|
26
|
+
@Field({ nullable: true })
|
|
27
|
+
batchIdRef: string
|
|
28
|
+
|
|
29
|
+
@Field({ nullable: true })
|
|
30
|
+
productSKU: string
|
|
31
|
+
|
|
32
|
+
@Field({ nullable: true })
|
|
33
|
+
productName: string
|
|
34
|
+
|
|
35
|
+
@Field({ nullable: true })
|
|
36
|
+
productBrand: string
|
|
37
|
+
|
|
38
|
+
@Field({ nullable: true })
|
|
39
|
+
packingType: string
|
|
40
|
+
|
|
41
|
+
@Field(type => Float, { nullable: true })
|
|
42
|
+
packingSize: number
|
|
43
|
+
|
|
44
|
+
@Field({ nullable: true })
|
|
45
|
+
palletId: string
|
|
46
|
+
|
|
47
|
+
@Field({ nullable: true })
|
|
48
|
+
createdAt: Date
|
|
49
|
+
|
|
50
|
+
@Field(type => Float, { nullable: true })
|
|
51
|
+
packQty: number
|
|
52
|
+
|
|
53
|
+
@Field(type => Int, { nullable: true })
|
|
54
|
+
totalQty: number
|
|
55
|
+
|
|
56
|
+
@Field(type => Int, { nullable: true })
|
|
57
|
+
totalLockedQty: number
|
|
58
|
+
|
|
59
|
+
@Field(type => Int, { nullable: true })
|
|
60
|
+
totalLockedUomValue: number
|
|
61
|
+
|
|
62
|
+
@Field(type => Int, { nullable: true })
|
|
63
|
+
palletQty: number
|
|
64
|
+
|
|
65
|
+
@Field(type => Float, { nullable: true })
|
|
66
|
+
remainQty: number
|
|
67
|
+
|
|
68
|
+
@Field(type => Float, { nullable: true })
|
|
69
|
+
remainWeight: number
|
|
70
|
+
|
|
71
|
+
@Field(type => Float, { nullable: true })
|
|
72
|
+
remainUomValue: number
|
|
73
|
+
|
|
74
|
+
@Field({ nullable: true })
|
|
75
|
+
remainUomValueWithUom: string
|
|
76
|
+
|
|
77
|
+
@Field({ nullable: true })
|
|
78
|
+
uom: string
|
|
79
|
+
|
|
80
|
+
@Field(type => Float, { nullable: true })
|
|
81
|
+
uomValue: number
|
|
82
|
+
|
|
83
|
+
@Field({ nullable: true })
|
|
84
|
+
totalUomValue: String
|
|
85
|
+
|
|
86
|
+
@Field({ nullable: true })
|
|
87
|
+
groupType: string
|
|
88
|
+
|
|
89
|
+
@Field(type => ScalarDate, { nullable: true })
|
|
90
|
+
manufactureDate: Date
|
|
91
|
+
|
|
92
|
+
@Field(type => Float, { nullable: true })
|
|
93
|
+
unitPrice: number
|
|
94
|
+
|
|
95
|
+
@Field({ nullable: true })
|
|
96
|
+
remark: string
|
|
97
|
+
|
|
98
|
+
@Field(type => Float, { nullable: true })
|
|
99
|
+
discountAmt: number
|
|
100
|
+
|
|
101
|
+
@Field(type => Float, { nullable: true })
|
|
102
|
+
miscAmt: number
|
|
103
|
+
|
|
104
|
+
@Field(type => Float, { nullable: true })
|
|
105
|
+
taxRate: number
|
|
106
|
+
|
|
107
|
+
@Field(type => Float, { nullable: true })
|
|
108
|
+
isError: Boolean
|
|
109
|
+
|
|
110
|
+
@Field(type => Product, { nullable: true })
|
|
111
|
+
product: Product
|
|
112
|
+
|
|
113
|
+
@Field(type => ScalarDate, { nullable: true })
|
|
114
|
+
expirationDate: Date
|
|
115
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PurchaseOrder } from './purchase-order'
|
|
2
|
+
import { PurchaseOrderMutation } from './purchase-order-mutation'
|
|
3
|
+
import { PurchaseOrderQuery } from './purchase-order-query'
|
|
4
|
+
|
|
5
|
+
export const entities = [PurchaseOrder]
|
|
6
|
+
export const resolvers = [PurchaseOrderQuery, PurchaseOrderMutation]
|
|
7
|
+
|
|
8
|
+
export * from './purchase-order-mutation'
|
|
9
|
+
export * from './purchase-order-query'
|