cardus 0.0.64 → 0.0.65
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.
|
@@ -67,7 +67,8 @@ const cookTempShipment = (_a) => __awaiter(void 0, [_a], void 0, function* ({ or
|
|
|
67
67
|
poblacion_llegada: order.ciudadLLegada,
|
|
68
68
|
tlf_llegada: order.telefonoLLegada || 'no informado',
|
|
69
69
|
mail_llegada: order.emailLLegada || 'no informado',
|
|
70
|
-
dni_destinatario: (order === null || order === void 0 ? void 0 : order.numeroIdentificacionLLegada) || null
|
|
70
|
+
dni_destinatario: (order === null || order === void 0 ? void 0 : order.numeroIdentificacionLLegada) || null,
|
|
71
|
+
observaciones_llegada: order === null || order === void 0 ? void 0 : order.observacionesLLegada
|
|
71
72
|
});
|
|
72
73
|
});
|
|
73
74
|
const setReembolso = (order) => {
|
|
@@ -111,7 +111,8 @@ export const cookTempShipment = async ({
|
|
|
111
111
|
poblacion_llegada: order.ciudadLLegada,
|
|
112
112
|
tlf_llegada: order.telefonoLLegada || 'no informado',
|
|
113
113
|
mail_llegada: order.emailLLegada || 'no informado',
|
|
114
|
-
dni_destinatario: order?.numeroIdentificacionLLegada || null
|
|
114
|
+
dni_destinatario: order?.numeroIdentificacionLLegada || null,
|
|
115
|
+
observaciones_llegada: order?.observacionesLLegada
|
|
115
116
|
});
|
|
116
117
|
|
|
117
118
|
const setReembolso = (order: ModifiedOrder) => {
|
package/package.json
CHANGED
package/types/index.ts
CHANGED
|
@@ -121,6 +121,7 @@ export type ModifiedOrder = {
|
|
|
121
121
|
referenciaCliente?: string;
|
|
122
122
|
etiquetaExtraInfo?: string;
|
|
123
123
|
numeroIdentificacionLLegada?: string | null;
|
|
124
|
+
observacionesLLegada?: string;
|
|
124
125
|
};
|
|
125
126
|
|
|
126
127
|
export interface ModifiedOrderExtended extends ModifiedOrder {
|