repzo-sap-absjo 1.0.22 → 1.0.23
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/changelog.md +1 -0
- package/lib/actions/create_invoice.js +48 -24
- package/lib/actions/create_proforma.js +49 -25
- package/lib/util.d.ts +8 -1
- package/lib/util.js +18 -1
- package/package.json +2 -2
- package/src/actions/create_invoice.ts +24 -2
- package/src/actions/create_proforma.ts +24 -2
- package/src/util.ts +9 -1
package/changelog.md
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
- [command/measureunit-family] use _.xor instead or _.difference @maramalshen
|
|
21
21
|
- [command/price_list] fix bug in priceList-item @maramalshen
|
|
22
22
|
- [actions/**] don't update integration_meta.sync_to_sap_succeeded if it is already true @maramalshen
|
|
23
|
+
- [actions/create_invoice] include item.get_promotion in MEO_Serial & Promotion_Name @maramalshen
|
|
23
24
|
|
|
24
25
|
### Removed
|
|
25
26
|
|
|
@@ -3,7 +3,7 @@ import { _create, getUniqueConcatenatedValues } from "../util.js";
|
|
|
3
3
|
import { v4 as uuid } from "uuid";
|
|
4
4
|
import moment from "moment-timezone";
|
|
5
5
|
export const create_invoice = async (event, options) => {
|
|
6
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p;
|
|
6
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
7
7
|
const repzo = new Repzo(
|
|
8
8
|
(_a = options.data) === null || _a === void 0 ? void 0 : _a.repzoApiKey,
|
|
9
9
|
{ env: options.env }
|
|
@@ -197,28 +197,42 @@ export const create_invoice = async (event, options) => {
|
|
|
197
197
|
},
|
|
198
198
|
{ per_page: 50000 }
|
|
199
199
|
);
|
|
200
|
+
const all_promotions = {};
|
|
201
|
+
(_g =
|
|
202
|
+
repzo_invoice === null || repzo_invoice === void 0
|
|
203
|
+
? void 0
|
|
204
|
+
: repzo_invoice.promotions) === null || _g === void 0
|
|
205
|
+
? void 0
|
|
206
|
+
: _g.forEach((promo) => {
|
|
207
|
+
if (!promo) return;
|
|
208
|
+
all_promotions[promo._id] = {
|
|
209
|
+
_id: promo._id,
|
|
210
|
+
name: promo.name,
|
|
211
|
+
ref: promo.ref,
|
|
212
|
+
};
|
|
213
|
+
});
|
|
200
214
|
// Prepare SAP_invoice_items
|
|
201
215
|
const items = [];
|
|
202
216
|
for (
|
|
203
217
|
let i = 0;
|
|
204
218
|
i <
|
|
205
|
-
((
|
|
219
|
+
((_h =
|
|
206
220
|
repzo_invoice === null || repzo_invoice === void 0
|
|
207
221
|
? void 0
|
|
208
|
-
: repzo_invoice.items) === null ||
|
|
222
|
+
: repzo_invoice.items) === null || _h === void 0
|
|
209
223
|
? void 0
|
|
210
|
-
:
|
|
224
|
+
: _h.length);
|
|
211
225
|
i++
|
|
212
226
|
) {
|
|
213
227
|
const item = repzo_invoice.items[i];
|
|
214
228
|
// Get Repzo Tax
|
|
215
229
|
const repzo_tax =
|
|
216
|
-
(
|
|
230
|
+
(_j =
|
|
217
231
|
repzo_taxes === null || repzo_taxes === void 0
|
|
218
232
|
? void 0
|
|
219
|
-
: repzo_taxes.data) === null ||
|
|
233
|
+
: repzo_taxes.data) === null || _j === void 0
|
|
220
234
|
? void 0
|
|
221
|
-
:
|
|
235
|
+
: _j.find((t) => {
|
|
222
236
|
var _a, _b, _c;
|
|
223
237
|
return (
|
|
224
238
|
((_a = t._id) === null || _a === void 0
|
|
@@ -235,12 +249,12 @@ export const create_invoice = async (event, options) => {
|
|
|
235
249
|
if (!repzo_tax) throw `Tax with _id: ${item.tax._id} not found in Repzo`;
|
|
236
250
|
// Get Repzo UoM
|
|
237
251
|
const repzo_measureunit =
|
|
238
|
-
(
|
|
252
|
+
(_k =
|
|
239
253
|
repzo_measureunits === null || repzo_measureunits === void 0
|
|
240
254
|
? void 0
|
|
241
|
-
: repzo_measureunits.data) === null ||
|
|
255
|
+
: repzo_measureunits.data) === null || _k === void 0
|
|
242
256
|
? void 0
|
|
243
|
-
:
|
|
257
|
+
: _k.find((m) => {
|
|
244
258
|
var _a, _b, _c;
|
|
245
259
|
return (
|
|
246
260
|
((_a = m._id) === null || _a === void 0
|
|
@@ -256,16 +270,16 @@ export const create_invoice = async (event, options) => {
|
|
|
256
270
|
});
|
|
257
271
|
if (!repzo_measureunit)
|
|
258
272
|
throw `Uom with _id: ${
|
|
259
|
-
(
|
|
273
|
+
(_l = item.measureunit) === null || _l === void 0 ? void 0 : _l._id
|
|
260
274
|
} not found in Repzo`;
|
|
261
275
|
// Get Repzo Product
|
|
262
276
|
const repzo_product =
|
|
263
|
-
(
|
|
277
|
+
(_m =
|
|
264
278
|
repzo_products === null || repzo_products === void 0
|
|
265
279
|
? void 0
|
|
266
|
-
: repzo_products.data) === null ||
|
|
280
|
+
: repzo_products.data) === null || _m === void 0
|
|
267
281
|
? void 0
|
|
268
|
-
:
|
|
282
|
+
: _m.find((p) => {
|
|
269
283
|
var _a, _b, _c;
|
|
270
284
|
return (
|
|
271
285
|
((_a = p._id) === null || _a === void 0
|
|
@@ -282,30 +296,40 @@ export const create_invoice = async (event, options) => {
|
|
|
282
296
|
if (!repzo_product)
|
|
283
297
|
throw `Product with _id: ${item.measureunit._id} not found in Repzo`;
|
|
284
298
|
items.push({
|
|
285
|
-
MEO_Serial: getUniqueConcatenatedValues(
|
|
286
|
-
|
|
299
|
+
MEO_Serial: getUniqueConcatenatedValues(
|
|
300
|
+
item,
|
|
301
|
+
"ref",
|
|
302
|
+
" | ",
|
|
303
|
+
all_promotions
|
|
304
|
+
),
|
|
305
|
+
Promotion_Name: getUniqueConcatenatedValues(
|
|
306
|
+
item,
|
|
307
|
+
"name",
|
|
308
|
+
" | ",
|
|
309
|
+
all_promotions
|
|
310
|
+
),
|
|
287
311
|
ItemCode: item.variant.variant_name,
|
|
288
312
|
Quantity: item.qty,
|
|
289
313
|
TaxCode: repzo_tax.integration_meta.TaxCode,
|
|
290
314
|
UnitPrice: (item.price * repzo_measureunit.factor) / 1000,
|
|
291
|
-
DiscountPerc: "0",
|
|
315
|
+
DiscountPerc: "0",
|
|
292
316
|
//@ts-ignore
|
|
293
317
|
LineTotal: item.total_before_tax / 1000,
|
|
294
318
|
UomCode: repzo_measureunit.integration_meta.ALTUOMID,
|
|
295
319
|
Brand:
|
|
296
|
-
(
|
|
320
|
+
(_o = repzo_product.integration_meta) === null || _o === void 0
|
|
297
321
|
? void 0
|
|
298
|
-
:
|
|
322
|
+
: _o.BRAND,
|
|
299
323
|
Department:
|
|
300
|
-
((
|
|
324
|
+
((_p =
|
|
301
325
|
repzo_rep === null || repzo_rep === void 0
|
|
302
326
|
? void 0
|
|
303
|
-
: repzo_rep.integration_meta) === null ||
|
|
327
|
+
: repzo_rep.integration_meta) === null || _p === void 0
|
|
304
328
|
? void 0
|
|
305
|
-
:
|
|
306
|
-
((
|
|
329
|
+
: _p.DEPARTMENTCODE) ||
|
|
330
|
+
((_q = options.data) === null || _q === void 0
|
|
307
331
|
? void 0
|
|
308
|
-
:
|
|
332
|
+
: _q.DepartmentCode), // "D2",
|
|
309
333
|
});
|
|
310
334
|
}
|
|
311
335
|
const sap_invoice = {
|
|
@@ -3,7 +3,7 @@ import { _create, getUniqueConcatenatedValues } from "../util.js";
|
|
|
3
3
|
import { v4 as uuid } from "uuid";
|
|
4
4
|
import moment from "moment-timezone";
|
|
5
5
|
export const create_proforma = async (event, options) => {
|
|
6
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
6
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
|
|
7
7
|
const repzo = new Repzo(
|
|
8
8
|
(_a = options.data) === null || _a === void 0 ? void 0 : _a.repzoApiKey,
|
|
9
9
|
{ env: options.env }
|
|
@@ -137,28 +137,42 @@ export const create_proforma = async (event, options) => {
|
|
|
137
137
|
},
|
|
138
138
|
{ per_page: 50000 }
|
|
139
139
|
);
|
|
140
|
+
const all_promotions = {};
|
|
141
|
+
(_g =
|
|
142
|
+
repzo_proforma === null || repzo_proforma === void 0
|
|
143
|
+
? void 0
|
|
144
|
+
: repzo_proforma.promotions) === null || _g === void 0
|
|
145
|
+
? void 0
|
|
146
|
+
: _g.forEach((promo) => {
|
|
147
|
+
if (!promo) return;
|
|
148
|
+
all_promotions[promo._id] = {
|
|
149
|
+
_id: promo._id,
|
|
150
|
+
name: promo.name,
|
|
151
|
+
ref: promo.ref,
|
|
152
|
+
};
|
|
153
|
+
});
|
|
140
154
|
// Prepare SAP_invoice_items
|
|
141
155
|
const items = [];
|
|
142
156
|
for (
|
|
143
157
|
let i = 0;
|
|
144
158
|
i <
|
|
145
|
-
((
|
|
159
|
+
((_h =
|
|
146
160
|
repzo_proforma === null || repzo_proforma === void 0
|
|
147
161
|
? void 0
|
|
148
|
-
: repzo_proforma.items) === null ||
|
|
162
|
+
: repzo_proforma.items) === null || _h === void 0
|
|
149
163
|
? void 0
|
|
150
|
-
:
|
|
164
|
+
: _h.length);
|
|
151
165
|
i++
|
|
152
166
|
) {
|
|
153
167
|
const item = repzo_proforma.items[i];
|
|
154
168
|
// Get Repzo Tax
|
|
155
169
|
const repzo_tax =
|
|
156
|
-
(
|
|
170
|
+
(_j =
|
|
157
171
|
repzo_taxes === null || repzo_taxes === void 0
|
|
158
172
|
? void 0
|
|
159
|
-
: repzo_taxes.data) === null ||
|
|
173
|
+
: repzo_taxes.data) === null || _j === void 0
|
|
160
174
|
? void 0
|
|
161
|
-
:
|
|
175
|
+
: _j.find((t) => {
|
|
162
176
|
var _a, _b, _c;
|
|
163
177
|
return (
|
|
164
178
|
((_a = t._id) === null || _a === void 0
|
|
@@ -175,12 +189,12 @@ export const create_proforma = async (event, options) => {
|
|
|
175
189
|
if (!repzo_tax) throw `Tax with _id: ${item.tax._id} not found in Repzo`;
|
|
176
190
|
// Get Repzo UoM
|
|
177
191
|
const repzo_measureunit =
|
|
178
|
-
(
|
|
192
|
+
(_k =
|
|
179
193
|
repzo_measureunits === null || repzo_measureunits === void 0
|
|
180
194
|
? void 0
|
|
181
|
-
: repzo_measureunits.data) === null ||
|
|
195
|
+
: repzo_measureunits.data) === null || _k === void 0
|
|
182
196
|
? void 0
|
|
183
|
-
:
|
|
197
|
+
: _k.find((m) => {
|
|
184
198
|
var _a, _b, _c;
|
|
185
199
|
return (
|
|
186
200
|
((_a = m._id) === null || _a === void 0
|
|
@@ -196,16 +210,16 @@ export const create_proforma = async (event, options) => {
|
|
|
196
210
|
});
|
|
197
211
|
if (!repzo_measureunit)
|
|
198
212
|
throw `Uom with _id: ${
|
|
199
|
-
(
|
|
213
|
+
(_l = item.measureunit) === null || _l === void 0 ? void 0 : _l._id
|
|
200
214
|
} not found in Repzo`;
|
|
201
215
|
// Get Repzo Product
|
|
202
216
|
const repzo_product =
|
|
203
|
-
(
|
|
217
|
+
(_m =
|
|
204
218
|
repzo_products === null || repzo_products === void 0
|
|
205
219
|
? void 0
|
|
206
|
-
: repzo_products.data) === null ||
|
|
220
|
+
: repzo_products.data) === null || _m === void 0
|
|
207
221
|
? void 0
|
|
208
|
-
:
|
|
222
|
+
: _m.find((p) => {
|
|
209
223
|
var _a, _b, _c;
|
|
210
224
|
return (
|
|
211
225
|
((_a = p._id) === null || _a === void 0
|
|
@@ -222,8 +236,18 @@ export const create_proforma = async (event, options) => {
|
|
|
222
236
|
if (!repzo_product)
|
|
223
237
|
throw `Product with _id: ${item.measureunit._id} not found in Repzo`;
|
|
224
238
|
items.push({
|
|
225
|
-
MEO_Serial: getUniqueConcatenatedValues(
|
|
226
|
-
|
|
239
|
+
MEO_Serial: getUniqueConcatenatedValues(
|
|
240
|
+
item,
|
|
241
|
+
"ref",
|
|
242
|
+
" | ",
|
|
243
|
+
all_promotions
|
|
244
|
+
),
|
|
245
|
+
Promotion_Name: getUniqueConcatenatedValues(
|
|
246
|
+
item,
|
|
247
|
+
"name",
|
|
248
|
+
" | ",
|
|
249
|
+
all_promotions
|
|
250
|
+
),
|
|
227
251
|
ItemCode: item.variant.variant_name,
|
|
228
252
|
Quantity: item.qty,
|
|
229
253
|
TaxCode: repzo_tax.integration_meta.TaxCode,
|
|
@@ -233,28 +257,28 @@ export const create_proforma = async (event, options) => {
|
|
|
233
257
|
LineTotal: item.total_before_tax / 1000,
|
|
234
258
|
UomCode: repzo_measureunit.integration_meta.ALTUOMID,
|
|
235
259
|
Brand:
|
|
236
|
-
(
|
|
260
|
+
(_o = repzo_product.integration_meta) === null || _o === void 0
|
|
237
261
|
? void 0
|
|
238
|
-
:
|
|
262
|
+
: _o.BRAND,
|
|
239
263
|
Department:
|
|
240
|
-
((
|
|
264
|
+
((_p =
|
|
241
265
|
repzo_rep === null || repzo_rep === void 0
|
|
242
266
|
? void 0
|
|
243
|
-
: repzo_rep.integration_meta) === null ||
|
|
267
|
+
: repzo_rep.integration_meta) === null || _p === void 0
|
|
244
268
|
? void 0
|
|
245
|
-
:
|
|
246
|
-
((
|
|
269
|
+
: _p.DEPARTMENTCODE) ||
|
|
270
|
+
((_q = options.data) === null || _q === void 0
|
|
247
271
|
? void 0
|
|
248
|
-
:
|
|
272
|
+
: _q.DepartmentCode), // "D2"
|
|
249
273
|
});
|
|
250
274
|
}
|
|
251
275
|
const sap_invoice = {
|
|
252
276
|
RefNum: repzo_proforma.serial_number.formatted,
|
|
253
277
|
SalPersCode: repzo_rep
|
|
254
278
|
? repzo_rep.integration_id
|
|
255
|
-
: (
|
|
279
|
+
: (_r = options.data) === null || _r === void 0
|
|
256
280
|
? void 0
|
|
257
|
-
:
|
|
281
|
+
: _r.SalPersCode,
|
|
258
282
|
DocDate: moment(repzo_proforma.issue_date, "YYYY-MM-DD").format(
|
|
259
283
|
"YYYYMMDD"
|
|
260
284
|
),
|
package/lib/util.d.ts
CHANGED
|
@@ -83,6 +83,13 @@ export declare const send_command_to_marketplace: ({
|
|
|
83
83
|
export declare const getUniqueConcatenatedValues: (
|
|
84
84
|
item: Service.Item.Schema,
|
|
85
85
|
key: "name" | "ref",
|
|
86
|
-
delimiter: string
|
|
86
|
+
delimiter: string,
|
|
87
|
+
all_promos: {
|
|
88
|
+
[promo_id: string]: {
|
|
89
|
+
_id: string;
|
|
90
|
+
name: string;
|
|
91
|
+
ref?: string | undefined;
|
|
92
|
+
};
|
|
93
|
+
}
|
|
87
94
|
) => string;
|
|
88
95
|
export {};
|
package/lib/util.js
CHANGED
|
@@ -192,10 +192,27 @@ export const send_command_to_marketplace = async ({
|
|
|
192
192
|
throw e;
|
|
193
193
|
}
|
|
194
194
|
};
|
|
195
|
-
export const getUniqueConcatenatedValues = function (
|
|
195
|
+
export const getUniqueConcatenatedValues = function (
|
|
196
|
+
item,
|
|
197
|
+
key,
|
|
198
|
+
delimiter,
|
|
199
|
+
all_promos
|
|
200
|
+
) {
|
|
201
|
+
var _a, _b, _c;
|
|
196
202
|
item.general_promotions = item.general_promotions || [];
|
|
197
203
|
item.used_promotions = item.used_promotions || [];
|
|
198
204
|
const allPromotions = [...item.general_promotions, ...item.used_promotions];
|
|
205
|
+
if ((_a = item.promotions) === null || _a === void 0 ? void 0 : _a.isGet) {
|
|
206
|
+
const promo_id =
|
|
207
|
+
(_c =
|
|
208
|
+
(_b = item.promotions.bookings) === null || _b === void 0
|
|
209
|
+
? void 0
|
|
210
|
+
: _b[0]) === null || _c === void 0
|
|
211
|
+
? void 0
|
|
212
|
+
: _c.promotion;
|
|
213
|
+
if (promo_id && all_promos[promo_id])
|
|
214
|
+
allPromotions.push(all_promos[promo_id]);
|
|
215
|
+
}
|
|
199
216
|
const uniqueValues = new Set(
|
|
200
217
|
allPromotions.map((promotion) => promotion[key]).filter((value) => value)
|
|
201
218
|
);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repzo-sap-absjo",
|
|
3
3
|
"description": "repzo SAP ABS jo integration",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.23",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"keywords": [],
|
|
7
7
|
"author": {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"jsonwebtoken": "^8.5.1",
|
|
46
46
|
"lodash": "^4.17.21",
|
|
47
47
|
"moment-timezone": "^0.5.34",
|
|
48
|
-
"repzo": "^1.0.
|
|
48
|
+
"repzo": "^1.0.33",
|
|
49
49
|
"uuid": "^8.3.2"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -217,6 +217,18 @@ export const create_invoice = async (event: EVENT, options: Config) => {
|
|
|
217
217
|
{ per_page: 50000 }
|
|
218
218
|
);
|
|
219
219
|
|
|
220
|
+
const all_promotions: {
|
|
221
|
+
[promo_id: string]: { _id: string; name: string; ref?: string };
|
|
222
|
+
} = {};
|
|
223
|
+
repzo_invoice?.promotions?.forEach((promo) => {
|
|
224
|
+
if (!promo) return;
|
|
225
|
+
all_promotions[promo._id] = {
|
|
226
|
+
_id: promo._id,
|
|
227
|
+
name: promo.name,
|
|
228
|
+
ref: promo.ref,
|
|
229
|
+
};
|
|
230
|
+
});
|
|
231
|
+
|
|
220
232
|
// Prepare SAP_invoice_items
|
|
221
233
|
const items = [];
|
|
222
234
|
|
|
@@ -244,8 +256,18 @@ export const create_invoice = async (event: EVENT, options: Config) => {
|
|
|
244
256
|
throw `Product with _id: ${item.measureunit._id} not found in Repzo`;
|
|
245
257
|
|
|
246
258
|
items.push({
|
|
247
|
-
MEO_Serial: getUniqueConcatenatedValues(
|
|
248
|
-
|
|
259
|
+
MEO_Serial: getUniqueConcatenatedValues(
|
|
260
|
+
item,
|
|
261
|
+
"ref",
|
|
262
|
+
" | ",
|
|
263
|
+
all_promotions
|
|
264
|
+
),
|
|
265
|
+
Promotion_Name: getUniqueConcatenatedValues(
|
|
266
|
+
item,
|
|
267
|
+
"name",
|
|
268
|
+
" | ",
|
|
269
|
+
all_promotions
|
|
270
|
+
),
|
|
249
271
|
ItemCode: item.variant.variant_name,
|
|
250
272
|
Quantity: item.qty,
|
|
251
273
|
TaxCode: repzo_tax.integration_meta.TaxCode,
|
|
@@ -143,6 +143,18 @@ export const create_proforma = async (event: EVENT, options: Config) => {
|
|
|
143
143
|
{ per_page: 50000 }
|
|
144
144
|
);
|
|
145
145
|
|
|
146
|
+
const all_promotions: {
|
|
147
|
+
[promo_id: string]: { _id: string; name: string; ref?: string };
|
|
148
|
+
} = {};
|
|
149
|
+
repzo_proforma?.promotions?.forEach((promo) => {
|
|
150
|
+
if (!promo) return;
|
|
151
|
+
all_promotions[promo._id] = {
|
|
152
|
+
_id: promo._id,
|
|
153
|
+
name: promo.name,
|
|
154
|
+
ref: promo.ref,
|
|
155
|
+
};
|
|
156
|
+
});
|
|
157
|
+
|
|
146
158
|
// Prepare SAP_invoice_items
|
|
147
159
|
const items: SAPProformaItem[] = [];
|
|
148
160
|
|
|
@@ -170,8 +182,18 @@ export const create_proforma = async (event: EVENT, options: Config) => {
|
|
|
170
182
|
throw `Product with _id: ${item.measureunit._id} not found in Repzo`;
|
|
171
183
|
|
|
172
184
|
items.push({
|
|
173
|
-
MEO_Serial: getUniqueConcatenatedValues(
|
|
174
|
-
|
|
185
|
+
MEO_Serial: getUniqueConcatenatedValues(
|
|
186
|
+
item,
|
|
187
|
+
"ref",
|
|
188
|
+
" | ",
|
|
189
|
+
all_promotions
|
|
190
|
+
),
|
|
191
|
+
Promotion_Name: getUniqueConcatenatedValues(
|
|
192
|
+
item,
|
|
193
|
+
"name",
|
|
194
|
+
" | ",
|
|
195
|
+
all_promotions
|
|
196
|
+
),
|
|
175
197
|
ItemCode: item.variant.variant_name,
|
|
176
198
|
Quantity: item.qty,
|
|
177
199
|
TaxCode: repzo_tax.integration_meta.TaxCode,
|
package/src/util.ts
CHANGED
|
@@ -245,7 +245,10 @@ export const send_command_to_marketplace = async ({
|
|
|
245
245
|
export const getUniqueConcatenatedValues = function (
|
|
246
246
|
item: Service.Item.Schema,
|
|
247
247
|
key: "name" | "ref",
|
|
248
|
-
delimiter: string
|
|
248
|
+
delimiter: string,
|
|
249
|
+
all_promos: {
|
|
250
|
+
[promo_id: string]: { _id: string; name: string; ref?: string };
|
|
251
|
+
}
|
|
249
252
|
): string {
|
|
250
253
|
item.general_promotions = item.general_promotions || [];
|
|
251
254
|
item.used_promotions = item.used_promotions || [];
|
|
@@ -253,6 +256,11 @@ export const getUniqueConcatenatedValues = function (
|
|
|
253
256
|
...item.general_promotions,
|
|
254
257
|
...item.used_promotions,
|
|
255
258
|
];
|
|
259
|
+
if (item.promotions?.isGet) {
|
|
260
|
+
const promo_id = item.promotions.bookings?.[0]?.promotion;
|
|
261
|
+
if (promo_id && all_promos[promo_id])
|
|
262
|
+
allPromotions.push(all_promos[promo_id]);
|
|
263
|
+
}
|
|
256
264
|
const uniqueValues = new Set(
|
|
257
265
|
allPromotions.map((promotion) => promotion[key]).filter((value) => value)
|
|
258
266
|
);
|