@things-factory/warehouse-base 4.3.671 → 4.3.673
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/constants/adjustment-code.js +13 -0
- package/dist-server/constants/adjustment-code.js.map +1 -0
- package/dist-server/constants/index.js +23 -0
- package/dist-server/constants/index.js.map +1 -0
- package/dist-server/constants/inventory.js +74 -0
- package/dist-server/constants/inventory.js.map +1 -0
- package/dist-server/constants/location.js +19 -0
- package/dist-server/constants/location.js.map +1 -0
- package/dist-server/constants/pallet.js +13 -0
- package/dist-server/constants/pallet.js.map +1 -0
- package/dist-server/constants/rule-type.js +8 -0
- package/dist-server/constants/rule-type.js.map +1 -0
- package/dist-server/constants/tote.js +9 -0
- package/dist-server/constants/tote.js.map +1 -0
- package/dist-server/controllers/ecommerce/ecommerce-controller.js +125 -0
- package/dist-server/controllers/ecommerce/ecommerce-controller.js.map +1 -0
- package/dist-server/controllers/ecommerce/index.js +22 -0
- package/dist-server/controllers/ecommerce/index.js.map +1 -0
- package/dist-server/controllers/ecommerce/pos-controller.js +65 -0
- package/dist-server/controllers/ecommerce/pos-controller.js.map +1 -0
- package/dist-server/controllers/ecommerce/powrup-controller.js +87 -0
- package/dist-server/controllers/ecommerce/powrup-controller.js.map +1 -0
- package/dist-server/controllers/ecommerce/sellercraft-controller.js +85 -0
- package/dist-server/controllers/ecommerce/sellercraft-controller.js.map +1 -0
- package/dist-server/controllers/ecommerce/webspert-controller.js +131 -0
- package/dist-server/controllers/ecommerce/webspert-controller.js.map +1 -0
- package/dist-server/controllers/index.js +19 -0
- package/dist-server/controllers/index.js.map +1 -0
- package/dist-server/controllers/warehouse-controller.js +143 -0
- package/dist-server/controllers/warehouse-controller.js.map +1 -0
- package/dist-server/index.js +35 -0
- package/dist-server/index.js.map +1 -0
- package/dist-server/middlewares/index.js +1 -0
- package/dist-server/middlewares/index.js.map +1 -0
- package/dist-server/migrations/index.js +12 -0
- package/dist-server/migrations/index.js.map +1 -0
- package/dist-server/service/index.js +96 -0
- package/dist-server/service/index.js.map +1 -0
- package/dist-server/service/inventory/index.js +9 -0
- package/dist-server/service/inventory/index.js.map +1 -0
- package/dist-server/service/inventory/inventory-mutation.js +414 -0
- package/dist-server/service/inventory/inventory-mutation.js.map +1 -0
- package/dist-server/service/inventory/inventory-query.js +1211 -0
- package/dist-server/service/inventory/inventory-query.js.map +1 -0
- package/dist-server/service/inventory/inventory-types.js +478 -0
- package/dist-server/service/inventory/inventory-types.js.map +1 -0
- package/dist-server/service/inventory/inventory.js +569 -0
- package/dist-server/service/inventory/inventory.js.map +1 -0
- package/dist-server/service/inventory-change/index.js +9 -0
- package/dist-server/service/inventory-change/index.js.map +1 -0
- package/dist-server/service/inventory-change/inventory-change-mutation.js +1188 -0
- package/dist-server/service/inventory-change/inventory-change-mutation.js.map +1 -0
- package/dist-server/service/inventory-change/inventory-change-query.js +150 -0
- package/dist-server/service/inventory-change/inventory-change-query.js.map +1 -0
- package/dist-server/service/inventory-change/inventory-change-types.js +73 -0
- package/dist-server/service/inventory-change/inventory-change-types.js.map +1 -0
- package/dist-server/service/inventory-change/inventory-change.js +225 -0
- package/dist-server/service/inventory-change/inventory-change.js.map +1 -0
- package/dist-server/service/inventory-history/index.js +9 -0
- package/dist-server/service/inventory-history/index.js.map +1 -0
- package/dist-server/service/inventory-history/inventory-history-mutation.js +121 -0
- package/dist-server/service/inventory-history/inventory-history-mutation.js.map +1 -0
- package/dist-server/service/inventory-history/inventory-history-query.js +1694 -0
- package/dist-server/service/inventory-history/inventory-history-query.js.map +1 -0
- package/dist-server/service/inventory-history/inventory-history-types.js +626 -0
- package/dist-server/service/inventory-history/inventory-history-types.js.map +1 -0
- package/dist-server/service/inventory-history/inventory-history.js +238 -0
- package/dist-server/service/inventory-history/inventory-history.js.map +1 -0
- package/dist-server/service/inventory-item/index.js +9 -0
- package/dist-server/service/inventory-item/index.js.map +1 -0
- package/dist-server/service/inventory-item/inventory-item-mutation.js +274 -0
- package/dist-server/service/inventory-item/inventory-item-mutation.js.map +1 -0
- package/dist-server/service/inventory-item/inventory-item-query.js +265 -0
- package/dist-server/service/inventory-item/inventory-item-query.js.map +1 -0
- package/dist-server/service/inventory-item/inventory-item-type.js +127 -0
- package/dist-server/service/inventory-item/inventory-item-type.js.map +1 -0
- package/dist-server/service/inventory-item/inventory-item.js +146 -0
- package/dist-server/service/inventory-item/inventory-item.js.map +1 -0
- package/dist-server/service/inventory-item-change/index.js +9 -0
- package/dist-server/service/inventory-item-change/index.js.map +1 -0
- package/dist-server/service/inventory-item-change/inventory-item-change-mutation.js +121 -0
- package/dist-server/service/inventory-item-change/inventory-item-change-mutation.js.map +1 -0
- package/dist-server/service/inventory-item-change/inventory-item-change-query.js +87 -0
- package/dist-server/service/inventory-item-change/inventory-item-change-query.js.map +1 -0
- package/dist-server/service/inventory-item-change/inventory-item-change-type.js +107 -0
- package/dist-server/service/inventory-item-change/inventory-item-change-type.js.map +1 -0
- package/dist-server/service/inventory-item-change/inventory-item-change.js +110 -0
- package/dist-server/service/inventory-item-change/inventory-item-change.js.map +1 -0
- package/dist-server/service/inventory-product/index.js +9 -0
- package/dist-server/service/inventory-product/index.js.map +1 -0
- package/dist-server/service/inventory-product/inventory-product-mutation.js +120 -0
- package/dist-server/service/inventory-product/inventory-product-mutation.js.map +1 -0
- package/dist-server/service/inventory-product/inventory-product-query.js +87 -0
- package/dist-server/service/inventory-product/inventory-product-query.js.map +1 -0
- package/dist-server/service/inventory-product/inventory-product-type.js +95 -0
- package/dist-server/service/inventory-product/inventory-product-type.js.map +1 -0
- package/dist-server/service/inventory-product/inventory-product.js +112 -0
- package/dist-server/service/inventory-product/inventory-product.js.map +1 -0
- package/dist-server/service/location/index.js +9 -0
- package/dist-server/service/location/index.js.map +1 -0
- package/dist-server/service/location/location-mutation.js +279 -0
- package/dist-server/service/location/location-mutation.js.map +1 -0
- package/dist-server/service/location/location-query.js +321 -0
- package/dist-server/service/location/location-query.js.map +1 -0
- package/dist-server/service/location/location-types.js +296 -0
- package/dist-server/service/location/location-types.js.map +1 -0
- package/dist-server/service/location/location.js +146 -0
- package/dist-server/service/location/location.js.map +1 -0
- package/dist-server/service/movement/index.js +9 -0
- package/dist-server/service/movement/index.js.map +1 -0
- package/dist-server/service/movement/movement-mutation.js +80 -0
- package/dist-server/service/movement/movement-mutation.js.map +1 -0
- package/dist-server/service/movement/movement-query.js +286 -0
- package/dist-server/service/movement/movement-query.js.map +1 -0
- package/dist-server/service/movement/movement-types.js +117 -0
- package/dist-server/service/movement/movement-types.js.map +1 -0
- package/dist-server/service/movement/movement.js +101 -0
- package/dist-server/service/movement/movement.js.map +1 -0
- package/dist-server/service/pallet/index.js +9 -0
- package/dist-server/service/pallet/index.js.map +1 -0
- package/dist-server/service/pallet/pallet-mutation.js +194 -0
- package/dist-server/service/pallet/pallet-mutation.js.map +1 -0
- package/dist-server/service/pallet/pallet-query.js +164 -0
- package/dist-server/service/pallet/pallet-query.js.map +1 -0
- package/dist-server/service/pallet/pallet-types.js +109 -0
- package/dist-server/service/pallet/pallet-types.js.map +1 -0
- package/dist-server/service/pallet/pallet.js +112 -0
- package/dist-server/service/pallet/pallet.js.map +1 -0
- package/dist-server/service/pallet-count/index.js +9 -0
- package/dist-server/service/pallet-count/index.js.map +1 -0
- package/dist-server/service/pallet-count/pallet-count-mutation.js +153 -0
- package/dist-server/service/pallet-count/pallet-count-mutation.js.map +1 -0
- package/dist-server/service/pallet-count/pallet-count-query.js +86 -0
- package/dist-server/service/pallet-count/pallet-count-query.js.map +1 -0
- package/dist-server/service/pallet-count/pallet-count-types.js +65 -0
- package/dist-server/service/pallet-count/pallet-count-types.js.map +1 -0
- package/dist-server/service/pallet-count/pallet-count.js +89 -0
- package/dist-server/service/pallet-count/pallet-count.js.map +1 -0
- package/dist-server/service/pallet-history/index.js +9 -0
- package/dist-server/service/pallet-history/index.js.map +1 -0
- package/dist-server/service/pallet-history/pallet-history-mutation.js +120 -0
- package/dist-server/service/pallet-history/pallet-history-mutation.js.map +1 -0
- package/dist-server/service/pallet-history/pallet-history-query.js +87 -0
- package/dist-server/service/pallet-history/pallet-history-query.js.map +1 -0
- package/dist-server/service/pallet-history/pallet-history-types.js +65 -0
- package/dist-server/service/pallet-history/pallet-history-types.js.map +1 -0
- package/dist-server/service/pallet-history/pallet-history.js +107 -0
- package/dist-server/service/pallet-history/pallet-history.js.map +1 -0
- package/dist-server/service/product-detail-stock/index.js +9 -0
- package/dist-server/service/product-detail-stock/index.js.map +1 -0
- package/dist-server/service/product-detail-stock/product-detail-stock-mutation.js +120 -0
- package/dist-server/service/product-detail-stock/product-detail-stock-mutation.js.map +1 -0
- package/dist-server/service/product-detail-stock/product-detail-stock-query.js +66 -0
- package/dist-server/service/product-detail-stock/product-detail-stock-query.js.map +1 -0
- package/dist-server/service/product-detail-stock/product-detail-stock-types.js +57 -0
- package/dist-server/service/product-detail-stock/product-detail-stock-types.js.map +1 -0
- package/dist-server/service/product-detail-stock/product-detail-stock.js +90 -0
- package/dist-server/service/product-detail-stock/product-detail-stock.js.map +1 -0
- package/dist-server/service/reduced-inventory-history/index.js +6 -0
- package/dist-server/service/reduced-inventory-history/index.js.map +1 -0
- package/dist-server/service/reduced-inventory-history/reduced-inventory-history.js +133 -0
- package/dist-server/service/reduced-inventory-history/reduced-inventory-history.js.map +1 -0
- package/dist-server/service/tote/index.js +9 -0
- package/dist-server/service/tote/index.js.map +1 -0
- package/dist-server/service/tote/tote-mutation.js +192 -0
- package/dist-server/service/tote/tote-mutation.js.map +1 -0
- package/dist-server/service/tote/tote-query.js +162 -0
- package/dist-server/service/tote/tote-query.js.map +1 -0
- package/dist-server/service/tote/tote-types.js +75 -0
- package/dist-server/service/tote/tote-types.js.map +1 -0
- package/dist-server/service/tote/tote.js +98 -0
- package/dist-server/service/tote/tote.js.map +1 -0
- package/dist-server/service/warehouse/index.js +9 -0
- package/dist-server/service/warehouse/index.js.map +1 -0
- package/dist-server/service/warehouse/warehouse-mutation.js +148 -0
- package/dist-server/service/warehouse/warehouse-mutation.js.map +1 -0
- package/dist-server/service/warehouse/warehouse-query.js +91 -0
- package/dist-server/service/warehouse/warehouse-query.js.map +1 -0
- package/dist-server/service/warehouse/warehouse-types.js +82 -0
- package/dist-server/service/warehouse/warehouse-types.js.map +1 -0
- package/dist-server/service/warehouse/warehouse.js +114 -0
- package/dist-server/service/warehouse/warehouse.js.map +1 -0
- package/dist-server/utils/datetime-util.js +61 -0
- package/dist-server/utils/datetime-util.js.map +1 -0
- package/dist-server/utils/index.js +20 -0
- package/dist-server/utils/index.js.map +1 -0
- package/dist-server/utils/inventory-no-generator.js +17 -0
- package/dist-server/utils/inventory-no-generator.js.map +1 -0
- package/dist-server/utils/inventory-util.js +413 -0
- package/dist-server/utils/inventory-util.js.map +1 -0
- package/package.json +10 -10
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
var _a, _b, _c, _d, _e, _f;
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
exports.InventoryHistory = void 0;
|
|
14
|
+
const type_graphql_1 = require("type-graphql");
|
|
15
|
+
const typeorm_1 = require("typeorm");
|
|
16
|
+
const auth_base_1 = require("@things-factory/auth-base");
|
|
17
|
+
const biz_base_1 = require("@things-factory/biz-base");
|
|
18
|
+
const product_base_1 = require("@things-factory/product-base");
|
|
19
|
+
const shell_1 = require("@things-factory/shell");
|
|
20
|
+
const inventory_1 = require("../inventory/inventory");
|
|
21
|
+
const location_1 = require("../location/location");
|
|
22
|
+
const pallet_1 = require("../pallet/pallet");
|
|
23
|
+
const warehouse_1 = require("../warehouse/warehouse");
|
|
24
|
+
let InventoryHistory = class InventoryHistory {
|
|
25
|
+
};
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
28
|
+
(0, type_graphql_1.Field)(type => type_graphql_1.ID),
|
|
29
|
+
__metadata("design:type", String)
|
|
30
|
+
], InventoryHistory.prototype, "id", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, typeorm_1.Column)({ default: 0 }),
|
|
33
|
+
(0, type_graphql_1.Field)(),
|
|
34
|
+
__metadata("design:type", Number)
|
|
35
|
+
], InventoryHistory.prototype, "seq", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, typeorm_1.ManyToOne)(type => shell_1.Domain),
|
|
38
|
+
(0, type_graphql_1.Field)(),
|
|
39
|
+
__metadata("design:type", typeof (_a = typeof shell_1.Domain !== "undefined" && shell_1.Domain) === "function" ? _a : Object)
|
|
40
|
+
], InventoryHistory.prototype, "domain", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, typeorm_1.RelationId)((inventoryHistory) => inventoryHistory.domain),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], InventoryHistory.prototype, "domainId", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.ManyToOne)(type => biz_base_1.Bizplace),
|
|
47
|
+
(0, type_graphql_1.Field)(),
|
|
48
|
+
__metadata("design:type", typeof (_b = typeof biz_base_1.Bizplace !== "undefined" && biz_base_1.Bizplace) === "function" ? _b : Object)
|
|
49
|
+
], InventoryHistory.prototype, "bizplace", void 0);
|
|
50
|
+
__decorate([
|
|
51
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
52
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
53
|
+
__metadata("design:type", String)
|
|
54
|
+
], InventoryHistory.prototype, "refOrderId", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
57
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], InventoryHistory.prototype, "orderNo", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, typeorm_1.Column)(),
|
|
62
|
+
(0, type_graphql_1.Field)(),
|
|
63
|
+
__metadata("design:type", String)
|
|
64
|
+
], InventoryHistory.prototype, "name", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, typeorm_1.Column)(),
|
|
67
|
+
(0, type_graphql_1.Field)(),
|
|
68
|
+
__metadata("design:type", String)
|
|
69
|
+
], InventoryHistory.prototype, "palletId", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
72
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
73
|
+
__metadata("design:type", String)
|
|
74
|
+
], InventoryHistory.prototype, "cartonId", void 0);
|
|
75
|
+
__decorate([
|
|
76
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
77
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
78
|
+
__metadata("design:type", String)
|
|
79
|
+
], InventoryHistory.prototype, "batchId", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
82
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
83
|
+
__metadata("design:type", String)
|
|
84
|
+
], InventoryHistory.prototype, "batchIdRef", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, typeorm_1.ManyToOne)(type => pallet_1.Pallet, { nullable: true }),
|
|
87
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
88
|
+
__metadata("design:type", pallet_1.Pallet)
|
|
89
|
+
], InventoryHistory.prototype, "reusablePallet", void 0);
|
|
90
|
+
__decorate([
|
|
91
|
+
(0, typeorm_1.ManyToOne)(type => product_base_1.Product, { nullable: true }),
|
|
92
|
+
(0, type_graphql_1.Field)(type => product_base_1.Product, { nullable: true }),
|
|
93
|
+
__metadata("design:type", typeof (_c = typeof product_base_1.Product !== "undefined" && product_base_1.Product) === "function" ? _c : Object)
|
|
94
|
+
], InventoryHistory.prototype, "product", void 0);
|
|
95
|
+
__decorate([
|
|
96
|
+
(0, typeorm_1.ManyToOne)(type => product_base_1.ProductDetail, { nullable: true }),
|
|
97
|
+
(0, type_graphql_1.Field)(type => product_base_1.ProductDetail, { nullable: true }),
|
|
98
|
+
__metadata("design:type", typeof (_d = typeof product_base_1.ProductDetail !== "undefined" && product_base_1.ProductDetail) === "function" ? _d : Object)
|
|
99
|
+
], InventoryHistory.prototype, "productDetail", void 0);
|
|
100
|
+
__decorate([
|
|
101
|
+
(0, typeorm_1.ManyToOne)(type => warehouse_1.Warehouse, { nullable: true }),
|
|
102
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
103
|
+
__metadata("design:type", warehouse_1.Warehouse)
|
|
104
|
+
], InventoryHistory.prototype, "warehouse", void 0);
|
|
105
|
+
__decorate([
|
|
106
|
+
(0, typeorm_1.ManyToOne)(type => location_1.Location, { nullable: true }),
|
|
107
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
108
|
+
__metadata("design:type", location_1.Location)
|
|
109
|
+
], InventoryHistory.prototype, "location", void 0);
|
|
110
|
+
__decorate([
|
|
111
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
112
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
113
|
+
__metadata("design:type", String)
|
|
114
|
+
], InventoryHistory.prototype, "zone", void 0);
|
|
115
|
+
__decorate([
|
|
116
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
117
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
118
|
+
__metadata("design:type", String)
|
|
119
|
+
], InventoryHistory.prototype, "orderRefNo", void 0);
|
|
120
|
+
__decorate([
|
|
121
|
+
(0, typeorm_1.Column)(),
|
|
122
|
+
(0, type_graphql_1.Field)(),
|
|
123
|
+
__metadata("design:type", String)
|
|
124
|
+
], InventoryHistory.prototype, "packingType", void 0);
|
|
125
|
+
__decorate([
|
|
126
|
+
(0, typeorm_1.Column)('float', { nullable: true, default: 1 }),
|
|
127
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
128
|
+
__metadata("design:type", Number)
|
|
129
|
+
], InventoryHistory.prototype, "packingSize", void 0);
|
|
130
|
+
__decorate([
|
|
131
|
+
(0, typeorm_1.Column)('float'),
|
|
132
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
133
|
+
__metadata("design:type", Number)
|
|
134
|
+
], InventoryHistory.prototype, "qty", void 0);
|
|
135
|
+
__decorate([
|
|
136
|
+
(0, typeorm_1.Column)('float', { default: 0, nullable: true }),
|
|
137
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
138
|
+
__metadata("design:type", Number)
|
|
139
|
+
], InventoryHistory.prototype, "openingQty", void 0);
|
|
140
|
+
__decorate([
|
|
141
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
142
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
143
|
+
__metadata("design:type", String)
|
|
144
|
+
], InventoryHistory.prototype, "uom", void 0);
|
|
145
|
+
__decorate([
|
|
146
|
+
(0, typeorm_1.Column)('float', { nullable: true }),
|
|
147
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
148
|
+
__metadata("design:type", Number)
|
|
149
|
+
], InventoryHistory.prototype, "uomValue", void 0);
|
|
150
|
+
__decorate([
|
|
151
|
+
(0, typeorm_1.Column)('float', { default: 0, nullable: true }),
|
|
152
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
153
|
+
__metadata("design:type", Number)
|
|
154
|
+
], InventoryHistory.prototype, "openingUomValue", void 0);
|
|
155
|
+
__decorate([
|
|
156
|
+
(0, typeorm_1.Column)('float', { nullable: true }),
|
|
157
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
158
|
+
__metadata("design:type", Number)
|
|
159
|
+
], InventoryHistory.prototype, "unitCost", void 0);
|
|
160
|
+
__decorate([
|
|
161
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
162
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
163
|
+
__metadata("design:type", String)
|
|
164
|
+
], InventoryHistory.prototype, "description", void 0);
|
|
165
|
+
__decorate([
|
|
166
|
+
(0, typeorm_1.Column)(),
|
|
167
|
+
(0, type_graphql_1.Field)(),
|
|
168
|
+
__metadata("design:type", String)
|
|
169
|
+
], InventoryHistory.prototype, "status", void 0);
|
|
170
|
+
__decorate([
|
|
171
|
+
(0, typeorm_1.Column)(),
|
|
172
|
+
(0, type_graphql_1.Field)(),
|
|
173
|
+
__metadata("design:type", String)
|
|
174
|
+
], InventoryHistory.prototype, "transactionType", void 0);
|
|
175
|
+
__decorate([
|
|
176
|
+
(0, typeorm_1.ManyToOne)(type => inventory_1.Inventory, { nullable: true }),
|
|
177
|
+
(0, type_graphql_1.Field)(type => inventory_1.Inventory, { nullable: true }),
|
|
178
|
+
__metadata("design:type", inventory_1.Inventory)
|
|
179
|
+
], InventoryHistory.prototype, "inventory", void 0);
|
|
180
|
+
__decorate([
|
|
181
|
+
(0, typeorm_1.Column)('date', { nullable: true }),
|
|
182
|
+
(0, type_graphql_1.Field)(type => shell_1.ScalarDate, { nullable: true }),
|
|
183
|
+
__metadata("design:type", Date)
|
|
184
|
+
], InventoryHistory.prototype, "expirationDate", void 0);
|
|
185
|
+
__decorate([
|
|
186
|
+
(0, typeorm_1.Column)('int', { nullable: true }),
|
|
187
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
188
|
+
__metadata("design:type", Number)
|
|
189
|
+
], InventoryHistory.prototype, "manufactureYear", void 0);
|
|
190
|
+
__decorate([
|
|
191
|
+
(0, typeorm_1.Column)('date', { nullable: true }),
|
|
192
|
+
(0, type_graphql_1.Field)(type => shell_1.ScalarDate, { nullable: true }),
|
|
193
|
+
__metadata("design:type", Date)
|
|
194
|
+
], InventoryHistory.prototype, "manufactureDate", void 0);
|
|
195
|
+
__decorate([
|
|
196
|
+
(0, typeorm_1.ManyToOne)(type => auth_base_1.User, { nullable: true }),
|
|
197
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
198
|
+
__metadata("design:type", typeof (_e = typeof auth_base_1.User !== "undefined" && auth_base_1.User) === "function" ? _e : Object)
|
|
199
|
+
], InventoryHistory.prototype, "creator", void 0);
|
|
200
|
+
__decorate([
|
|
201
|
+
(0, typeorm_1.RelationId)((inventoryHistory) => inventoryHistory.creator),
|
|
202
|
+
__metadata("design:type", String)
|
|
203
|
+
], InventoryHistory.prototype, "creatorId", void 0);
|
|
204
|
+
__decorate([
|
|
205
|
+
(0, typeorm_1.ManyToOne)(type => auth_base_1.User, { nullable: true }),
|
|
206
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
207
|
+
__metadata("design:type", typeof (_f = typeof auth_base_1.User !== "undefined" && auth_base_1.User) === "function" ? _f : Object)
|
|
208
|
+
], InventoryHistory.prototype, "updater", void 0);
|
|
209
|
+
__decorate([
|
|
210
|
+
(0, typeorm_1.RelationId)((inventoryHistory) => inventoryHistory.updater),
|
|
211
|
+
__metadata("design:type", String)
|
|
212
|
+
], InventoryHistory.prototype, "updaterId", void 0);
|
|
213
|
+
__decorate([
|
|
214
|
+
(0, typeorm_1.CreateDateColumn)(),
|
|
215
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
216
|
+
__metadata("design:type", Date)
|
|
217
|
+
], InventoryHistory.prototype, "createdAt", void 0);
|
|
218
|
+
__decorate([
|
|
219
|
+
(0, typeorm_1.UpdateDateColumn)(),
|
|
220
|
+
(0, type_graphql_1.Field)({ nullable: true }),
|
|
221
|
+
__metadata("design:type", Date)
|
|
222
|
+
], InventoryHistory.prototype, "updatedAt", void 0);
|
|
223
|
+
InventoryHistory = __decorate([
|
|
224
|
+
(0, typeorm_1.Entity)(),
|
|
225
|
+
(0, typeorm_1.Index)('ix_inventory-history_0', (inventoryHistory) => [inventoryHistory.domain, inventoryHistory.name], { unique: true }),
|
|
226
|
+
(0, typeorm_1.Index)('ix_inventory-history_1', (inventoryHistory) => [
|
|
227
|
+
inventoryHistory.domain,
|
|
228
|
+
inventoryHistory.palletId
|
|
229
|
+
]),
|
|
230
|
+
(0, typeorm_1.Index)('ix_inventory-history_2', (inventoryHistory) => [
|
|
231
|
+
inventoryHistory.inventory,
|
|
232
|
+
inventoryHistory.transactionType,
|
|
233
|
+
inventoryHistory.refOrderId
|
|
234
|
+
]),
|
|
235
|
+
(0, type_graphql_1.ObjectType)()
|
|
236
|
+
], InventoryHistory);
|
|
237
|
+
exports.InventoryHistory = InventoryHistory;
|
|
238
|
+
//# sourceMappingURL=inventory-history.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inventory-history.js","sourceRoot":"","sources":["../../../server/service/inventory-history/inventory-history.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.resolvers = exports.entities = void 0;
|
|
4
|
+
const inventory_item_1 = require("./inventory-item");
|
|
5
|
+
const inventory_item_mutation_1 = require("./inventory-item-mutation");
|
|
6
|
+
const inventory_item_query_1 = require("./inventory-item-query");
|
|
7
|
+
exports.entities = [inventory_item_1.InventoryItem];
|
|
8
|
+
exports.resolvers = [inventory_item_query_1.InventoryItemQuery, inventory_item_mutation_1.InventoryItemMutation];
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../server/service/inventory-item/index.ts"],"names":[],"mappings":";;;AAAA,qDAAgD;AAChD,uEAAiE;AACjE,iEAA2D;AAE9C,QAAA,QAAQ,GAAG,CAAC,8BAAa,CAAC,CAAA;AAC1B,QAAA,SAAS,GAAG,CAAC,yCAAkB,EAAE,+CAAqB,CAAC,CAAA"}
|
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.InventoryItemMutation = void 0;
|
|
16
|
+
const type_graphql_1 = require("type-graphql");
|
|
17
|
+
const typeorm_1 = require("typeorm");
|
|
18
|
+
const constants_1 = require("../../constants");
|
|
19
|
+
const utils_1 = require("../../utils");
|
|
20
|
+
const inventory_item_1 = require("./inventory-item");
|
|
21
|
+
const inventory_item_type_1 = require("./inventory-item-type");
|
|
22
|
+
let InventoryItemMutation = class InventoryItemMutation {
|
|
23
|
+
async createInventoryItem(inventoryItem, context) {
|
|
24
|
+
const { domain, user, tx } = context.state;
|
|
25
|
+
return await tx.getRepository(inventory_item_1.InventoryItem).save(Object.assign(Object.assign({}, inventoryItem), { domain, creator: user, updater: user }));
|
|
26
|
+
}
|
|
27
|
+
async updateInventoryItem(id, patch, context) {
|
|
28
|
+
const { domain, user, tx } = context.state;
|
|
29
|
+
const repository = tx.getRepository(inventory_item_1.InventoryItem);
|
|
30
|
+
const inventoryItem = await repository.findOne({
|
|
31
|
+
where: { domain, id }
|
|
32
|
+
});
|
|
33
|
+
return await repository.save(Object.assign(Object.assign(Object.assign({}, inventoryItem), patch), { updater: user }));
|
|
34
|
+
}
|
|
35
|
+
async updateInventoryItemSerialNumber(id, serialNumber, context) {
|
|
36
|
+
try {
|
|
37
|
+
const { domain, user, tx } = context.state;
|
|
38
|
+
const repository = tx.getRepository(inventory_item_1.InventoryItem);
|
|
39
|
+
const inventoryItem = await repository.findOne({
|
|
40
|
+
where: { domain, id },
|
|
41
|
+
relations: ['product']
|
|
42
|
+
});
|
|
43
|
+
const product = inventoryItem.product;
|
|
44
|
+
const duplicatedSerialNumberCnt = await repository.count({
|
|
45
|
+
domain,
|
|
46
|
+
product,
|
|
47
|
+
serialNumber
|
|
48
|
+
});
|
|
49
|
+
if (duplicatedSerialNumberCnt)
|
|
50
|
+
throw new Error(`Serial Number ${serialNumber} is duplicated`);
|
|
51
|
+
await repository.update({ id }, { serialNumber, updater: user });
|
|
52
|
+
return true;
|
|
53
|
+
}
|
|
54
|
+
catch (error) {
|
|
55
|
+
throw error;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
async updateMultipleInventoryItem(patches, context) {
|
|
59
|
+
const { domain, user, tx } = context.state;
|
|
60
|
+
let results = [];
|
|
61
|
+
const _createRecords = patches.filter((patch) => patch.cuFlag.toUpperCase() === '+');
|
|
62
|
+
const _updateRecords = patches.filter((patch) => patch.cuFlag.toUpperCase() === 'M');
|
|
63
|
+
const inventoryItemRepo = tx.getRepository(inventory_item_1.InventoryItem);
|
|
64
|
+
if (_createRecords.length > 0) {
|
|
65
|
+
for (let i = 0; i < _createRecords.length; i++) {
|
|
66
|
+
const newRecord = _createRecords[i];
|
|
67
|
+
const result = await inventoryItemRepo.save(Object.assign(Object.assign({}, newRecord), { domain, creator: user, updater: user }));
|
|
68
|
+
results.push(Object.assign(Object.assign({}, result), { cuFlag: '+' }));
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
if (_updateRecords.length > 0) {
|
|
72
|
+
for (let i = 0; i < _updateRecords.length; i++) {
|
|
73
|
+
const newRecord = _updateRecords[i];
|
|
74
|
+
const inventoryItem = await inventoryItemRepo.findOne(newRecord.id);
|
|
75
|
+
const result = await inventoryItemRepo.save(Object.assign(Object.assign(Object.assign({}, inventoryItem), newRecord), { updater: user }));
|
|
76
|
+
results.push(Object.assign(Object.assign({}, result), { cuFlag: 'M' }));
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
return results;
|
|
80
|
+
}
|
|
81
|
+
async deleteInventoryItem(id, context) {
|
|
82
|
+
const { domain, tx } = context.state;
|
|
83
|
+
await tx.getRepository(inventory_item_1.InventoryItem).delete({ domain, id });
|
|
84
|
+
return true;
|
|
85
|
+
}
|
|
86
|
+
async deleteInventoryItems(ids, context) {
|
|
87
|
+
const { domain, tx } = context.state;
|
|
88
|
+
await tx.getRepository(inventory_item_1.InventoryItem).delete({
|
|
89
|
+
domain,
|
|
90
|
+
id: (0, typeorm_1.In)(ids)
|
|
91
|
+
});
|
|
92
|
+
return true;
|
|
93
|
+
}
|
|
94
|
+
async replacePickedInventoryItem(selectedSerialNumber, newSerialNumber, context) {
|
|
95
|
+
var _a, _b;
|
|
96
|
+
const { domain, user, tx } = context.state;
|
|
97
|
+
const repository = tx.getRepository(inventory_item_1.InventoryItem);
|
|
98
|
+
const foundSerialNumber = await repository.findOne({
|
|
99
|
+
where: { domain, serialNumber: newSerialNumber }
|
|
100
|
+
});
|
|
101
|
+
if ((selectedSerialNumber.source = constants_1.INVENTORY_ITEM_SOURCE.OUTBOUND)) {
|
|
102
|
+
await tx.getRepository(inventory_item_1.InventoryItem).delete(selectedSerialNumber.id);
|
|
103
|
+
}
|
|
104
|
+
else {
|
|
105
|
+
await repository.update({
|
|
106
|
+
domain,
|
|
107
|
+
id: selectedSerialNumber.id
|
|
108
|
+
}, {
|
|
109
|
+
status: constants_1.INVENTORY_STATUS.STORED,
|
|
110
|
+
outboundOrderId: null,
|
|
111
|
+
updater: user
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
if (foundSerialNumber) {
|
|
115
|
+
if (foundSerialNumber.productId !== ((_a = selectedSerialNumber.product) === null || _a === void 0 ? void 0 : _a.id)) {
|
|
116
|
+
throw new Error('Invalid Serial Number');
|
|
117
|
+
}
|
|
118
|
+
if (foundSerialNumber.inventoryId !== ((_b = selectedSerialNumber.inventory) === null || _b === void 0 ? void 0 : _b.id)) {
|
|
119
|
+
throw new Error('Serial Number Registered Under Different Inventory');
|
|
120
|
+
}
|
|
121
|
+
if (foundSerialNumber.status !== constants_1.INVENTORY_STATUS.STORED) {
|
|
122
|
+
throw new Error('Inventory Item is not available');
|
|
123
|
+
}
|
|
124
|
+
foundSerialNumber.status = constants_1.INVENTORY_STATUS.PICKED;
|
|
125
|
+
foundSerialNumber.updater = user;
|
|
126
|
+
foundSerialNumber.outboundOrderId = selectedSerialNumber.outboundOrderId;
|
|
127
|
+
return await repository.save(foundSerialNumber);
|
|
128
|
+
}
|
|
129
|
+
else {
|
|
130
|
+
let inventoryItem = new inventory_item_1.InventoryItem();
|
|
131
|
+
inventoryItem.name = utils_1.InventoryNoGenerator.inventoryItemName();
|
|
132
|
+
inventoryItem.serialNumber = newSerialNumber;
|
|
133
|
+
inventoryItem.status = constants_1.INVENTORY_STATUS.PICKED;
|
|
134
|
+
inventoryItem.outboundOrderId = selectedSerialNumber.outboundOrderId;
|
|
135
|
+
inventoryItem.product = selectedSerialNumber.product;
|
|
136
|
+
inventoryItem.inventory = selectedSerialNumber.inventory;
|
|
137
|
+
inventoryItem.domain = domain;
|
|
138
|
+
return await repository.save(inventoryItem);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
async replacePackedInventoryItem(selectedSerialNumber, newSerialNumber, context) {
|
|
142
|
+
var _a, _b;
|
|
143
|
+
const { domain, user, tx } = context.state;
|
|
144
|
+
const repository = tx.getRepository(inventory_item_1.InventoryItem);
|
|
145
|
+
const foundSerialNumber = await repository.findOne({
|
|
146
|
+
where: { domain, serialNumber: newSerialNumber }
|
|
147
|
+
});
|
|
148
|
+
if ((selectedSerialNumber.source = constants_1.INVENTORY_ITEM_SOURCE.OUTBOUND)) {
|
|
149
|
+
await tx.getRepository(inventory_item_1.InventoryItem).delete(selectedSerialNumber.id);
|
|
150
|
+
}
|
|
151
|
+
else {
|
|
152
|
+
await repository.update({
|
|
153
|
+
domain,
|
|
154
|
+
id: selectedSerialNumber.id
|
|
155
|
+
}, {
|
|
156
|
+
status: constants_1.INVENTORY_STATUS.STORED,
|
|
157
|
+
outboundOrderId: null,
|
|
158
|
+
updater: user
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
if (foundSerialNumber) {
|
|
162
|
+
if (foundSerialNumber.productId !== ((_a = selectedSerialNumber.product) === null || _a === void 0 ? void 0 : _a.id)) {
|
|
163
|
+
throw new Error('Invalid Serial Number');
|
|
164
|
+
}
|
|
165
|
+
if (foundSerialNumber.inventoryId !== ((_b = selectedSerialNumber.inventory) === null || _b === void 0 ? void 0 : _b.id)) {
|
|
166
|
+
throw new Error('Serial Number Registered Under Different Inventory');
|
|
167
|
+
}
|
|
168
|
+
if (foundSerialNumber.status !== constants_1.INVENTORY_STATUS.STORED) {
|
|
169
|
+
throw new Error('Inventory Item is not available');
|
|
170
|
+
}
|
|
171
|
+
foundSerialNumber.status = constants_1.INVENTORY_STATUS.PACKED;
|
|
172
|
+
foundSerialNumber.updater = user;
|
|
173
|
+
foundSerialNumber.outboundOrderId = selectedSerialNumber.outboundOrderId;
|
|
174
|
+
return await repository.save(foundSerialNumber);
|
|
175
|
+
}
|
|
176
|
+
else {
|
|
177
|
+
let inventoryItem = new inventory_item_1.InventoryItem();
|
|
178
|
+
inventoryItem.name = utils_1.InventoryNoGenerator.inventoryItemName();
|
|
179
|
+
inventoryItem.serialNumber = newSerialNumber;
|
|
180
|
+
inventoryItem.status = constants_1.INVENTORY_STATUS.PACKED;
|
|
181
|
+
inventoryItem.source = constants_1.INVENTORY_ITEM_SOURCE.OUTBOUND;
|
|
182
|
+
inventoryItem.outboundOrderId = selectedSerialNumber.outboundOrderId;
|
|
183
|
+
inventoryItem.product = selectedSerialNumber.product;
|
|
184
|
+
inventoryItem.inventory = selectedSerialNumber.inventory;
|
|
185
|
+
inventoryItem.productDetail = selectedSerialNumber.productDetail;
|
|
186
|
+
inventoryItem.orderPackageId = selectedSerialNumber.orderPackageId;
|
|
187
|
+
inventoryItem.domain = domain;
|
|
188
|
+
inventoryItem.creator = user;
|
|
189
|
+
inventoryItem.updater = user;
|
|
190
|
+
return await repository.save(inventoryItem);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
};
|
|
194
|
+
__decorate([
|
|
195
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
|
196
|
+
(0, type_graphql_1.Mutation)(returns => inventory_item_1.InventoryItem, { description: 'To create new InventoryItem' }),
|
|
197
|
+
__param(0, (0, type_graphql_1.Arg)('inventoryItem')),
|
|
198
|
+
__param(1, (0, type_graphql_1.Ctx)()),
|
|
199
|
+
__metadata("design:type", Function),
|
|
200
|
+
__metadata("design:paramtypes", [inventory_item_type_1.NewInventoryItem, Object]),
|
|
201
|
+
__metadata("design:returntype", Promise)
|
|
202
|
+
], InventoryItemMutation.prototype, "createInventoryItem", null);
|
|
203
|
+
__decorate([
|
|
204
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
|
205
|
+
(0, type_graphql_1.Mutation)(returns => inventory_item_1.InventoryItem, { description: 'To modify InventoryItem information' }),
|
|
206
|
+
__param(0, (0, type_graphql_1.Arg)('id')),
|
|
207
|
+
__param(1, (0, type_graphql_1.Arg)('patch')),
|
|
208
|
+
__param(2, (0, type_graphql_1.Ctx)()),
|
|
209
|
+
__metadata("design:type", Function),
|
|
210
|
+
__metadata("design:paramtypes", [String, inventory_item_type_1.InventoryItemPatch, Object]),
|
|
211
|
+
__metadata("design:returntype", Promise)
|
|
212
|
+
], InventoryItemMutation.prototype, "updateInventoryItem", null);
|
|
213
|
+
__decorate([
|
|
214
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
|
215
|
+
(0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To modify InventoryItem serial number' }),
|
|
216
|
+
__param(0, (0, type_graphql_1.Arg)('id')),
|
|
217
|
+
__param(1, (0, type_graphql_1.Arg)('serialNumber')),
|
|
218
|
+
__param(2, (0, type_graphql_1.Ctx)()),
|
|
219
|
+
__metadata("design:type", Function),
|
|
220
|
+
__metadata("design:paramtypes", [String, String, Object]),
|
|
221
|
+
__metadata("design:returntype", Promise)
|
|
222
|
+
], InventoryItemMutation.prototype, "updateInventoryItemSerialNumber", null);
|
|
223
|
+
__decorate([
|
|
224
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
|
225
|
+
(0, type_graphql_1.Mutation)(returns => [inventory_item_1.InventoryItem], { description: "To modify multiple InventoryItems' information" }),
|
|
226
|
+
__param(0, (0, type_graphql_1.Arg)('patches', type => [inventory_item_type_1.InventoryItemPatch])),
|
|
227
|
+
__param(1, (0, type_graphql_1.Ctx)()),
|
|
228
|
+
__metadata("design:type", Function),
|
|
229
|
+
__metadata("design:paramtypes", [Array, Object]),
|
|
230
|
+
__metadata("design:returntype", Promise)
|
|
231
|
+
], InventoryItemMutation.prototype, "updateMultipleInventoryItem", null);
|
|
232
|
+
__decorate([
|
|
233
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
|
234
|
+
(0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To delete InventoryItem' }),
|
|
235
|
+
__param(0, (0, type_graphql_1.Arg)('id')),
|
|
236
|
+
__param(1, (0, type_graphql_1.Ctx)()),
|
|
237
|
+
__metadata("design:type", Function),
|
|
238
|
+
__metadata("design:paramtypes", [String, Object]),
|
|
239
|
+
__metadata("design:returntype", Promise)
|
|
240
|
+
], InventoryItemMutation.prototype, "deleteInventoryItem", null);
|
|
241
|
+
__decorate([
|
|
242
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
|
243
|
+
(0, type_graphql_1.Mutation)(returns => Boolean, { description: 'To delete multiple inventoryItems' }),
|
|
244
|
+
__param(0, (0, type_graphql_1.Arg)('ids', type => [String])),
|
|
245
|
+
__param(1, (0, type_graphql_1.Ctx)()),
|
|
246
|
+
__metadata("design:type", Function),
|
|
247
|
+
__metadata("design:paramtypes", [Array, Object]),
|
|
248
|
+
__metadata("design:returntype", Promise)
|
|
249
|
+
], InventoryItemMutation.prototype, "deleteInventoryItems", null);
|
|
250
|
+
__decorate([
|
|
251
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
|
252
|
+
(0, type_graphql_1.Mutation)(returns => inventory_item_1.InventoryItem, { description: 'To update picked InventoryItem with new IventoryItem' }),
|
|
253
|
+
__param(0, (0, type_graphql_1.Arg)('selectedSerialNumber')),
|
|
254
|
+
__param(1, (0, type_graphql_1.Arg)('newSerialNumber')),
|
|
255
|
+
__param(2, (0, type_graphql_1.Ctx)()),
|
|
256
|
+
__metadata("design:type", Function),
|
|
257
|
+
__metadata("design:paramtypes", [inventory_item_type_1.InventoryItemPatch, String, Object]),
|
|
258
|
+
__metadata("design:returntype", Promise)
|
|
259
|
+
], InventoryItemMutation.prototype, "replacePickedInventoryItem", null);
|
|
260
|
+
__decorate([
|
|
261
|
+
(0, type_graphql_1.Directive)('@transaction'),
|
|
262
|
+
(0, type_graphql_1.Mutation)(returns => inventory_item_1.InventoryItem, { description: 'To update picked InventoryItem with new InventoryItem' }),
|
|
263
|
+
__param(0, (0, type_graphql_1.Arg)('selectedSerialNumber')),
|
|
264
|
+
__param(1, (0, type_graphql_1.Arg)('newSerialNumber')),
|
|
265
|
+
__param(2, (0, type_graphql_1.Ctx)()),
|
|
266
|
+
__metadata("design:type", Function),
|
|
267
|
+
__metadata("design:paramtypes", [inventory_item_type_1.InventoryItemPatch, String, Object]),
|
|
268
|
+
__metadata("design:returntype", Promise)
|
|
269
|
+
], InventoryItemMutation.prototype, "replacePackedInventoryItem", null);
|
|
270
|
+
InventoryItemMutation = __decorate([
|
|
271
|
+
(0, type_graphql_1.Resolver)(inventory_item_1.InventoryItem)
|
|
272
|
+
], InventoryItemMutation);
|
|
273
|
+
exports.InventoryItemMutation = InventoryItemMutation;
|
|
274
|
+
//# sourceMappingURL=inventory-item-mutation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inventory-item-mutation.js","sourceRoot":"","sources":["../../../server/service/inventory-item/inventory-item-mutation.ts"],"names":[],"mappings":"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"}
|