cardus 0.0.81 → 0.0.83
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/index.js +1 -1
- package/dist/insertTempShipment/index.js +25 -1
- package/index.ts +1 -2
- package/insertTempShipment/index.ts +27 -1
- package/package.json +1 -1
- package/types/index.ts +1 -2
package/dist/index.js
CHANGED
|
@@ -219,7 +219,7 @@ class IntegrationManager {
|
|
|
219
219
|
let taric = null;
|
|
220
220
|
try {
|
|
221
221
|
if (detail.bulto.nombre_producto) {
|
|
222
|
-
taric = yield llmAPIService.
|
|
222
|
+
taric = yield llmAPIService.getTaricCodeFromContentDescription(detail.bulto.nombre_producto);
|
|
223
223
|
}
|
|
224
224
|
}
|
|
225
225
|
catch (e) {
|
|
@@ -52,6 +52,30 @@ const cookTempShipment = (_a) => __awaiter(void 0, [_a], void 0, function* ({ or
|
|
|
52
52
|
}
|
|
53
53
|
return compradorLocation;
|
|
54
54
|
});
|
|
55
|
+
const customEmailLlegada = (email) => {
|
|
56
|
+
if (!email)
|
|
57
|
+
return 'no informado';
|
|
58
|
+
const esEmailMiraklInvalido = email.startsWith('mirakl') && email.endsWith('@invalid.local');
|
|
59
|
+
if (esEmailMiraklInvalido) {
|
|
60
|
+
switch (process.env.PORTAL_ID) {
|
|
61
|
+
case '1':
|
|
62
|
+
return 'noinformado@genei.es';
|
|
63
|
+
case '2':
|
|
64
|
+
return 'noinformado@sendiroo.es';
|
|
65
|
+
case '3':
|
|
66
|
+
return 'noinformado@sendiroo.it';
|
|
67
|
+
case '4':
|
|
68
|
+
return 'noinformado@sendiroo.fr';
|
|
69
|
+
case '5':
|
|
70
|
+
return 'noinformado@sendiroo.pt';
|
|
71
|
+
default:
|
|
72
|
+
return 'noinformado@genei.es';
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
return email;
|
|
77
|
+
}
|
|
78
|
+
};
|
|
55
79
|
const setDatosComprador = (order) => __awaiter(void 0, void 0, void 0, function* () {
|
|
56
80
|
var _b;
|
|
57
81
|
return ({
|
|
@@ -67,7 +91,7 @@ const cookTempShipment = (_a) => __awaiter(void 0, [_a], void 0, function* ({ or
|
|
|
67
91
|
cod_pos_llegada: order.codigoPostalLLegada,
|
|
68
92
|
poblacion_llegada: order.ciudadLLegada,
|
|
69
93
|
tlf_llegada: ((_b = order.telefonoLLegada) === null || _b === void 0 ? void 0 : _b.replace(/[^0-9+()]/g, '')) || 'no informado',
|
|
70
|
-
mail_llegada: order.emailLLegada
|
|
94
|
+
mail_llegada: customEmailLlegada(order.emailLLegada),
|
|
71
95
|
dni_destinatario: (order === null || order === void 0 ? void 0 : order.numeroIdentificacionLLegada) || null,
|
|
72
96
|
observaciones_llegada: order === null || order === void 0 ? void 0 : order.observacionesLLegada
|
|
73
97
|
});
|
package/index.ts
CHANGED
|
@@ -309,8 +309,7 @@ export class IntegrationManager {
|
|
|
309
309
|
|
|
310
310
|
try {
|
|
311
311
|
if (detail.bulto.nombre_producto) {
|
|
312
|
-
taric = await llmAPIService.
|
|
313
|
-
'chatgpt',
|
|
312
|
+
taric = await llmAPIService.getTaricCodeFromContentDescription(
|
|
314
313
|
detail.bulto.nombre_producto
|
|
315
314
|
);
|
|
316
315
|
}
|
|
@@ -91,6 +91,32 @@ export const cookTempShipment = async ({
|
|
|
91
91
|
return compradorLocation;
|
|
92
92
|
};
|
|
93
93
|
|
|
94
|
+
const customEmailLlegada = (email: string | undefined): string => {
|
|
95
|
+
if (!email) return 'no informado';
|
|
96
|
+
|
|
97
|
+
const esEmailMiraklInvalido =
|
|
98
|
+
email.startsWith('mirakl') && email.endsWith('@invalid.local');
|
|
99
|
+
|
|
100
|
+
if (esEmailMiraklInvalido) {
|
|
101
|
+
switch (process.env.PORTAL_ID) {
|
|
102
|
+
case '1':
|
|
103
|
+
return 'noinformado@genei.es';
|
|
104
|
+
case '2':
|
|
105
|
+
return 'noinformado@sendiroo.es';
|
|
106
|
+
case '3':
|
|
107
|
+
return 'noinformado@sendiroo.it';
|
|
108
|
+
case '4':
|
|
109
|
+
return 'noinformado@sendiroo.fr';
|
|
110
|
+
case '5':
|
|
111
|
+
return 'noinformado@sendiroo.pt';
|
|
112
|
+
default:
|
|
113
|
+
return 'noinformado@genei.es';
|
|
114
|
+
}
|
|
115
|
+
} else {
|
|
116
|
+
return email;
|
|
117
|
+
}
|
|
118
|
+
};
|
|
119
|
+
|
|
94
120
|
const setDatosComprador = async (order: ModifiedOrder) => ({
|
|
95
121
|
nom_ape_llegada: order.primerApellidoLLegada
|
|
96
122
|
? order.nombreLLegada + ' ' + order.primerApellidoLLegada
|
|
@@ -111,7 +137,7 @@ export const cookTempShipment = async ({
|
|
|
111
137
|
poblacion_llegada: order.ciudadLLegada,
|
|
112
138
|
tlf_llegada:
|
|
113
139
|
order.telefonoLLegada?.replace(/[^0-9+()]/g, '') || 'no informado',
|
|
114
|
-
mail_llegada: order.emailLLegada
|
|
140
|
+
mail_llegada: customEmailLlegada(order.emailLLegada),
|
|
115
141
|
dni_destinatario: order?.numeroIdentificacionLLegada || null,
|
|
116
142
|
observaciones_llegada: order?.observacionesLLegada
|
|
117
143
|
});
|
package/package.json
CHANGED
package/types/index.ts
CHANGED