@things-factory/operato-hub 4.3.775 → 4.3.777
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/routers/api/restful-apis/v1/company/add-products.js +39 -4
- package/dist-server/routers/api/restful-apis/v1/company/add-products.js.map +1 -1
- package/dist-server/routers/api/restful-apis/v1/company/upsert-products.js +48 -3
- package/dist-server/routers/api/restful-apis/v1/company/upsert-products.js.map +1 -1
- package/dist-server/routers/api/restful-apis/v1/utils/params.js +125 -0
- package/dist-server/routers/api/restful-apis/v1/utils/params.js.map +1 -1
- package/dist-server/routers/api/restful-apis/v1/warehouse/get-inbound-order-details.js +12 -12
- package/dist-server/routers/api/restful-apis/v1/warehouse/get-inbound-order-details.js.map +1 -1
- package/openapi/v1/product.yaml +528 -0
- package/package.json +17 -16
- package/server/routers/api/restful-apis/v1/company/add-products.ts +41 -5
- package/server/routers/api/restful-apis/v1/company/upsert-products.ts +52 -1
- package/server/routers/api/restful-apis/v1/utils/params.ts +125 -0
- package/server/routers/api/restful-apis/v1/warehouse/get-inbound-order-details.ts +2 -2
|
@@ -59,7 +59,7 @@ api_1.restfulApiRouter.get('/v1/warehouse/get-inbound-order-details', middleware
|
|
|
59
59
|
});
|
|
60
60
|
let grnOrderInventories = goodsReceivedNote === null || goodsReceivedNote === void 0 ? void 0 : goodsReceivedNote.arrivalNotice.orderInventories.reduce((acc, orderInventory) => {
|
|
61
61
|
// let key = `${orderInventory.productDetail.id}_${orderInventory.batchId}_${orderInventory.packingType}_${orderInventory.uom}_${orderInventory.inventory.expirationDate}`
|
|
62
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w
|
|
62
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w;
|
|
63
63
|
let existingItem = acc.find(item => {
|
|
64
64
|
var _a;
|
|
65
65
|
return item.product.id === orderInventory.product.id &&
|
|
@@ -89,27 +89,27 @@ api_1.restfulApiRouter.get('/v1/warehouse/get-inbound-order-details', middleware
|
|
|
89
89
|
packingType: orderInventory.packingType,
|
|
90
90
|
packingSize: orderInventory.packingSize,
|
|
91
91
|
status: orderInventory.status,
|
|
92
|
-
qty: (
|
|
92
|
+
qty: (orderInventory === null || orderInventory === void 0 ? void 0 : orderInventory.actualPackQty) || 0,
|
|
93
93
|
uom: orderInventory.uom,
|
|
94
94
|
uomValue: orderInventory.uomValue,
|
|
95
|
-
expirationDate: (
|
|
95
|
+
expirationDate: (_a = orderInventory.inventory) === null || _a === void 0 ? void 0 : _a.expirationDate,
|
|
96
96
|
location: {
|
|
97
|
-
id: (
|
|
98
|
-
name: (
|
|
99
|
-
type: (
|
|
100
|
-
zone: (
|
|
97
|
+
id: (_c = (_b = orderInventory.inventory) === null || _b === void 0 ? void 0 : _b.location) === null || _c === void 0 ? void 0 : _c.id,
|
|
98
|
+
name: (_e = (_d = orderInventory.inventory) === null || _d === void 0 ? void 0 : _d.location) === null || _e === void 0 ? void 0 : _e.name,
|
|
99
|
+
type: (_g = (_f = orderInventory.inventory) === null || _f === void 0 ? void 0 : _f.location) === null || _g === void 0 ? void 0 : _g.type,
|
|
100
|
+
zone: (_j = (_h = orderInventory.inventory) === null || _h === void 0 ? void 0 : _h.location) === null || _j === void 0 ? void 0 : _j.zone,
|
|
101
101
|
warehouse: {
|
|
102
|
-
id: (
|
|
103
|
-
name: (
|
|
104
|
-
description: (
|
|
105
|
-
refCode: (
|
|
102
|
+
id: (_m = (_l = (_k = orderInventory.inventory) === null || _k === void 0 ? void 0 : _k.location) === null || _l === void 0 ? void 0 : _l.warehouse) === null || _m === void 0 ? void 0 : _m.id,
|
|
103
|
+
name: (_q = (_p = (_o = orderInventory.inventory) === null || _o === void 0 ? void 0 : _o.location) === null || _p === void 0 ? void 0 : _p.warehouse) === null || _q === void 0 ? void 0 : _q.name,
|
|
104
|
+
description: (_t = (_s = (_r = orderInventory.inventory) === null || _r === void 0 ? void 0 : _r.location) === null || _s === void 0 ? void 0 : _s.warehouse) === null || _t === void 0 ? void 0 : _t.description,
|
|
105
|
+
refCode: (_w = (_v = (_u = orderInventory.inventory) === null || _u === void 0 ? void 0 : _u.location) === null || _v === void 0 ? void 0 : _v.warehouse) === null || _w === void 0 ? void 0 : _w.refCode
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
108
|
refItemId: foundOrderProduct === null || foundOrderProduct === void 0 ? void 0 : foundOrderProduct.refItemId
|
|
109
109
|
});
|
|
110
110
|
}
|
|
111
111
|
else {
|
|
112
|
-
existingItem.qty += (
|
|
112
|
+
existingItem.qty += (orderInventory === null || orderInventory === void 0 ? void 0 : orderInventory.actualPackQty) || 0;
|
|
113
113
|
}
|
|
114
114
|
return acc;
|
|
115
115
|
}, []);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-inbound-order-details.js","sourceRoot":"","sources":["../../../../../../server/routers/api/restful-apis/v1/warehouse/get-inbound-order-details.ts"],"names":[],"mappings":";;;;;AAAA,oDAAsB;AACtB,qCAAuC;AAEvC,6CAAgE;AAChE,2DAA6E;AAC7E,gDAA4F;AAC5F,oDAAyF;AAEzF,sBAAM,CAAC,GAAG,CACR,yCAAyC,EACzC,gCAAkB,EAClB,kCAAoB,EACpB,+BAAiB,EACjB,KAAK,EAAE,OAAO,EAAE,IAAI,EAAE,EAAE;;IACtB,IAAI;QACF,uCAAuC;QACvC,kCAAkC;QAClC,MAAM,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,KAAK,CAAA;QAChC,IAAI,MAAM,mCAAQ,OAAO,CAAC,KAAK,KAAE,MAAM,EAAE,MAAM,CAAC,EAAE,GAAE,CAAA;QACpD,IAAI,gBAAC,CAAC,GAAG,CAAC,MAAM,EAAE,YAAY,CAAC,EAAE;YAC/B,MAAM,CAAC,UAAU,CAAC,GAAG,MAAM,CAAC,YAAY,CAAC,CAAA;YACzC,OAAO,MAAM,CAAC,YAAY,CAAC,CAAA;SAC5B;QAED,IAAI,gBAAC,CAAC,GAAG,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE;YAC1B,MAAM,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,OAAO,CAAC,CAAA;YAChC,OAAO,MAAM,CAAC,OAAO,CAAC,CAAA;SACvB;QAED,IAAI,gBAAC,CAAC,GAAG,CAAC,MAAM,EAAE,SAAS,CAAC,EAAE;YAC5B,MAAM,CAAC,OAAO,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,CAAA;YACnC,OAAO,MAAM,CAAC,SAAS,CAAC,CAAA;SACzB;QAED,IAAI,gBAAC,CAAC,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,EAAE;YAC7B,MAAM,CAAC,QAAQ,CAAC,GAAG,MAAM,CAAC,UAAU,CAAC,CAAA;YACrC,OAAO,MAAM,CAAC,UAAU,CAAC,CAAA;SAC1B;QAED,IAAI,gBAAC,CAAC,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,EAAE;YAC7B,MAAM,CAAC,QAAQ,CAAC,GAAG,MAAM,CAAC,UAAU,CAAC,CAAA;YACrC,OAAO,MAAM,CAAC,UAAU,CAAC,CAAA;SAC1B;QAED,MAAM,aAAa,GAAkB,MAAM,IAAA,uBAAa,EAAC,0BAAa,CAAC,CAAC,OAAO,CAAC;YAC9E,KAAK,EAAE,MAAM;YACb,SAAS,EAAE,CAAC,eAAe,EAAE,uBAAuB,EAAE,UAAU,CAAC;SAClE,CAAC,CAAA;QAEF,IAAI,CAAC,aAAa,EAAE;YAClB,MAAM,IAAI,qBAAQ,CAAC,KAAK,EAAE,gBAAgB,CAAC,CAAA;SAC5C;QAED,MAAM,iBAAiB,GAAsB,MAAM,IAAA,uBAAa,EAAC,8BAAiB,CAAC,CAAC,OAAO,CAAC;YAC1F,KAAK,EAAE,EAAE,aAAa,EAAE;YACxB,SAAS,EAAE;gBACT,UAAU;gBACV,QAAQ;gBACR,eAAe;gBACf,gCAAgC;gBAChC,wCAAwC;gBACxC,8CAA8C;gBAC9C,0CAA0C;gBAC1C,mDAAmD;gBACnD,6DAA6D;aAC9D;SACF,CAAC,CAAA;QAEF,IAAI,mBAAmB,GAAG,iBAAiB,aAAjB,iBAAiB,uBAAjB,iBAAiB,CAAE,aAAa,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,cAAc,EAAE,EAAE;YACzG,0KAA0K;;YAE1K,IAAI,YAAY,GAAG,GAAG,CAAC,IAAI,CACzB,IAAI,CAAC,EAAE;;gBACL,OAAA,IAAI,CAAC,OAAO,CAAC,EAAE,KAAK,cAAc,CAAC,OAAO,CAAC,EAAE;oBAC7C,IAAI,CAAC,OAAO,KAAK,cAAc,CAAC,OAAO;oBACvC,IAAI,CAAC,WAAW,KAAK,cAAc,CAAC,WAAW;oBAC/C,IAAI,CAAC,GAAG,KAAK,cAAc,CAAC,GAAG;oBAC/B,IAAI,CAAC,cAAc,MAAK,MAAA,cAAc,CAAC,SAAS,0CAAE,cAAc,CAAA,CAAA;aAAA,CACnE,CAAA;YAED,IAAI,CAAC,YAAY,EAAE;gBACjB,IAAI,iBAAiB,GAAG,aAAa,CAAC,aAAa,CAAC,IAAI,CACtD,YAAY,CAAC,EAAE,CACb,YAAY,CAAC,OAAO,CAAC,EAAE,KAAK,cAAc,CAAC,OAAO,CAAC,EAAE;oBACrD,YAAY,CAAC,OAAO,KAAK,cAAc,CAAC,OAAO;oBAC/C,YAAY,CAAC,WAAW,KAAK,cAAc,CAAC,WAAW;oBACvD,YAAY,CAAC,GAAG,KAAK,cAAc,CAAC,GAAG,CAC1C,CAAA;gBACD,GAAG,CAAC,IAAI,CAAC;oBACP,OAAO,EAAE;wBACP,EAAE,EAAE,cAAc,CAAC,OAAO,CAAC,EAAE;wBAC7B,GAAG,EAAE,cAAc,CAAC,OAAO,CAAC,GAAG;wBAC/B,QAAQ,EAAE,cAAc,CAAC,OAAO,CAAC,QAAQ;wBACzC,IAAI,EAAE,cAAc,CAAC,OAAO,CAAC,IAAI;wBACjC,WAAW,EAAE,cAAc,CAAC,OAAO,CAAC,WAAW;wBAC/C,OAAO,EAAE,cAAc,CAAC,aAAa,CAAC,OAAO;wBAC7C,WAAW,EAAE,cAAc,CAAC,aAAa,CAAC,WAAW;wBACrD,WAAW,EAAE,cAAc,CAAC,aAAa,CAAC,WAAW;wBACrD,GAAG,EAAE,cAAc,CAAC,aAAa,CAAC,GAAG;qBACtC;oBACD,OAAO,EAAE,cAAc,CAAC,OAAO;oBAC/B,WAAW,EAAE,cAAc,CAAC,WAAW;oBACvC,WAAW,EAAE,cAAc,CAAC,WAAW;oBACvC,MAAM,EAAE,cAAc,CAAC,MAAM;oBAC7B,GAAG,EAAE,CAAA,
|
|
1
|
+
{"version":3,"file":"get-inbound-order-details.js","sourceRoot":"","sources":["../../../../../../server/routers/api/restful-apis/v1/warehouse/get-inbound-order-details.ts"],"names":[],"mappings":"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"}
|
package/openapi/v1/product.yaml
CHANGED
|
@@ -152,6 +152,84 @@ definitions:
|
|
|
152
152
|
auxValue5:
|
|
153
153
|
type: 'string'
|
|
154
154
|
example: 'string'
|
|
155
|
+
auxUnit6:
|
|
156
|
+
type: 'string'
|
|
157
|
+
example: 'string'
|
|
158
|
+
auxValue6:
|
|
159
|
+
type: 'string'
|
|
160
|
+
example: 'string'
|
|
161
|
+
auxUnit7:
|
|
162
|
+
type: 'string'
|
|
163
|
+
example: 'string'
|
|
164
|
+
auxValue7:
|
|
165
|
+
type: 'string'
|
|
166
|
+
example: 'string'
|
|
167
|
+
auxUnit8:
|
|
168
|
+
type: 'string'
|
|
169
|
+
example: 'string'
|
|
170
|
+
auxValue8:
|
|
171
|
+
type: 'string'
|
|
172
|
+
example: 'string'
|
|
173
|
+
auxUnit9:
|
|
174
|
+
type: 'string'
|
|
175
|
+
example: 'string'
|
|
176
|
+
auxValue9:
|
|
177
|
+
type: 'string'
|
|
178
|
+
example: 'string'
|
|
179
|
+
auxUnit10:
|
|
180
|
+
type: 'string'
|
|
181
|
+
example: 'string'
|
|
182
|
+
auxValue10:
|
|
183
|
+
type: 'string'
|
|
184
|
+
example: 'string'
|
|
185
|
+
auxUnit11:
|
|
186
|
+
type: 'string'
|
|
187
|
+
example: 'string'
|
|
188
|
+
auxValue11:
|
|
189
|
+
type: 'string'
|
|
190
|
+
example: 'string'
|
|
191
|
+
auxUnit12:
|
|
192
|
+
type: 'string'
|
|
193
|
+
example: 'string'
|
|
194
|
+
auxValue12:
|
|
195
|
+
type: 'string'
|
|
196
|
+
example: 'string'
|
|
197
|
+
auxUnit13:
|
|
198
|
+
type: 'string'
|
|
199
|
+
example: 'string'
|
|
200
|
+
auxValue13:
|
|
201
|
+
type: 'string'
|
|
202
|
+
example: 'string'
|
|
203
|
+
auxUnit14:
|
|
204
|
+
type: 'string'
|
|
205
|
+
example: 'string'
|
|
206
|
+
auxValue14:
|
|
207
|
+
type: 'string'
|
|
208
|
+
example: 'string'
|
|
209
|
+
auxUnit15:
|
|
210
|
+
type: 'string'
|
|
211
|
+
example: 'string'
|
|
212
|
+
auxValue15:
|
|
213
|
+
type: 'string'
|
|
214
|
+
example: 'string'
|
|
215
|
+
auxUnit16:
|
|
216
|
+
type: 'string'
|
|
217
|
+
example: 'string'
|
|
218
|
+
auxValue16:
|
|
219
|
+
type: 'string'
|
|
220
|
+
example: 'string'
|
|
221
|
+
auxUnit17:
|
|
222
|
+
type: 'string'
|
|
223
|
+
example: 'string'
|
|
224
|
+
auxValue17:
|
|
225
|
+
type: 'string'
|
|
226
|
+
example: 'string'
|
|
227
|
+
auxUnit18:
|
|
228
|
+
type: 'string'
|
|
229
|
+
example: 'string'
|
|
230
|
+
auxValue18:
|
|
231
|
+
type: 'string'
|
|
232
|
+
example: 'string'
|
|
155
233
|
childProductDetail:
|
|
156
234
|
type: 'string'
|
|
157
235
|
example: 'string'
|
|
@@ -495,6 +573,84 @@ definitions:
|
|
|
495
573
|
auxValue5:
|
|
496
574
|
type: 'string'
|
|
497
575
|
example: 'string'
|
|
576
|
+
auxUnit6:
|
|
577
|
+
type: 'string'
|
|
578
|
+
example: 'string'
|
|
579
|
+
auxValue6:
|
|
580
|
+
type: 'string'
|
|
581
|
+
example: 'string'
|
|
582
|
+
auxUnit7:
|
|
583
|
+
type: 'string'
|
|
584
|
+
example: 'string'
|
|
585
|
+
auxValue7:
|
|
586
|
+
type: 'string'
|
|
587
|
+
example: 'string'
|
|
588
|
+
auxUnit8:
|
|
589
|
+
type: 'string'
|
|
590
|
+
example: 'string'
|
|
591
|
+
auxValue8:
|
|
592
|
+
type: 'string'
|
|
593
|
+
example: 'string'
|
|
594
|
+
auxUnit9:
|
|
595
|
+
type: 'string'
|
|
596
|
+
example: 'string'
|
|
597
|
+
auxValue9:
|
|
598
|
+
type: 'string'
|
|
599
|
+
example: 'string'
|
|
600
|
+
auxUnit10:
|
|
601
|
+
type: 'string'
|
|
602
|
+
example: 'string'
|
|
603
|
+
auxValue10:
|
|
604
|
+
type: 'string'
|
|
605
|
+
example: 'string'
|
|
606
|
+
auxUnit11:
|
|
607
|
+
type: 'string'
|
|
608
|
+
example: 'string'
|
|
609
|
+
auxValue11:
|
|
610
|
+
type: 'string'
|
|
611
|
+
example: 'string'
|
|
612
|
+
auxUnit12:
|
|
613
|
+
type: 'string'
|
|
614
|
+
example: 'string'
|
|
615
|
+
auxValue12:
|
|
616
|
+
type: 'string'
|
|
617
|
+
example: 'string'
|
|
618
|
+
auxUnit13:
|
|
619
|
+
type: 'string'
|
|
620
|
+
example: 'string'
|
|
621
|
+
auxValue13:
|
|
622
|
+
type: 'string'
|
|
623
|
+
example: 'string'
|
|
624
|
+
auxUnit14:
|
|
625
|
+
type: 'string'
|
|
626
|
+
example: 'string'
|
|
627
|
+
auxValue14:
|
|
628
|
+
type: 'string'
|
|
629
|
+
example: 'string'
|
|
630
|
+
auxUnit15:
|
|
631
|
+
type: 'string'
|
|
632
|
+
example: 'string'
|
|
633
|
+
auxValue15:
|
|
634
|
+
type: 'string'
|
|
635
|
+
example: 'string'
|
|
636
|
+
auxUnit16:
|
|
637
|
+
type: 'string'
|
|
638
|
+
example: 'string'
|
|
639
|
+
auxValue16:
|
|
640
|
+
type: 'string'
|
|
641
|
+
example: 'string'
|
|
642
|
+
auxUnit17:
|
|
643
|
+
type: 'string'
|
|
644
|
+
example: 'string'
|
|
645
|
+
auxValue17:
|
|
646
|
+
type: 'string'
|
|
647
|
+
example: 'string'
|
|
648
|
+
auxUnit18:
|
|
649
|
+
type: 'string'
|
|
650
|
+
example: 'string'
|
|
651
|
+
auxValue18:
|
|
652
|
+
type: 'string'
|
|
653
|
+
example: 'string'
|
|
498
654
|
childProductDetail:
|
|
499
655
|
type: 'string'
|
|
500
656
|
example: 'string'
|
|
@@ -578,6 +734,114 @@ paths:
|
|
|
578
734
|
minInboundShelfLife:
|
|
579
735
|
type: 'integer'
|
|
580
736
|
example: 300
|
|
737
|
+
auxUnit1:
|
|
738
|
+
type: 'string'
|
|
739
|
+
example: 'string'
|
|
740
|
+
auxValue1:
|
|
741
|
+
type: 'string'
|
|
742
|
+
example: 'string'
|
|
743
|
+
auxUnit2:
|
|
744
|
+
type: 'string'
|
|
745
|
+
example: 'string'
|
|
746
|
+
auxValue2:
|
|
747
|
+
type: 'string'
|
|
748
|
+
example: 'string'
|
|
749
|
+
auxUnit3:
|
|
750
|
+
type: 'string'
|
|
751
|
+
example: 'string'
|
|
752
|
+
auxValue3:
|
|
753
|
+
type: 'string'
|
|
754
|
+
example: 'string'
|
|
755
|
+
auxUnit4:
|
|
756
|
+
type: 'string'
|
|
757
|
+
example: 'string'
|
|
758
|
+
auxValue4:
|
|
759
|
+
type: 'string'
|
|
760
|
+
example: 'string'
|
|
761
|
+
auxUnit5:
|
|
762
|
+
type: 'string'
|
|
763
|
+
example: 'string'
|
|
764
|
+
auxValue5:
|
|
765
|
+
type: 'string'
|
|
766
|
+
example: 'string'
|
|
767
|
+
auxUnit6:
|
|
768
|
+
type: 'string'
|
|
769
|
+
example: 'string'
|
|
770
|
+
auxValue6:
|
|
771
|
+
type: 'string'
|
|
772
|
+
example: 'string'
|
|
773
|
+
auxUnit7:
|
|
774
|
+
type: 'string'
|
|
775
|
+
example: 'string'
|
|
776
|
+
auxValue7:
|
|
777
|
+
type: 'string'
|
|
778
|
+
example: 'string'
|
|
779
|
+
auxUnit8:
|
|
780
|
+
type: 'string'
|
|
781
|
+
example: 'string'
|
|
782
|
+
auxValue8:
|
|
783
|
+
type: 'string'
|
|
784
|
+
example: 'string'
|
|
785
|
+
auxUnit9:
|
|
786
|
+
type: 'string'
|
|
787
|
+
example: 'string'
|
|
788
|
+
auxValue9:
|
|
789
|
+
type: 'string'
|
|
790
|
+
example: 'string'
|
|
791
|
+
auxUnit10:
|
|
792
|
+
type: 'string'
|
|
793
|
+
example: 'string'
|
|
794
|
+
auxValue10:
|
|
795
|
+
type: 'string'
|
|
796
|
+
example: 'string'
|
|
797
|
+
auxUnit11:
|
|
798
|
+
type: 'string'
|
|
799
|
+
example: 'string'
|
|
800
|
+
auxValue11:
|
|
801
|
+
type: 'string'
|
|
802
|
+
example: 'string'
|
|
803
|
+
auxUnit12:
|
|
804
|
+
type: 'string'
|
|
805
|
+
example: 'string'
|
|
806
|
+
auxValue12:
|
|
807
|
+
type: 'string'
|
|
808
|
+
example: 'string'
|
|
809
|
+
auxUnit13:
|
|
810
|
+
type: 'string'
|
|
811
|
+
example: 'string'
|
|
812
|
+
auxValue13:
|
|
813
|
+
type: 'string'
|
|
814
|
+
example: 'string'
|
|
815
|
+
auxUnit14:
|
|
816
|
+
type: 'string'
|
|
817
|
+
example: 'string'
|
|
818
|
+
auxValue14:
|
|
819
|
+
type: 'string'
|
|
820
|
+
example: 'string'
|
|
821
|
+
auxUnit15:
|
|
822
|
+
type: 'string'
|
|
823
|
+
example: 'string'
|
|
824
|
+
auxValue15:
|
|
825
|
+
type: 'string'
|
|
826
|
+
example: 'string'
|
|
827
|
+
auxUnit16:
|
|
828
|
+
type: 'string'
|
|
829
|
+
example: 'string'
|
|
830
|
+
auxValue16:
|
|
831
|
+
type: 'string'
|
|
832
|
+
example: 'string'
|
|
833
|
+
auxUnit17:
|
|
834
|
+
type: 'string'
|
|
835
|
+
example: 'string'
|
|
836
|
+
auxValue17:
|
|
837
|
+
type: 'string'
|
|
838
|
+
example: 'string'
|
|
839
|
+
auxUnit18:
|
|
840
|
+
type: 'string'
|
|
841
|
+
example: 'string'
|
|
842
|
+
auxValue18:
|
|
843
|
+
type: 'string'
|
|
844
|
+
example: 'string'
|
|
581
845
|
productDetails:
|
|
582
846
|
type: 'array'
|
|
583
847
|
items:
|
|
@@ -690,6 +954,84 @@ paths:
|
|
|
690
954
|
auxValue5:
|
|
691
955
|
type: 'string'
|
|
692
956
|
example: 'string'
|
|
957
|
+
auxUnit6:
|
|
958
|
+
type: 'string'
|
|
959
|
+
example: 'string'
|
|
960
|
+
auxValue6:
|
|
961
|
+
type: 'string'
|
|
962
|
+
example: 'string'
|
|
963
|
+
auxUnit7:
|
|
964
|
+
type: 'string'
|
|
965
|
+
example: 'string'
|
|
966
|
+
auxValue7:
|
|
967
|
+
type: 'string'
|
|
968
|
+
example: 'string'
|
|
969
|
+
auxUnit8:
|
|
970
|
+
type: 'string'
|
|
971
|
+
example: 'string'
|
|
972
|
+
auxValue8:
|
|
973
|
+
type: 'string'
|
|
974
|
+
example: 'string'
|
|
975
|
+
auxUnit9:
|
|
976
|
+
type: 'string'
|
|
977
|
+
example: 'string'
|
|
978
|
+
auxValue9:
|
|
979
|
+
type: 'string'
|
|
980
|
+
example: 'string'
|
|
981
|
+
auxUnit10:
|
|
982
|
+
type: 'string'
|
|
983
|
+
example: 'string'
|
|
984
|
+
auxValue10:
|
|
985
|
+
type: 'string'
|
|
986
|
+
example: 'string'
|
|
987
|
+
auxUnit11:
|
|
988
|
+
type: 'string'
|
|
989
|
+
example: 'string'
|
|
990
|
+
auxValue11:
|
|
991
|
+
type: 'string'
|
|
992
|
+
example: 'string'
|
|
993
|
+
auxUnit12:
|
|
994
|
+
type: 'string'
|
|
995
|
+
example: 'string'
|
|
996
|
+
auxValue12:
|
|
997
|
+
type: 'string'
|
|
998
|
+
example: 'string'
|
|
999
|
+
auxUnit13:
|
|
1000
|
+
type: 'string'
|
|
1001
|
+
example: 'string'
|
|
1002
|
+
auxValue13:
|
|
1003
|
+
type: 'string'
|
|
1004
|
+
example: 'string'
|
|
1005
|
+
auxUnit14:
|
|
1006
|
+
type: 'string'
|
|
1007
|
+
example: 'string'
|
|
1008
|
+
auxValue14:
|
|
1009
|
+
type: 'string'
|
|
1010
|
+
example: 'string'
|
|
1011
|
+
auxUnit15:
|
|
1012
|
+
type: 'string'
|
|
1013
|
+
example: 'string'
|
|
1014
|
+
auxValue15:
|
|
1015
|
+
type: 'string'
|
|
1016
|
+
example: 'string'
|
|
1017
|
+
auxUnit16:
|
|
1018
|
+
type: 'string'
|
|
1019
|
+
example: 'string'
|
|
1020
|
+
auxValue16:
|
|
1021
|
+
type: 'string'
|
|
1022
|
+
example: 'string'
|
|
1023
|
+
auxUnit17:
|
|
1024
|
+
type: 'string'
|
|
1025
|
+
example: 'string'
|
|
1026
|
+
auxValue17:
|
|
1027
|
+
type: 'string'
|
|
1028
|
+
example: 'string'
|
|
1029
|
+
auxUnit18:
|
|
1030
|
+
type: 'string'
|
|
1031
|
+
example: 'string'
|
|
1032
|
+
auxValue18:
|
|
1033
|
+
type: 'string'
|
|
1034
|
+
example: 'string'
|
|
693
1035
|
childProductDetail:
|
|
694
1036
|
type: 'string'
|
|
695
1037
|
example: 'string'
|
|
@@ -780,6 +1122,114 @@ paths:
|
|
|
780
1122
|
minInboundShelfLife:
|
|
781
1123
|
type: 'integer'
|
|
782
1124
|
example: 300
|
|
1125
|
+
auxUnit1:
|
|
1126
|
+
type: 'string'
|
|
1127
|
+
example: 'string'
|
|
1128
|
+
auxValue1:
|
|
1129
|
+
type: 'string'
|
|
1130
|
+
example: 'string'
|
|
1131
|
+
auxUnit2:
|
|
1132
|
+
type: 'string'
|
|
1133
|
+
example: 'string'
|
|
1134
|
+
auxValue2:
|
|
1135
|
+
type: 'string'
|
|
1136
|
+
example: 'string'
|
|
1137
|
+
auxUnit3:
|
|
1138
|
+
type: 'string'
|
|
1139
|
+
example: 'string'
|
|
1140
|
+
auxValue3:
|
|
1141
|
+
type: 'string'
|
|
1142
|
+
example: 'string'
|
|
1143
|
+
auxUnit4:
|
|
1144
|
+
type: 'string'
|
|
1145
|
+
example: 'string'
|
|
1146
|
+
auxValue4:
|
|
1147
|
+
type: 'string'
|
|
1148
|
+
example: 'string'
|
|
1149
|
+
auxUnit5:
|
|
1150
|
+
type: 'string'
|
|
1151
|
+
example: 'string'
|
|
1152
|
+
auxValue5:
|
|
1153
|
+
type: 'string'
|
|
1154
|
+
example: 'string'
|
|
1155
|
+
auxUnit6:
|
|
1156
|
+
type: 'string'
|
|
1157
|
+
example: 'string'
|
|
1158
|
+
auxValue6:
|
|
1159
|
+
type: 'string'
|
|
1160
|
+
example: 'string'
|
|
1161
|
+
auxUnit7:
|
|
1162
|
+
type: 'string'
|
|
1163
|
+
example: 'string'
|
|
1164
|
+
auxValue7:
|
|
1165
|
+
type: 'string'
|
|
1166
|
+
example: 'string'
|
|
1167
|
+
auxUnit8:
|
|
1168
|
+
type: 'string'
|
|
1169
|
+
example: 'string'
|
|
1170
|
+
auxValue8:
|
|
1171
|
+
type: 'string'
|
|
1172
|
+
example: 'string'
|
|
1173
|
+
auxUnit9:
|
|
1174
|
+
type: 'string'
|
|
1175
|
+
example: 'string'
|
|
1176
|
+
auxValue9:
|
|
1177
|
+
type: 'string'
|
|
1178
|
+
example: 'string'
|
|
1179
|
+
auxUnit10:
|
|
1180
|
+
type: 'string'
|
|
1181
|
+
example: 'string'
|
|
1182
|
+
auxValue10:
|
|
1183
|
+
type: 'string'
|
|
1184
|
+
example: 'string'
|
|
1185
|
+
auxUnit11:
|
|
1186
|
+
type: 'string'
|
|
1187
|
+
example: 'string'
|
|
1188
|
+
auxValue11:
|
|
1189
|
+
type: 'string'
|
|
1190
|
+
example: 'string'
|
|
1191
|
+
auxUnit12:
|
|
1192
|
+
type: 'string'
|
|
1193
|
+
example: 'string'
|
|
1194
|
+
auxValue12:
|
|
1195
|
+
type: 'string'
|
|
1196
|
+
example: 'string'
|
|
1197
|
+
auxUnit13:
|
|
1198
|
+
type: 'string'
|
|
1199
|
+
example: 'string'
|
|
1200
|
+
auxValue13:
|
|
1201
|
+
type: 'string'
|
|
1202
|
+
example: 'string'
|
|
1203
|
+
auxUnit14:
|
|
1204
|
+
type: 'string'
|
|
1205
|
+
example: 'string'
|
|
1206
|
+
auxValue14:
|
|
1207
|
+
type: 'string'
|
|
1208
|
+
example: 'string'
|
|
1209
|
+
auxUnit15:
|
|
1210
|
+
type: 'string'
|
|
1211
|
+
example: 'string'
|
|
1212
|
+
auxValue15:
|
|
1213
|
+
type: 'string'
|
|
1214
|
+
example: 'string'
|
|
1215
|
+
auxUnit16:
|
|
1216
|
+
type: 'string'
|
|
1217
|
+
example: 'string'
|
|
1218
|
+
auxValue16:
|
|
1219
|
+
type: 'string'
|
|
1220
|
+
example: 'string'
|
|
1221
|
+
auxUnit17:
|
|
1222
|
+
type: 'string'
|
|
1223
|
+
example: 'string'
|
|
1224
|
+
auxValue17:
|
|
1225
|
+
type: 'string'
|
|
1226
|
+
example: 'string'
|
|
1227
|
+
auxUnit18:
|
|
1228
|
+
type: 'string'
|
|
1229
|
+
example: 'string'
|
|
1230
|
+
auxValue18:
|
|
1231
|
+
type: 'string'
|
|
1232
|
+
example: 'string'
|
|
783
1233
|
productDetails:
|
|
784
1234
|
type: 'array'
|
|
785
1235
|
items:
|
|
@@ -892,6 +1342,84 @@ paths:
|
|
|
892
1342
|
auxValue5:
|
|
893
1343
|
type: 'string'
|
|
894
1344
|
example: 'string'
|
|
1345
|
+
auxUnit6:
|
|
1346
|
+
type: 'string'
|
|
1347
|
+
example: 'string'
|
|
1348
|
+
auxValue6:
|
|
1349
|
+
type: 'string'
|
|
1350
|
+
example: 'string'
|
|
1351
|
+
auxUnit7:
|
|
1352
|
+
type: 'string'
|
|
1353
|
+
example: 'string'
|
|
1354
|
+
auxValue7:
|
|
1355
|
+
type: 'string'
|
|
1356
|
+
example: 'string'
|
|
1357
|
+
auxUnit8:
|
|
1358
|
+
type: 'string'
|
|
1359
|
+
example: 'string'
|
|
1360
|
+
auxValue8:
|
|
1361
|
+
type: 'string'
|
|
1362
|
+
example: 'string'
|
|
1363
|
+
auxUnit9:
|
|
1364
|
+
type: 'string'
|
|
1365
|
+
example: 'string'
|
|
1366
|
+
auxValue9:
|
|
1367
|
+
type: 'string'
|
|
1368
|
+
example: 'string'
|
|
1369
|
+
auxUnit10:
|
|
1370
|
+
type: 'string'
|
|
1371
|
+
example: 'string'
|
|
1372
|
+
auxValue10:
|
|
1373
|
+
type: 'string'
|
|
1374
|
+
example: 'string'
|
|
1375
|
+
auxUnit11:
|
|
1376
|
+
type: 'string'
|
|
1377
|
+
example: 'string'
|
|
1378
|
+
auxValue11:
|
|
1379
|
+
type: 'string'
|
|
1380
|
+
example: 'string'
|
|
1381
|
+
auxUnit12:
|
|
1382
|
+
type: 'string'
|
|
1383
|
+
example: 'string'
|
|
1384
|
+
auxValue12:
|
|
1385
|
+
type: 'string'
|
|
1386
|
+
example: 'string'
|
|
1387
|
+
auxUnit13:
|
|
1388
|
+
type: 'string'
|
|
1389
|
+
example: 'string'
|
|
1390
|
+
auxValue13:
|
|
1391
|
+
type: 'string'
|
|
1392
|
+
example: 'string'
|
|
1393
|
+
auxUnit14:
|
|
1394
|
+
type: 'string'
|
|
1395
|
+
example: 'string'
|
|
1396
|
+
auxValue14:
|
|
1397
|
+
type: 'string'
|
|
1398
|
+
example: 'string'
|
|
1399
|
+
auxUnit15:
|
|
1400
|
+
type: 'string'
|
|
1401
|
+
example: 'string'
|
|
1402
|
+
auxValue15:
|
|
1403
|
+
type: 'string'
|
|
1404
|
+
example: 'string'
|
|
1405
|
+
auxUnit16:
|
|
1406
|
+
type: 'string'
|
|
1407
|
+
example: 'string'
|
|
1408
|
+
auxValue16:
|
|
1409
|
+
type: 'string'
|
|
1410
|
+
example: 'string'
|
|
1411
|
+
auxUnit17:
|
|
1412
|
+
type: 'string'
|
|
1413
|
+
example: 'string'
|
|
1414
|
+
auxValue17:
|
|
1415
|
+
type: 'string'
|
|
1416
|
+
example: 'string'
|
|
1417
|
+
auxUnit18:
|
|
1418
|
+
type: 'string'
|
|
1419
|
+
example: 'string'
|
|
1420
|
+
auxValue18:
|
|
1421
|
+
type: 'string'
|
|
1422
|
+
example: 'string'
|
|
895
1423
|
childProductDetail:
|
|
896
1424
|
type: 'string'
|
|
897
1425
|
example: 'string'
|