cardus 0.0.74 → 0.0.75
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 +4 -2
- package/index.ts +4 -2
- package/package.json +1 -1
- package/types/index.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -219,9 +219,11 @@ class IntegrationManager {
|
|
|
219
219
|
id_envio: detail.id_envio,
|
|
220
220
|
id_usuario: idUsuario,
|
|
221
221
|
contenido: detail.bulto.nombre_producto,
|
|
222
|
-
valor: detail.bulto.
|
|
222
|
+
valor: detail.bulto.precio_producto
|
|
223
|
+
? parseFloat(detail.bulto.precio_producto)
|
|
224
|
+
: getRandomContentValue(),
|
|
223
225
|
dni: user.dni,
|
|
224
|
-
taric,
|
|
226
|
+
taric: detail.bulto.hs_code || taric,
|
|
225
227
|
eori_importacion: user.eori_import,
|
|
226
228
|
eori_exportacion: user.eori_export,
|
|
227
229
|
peso_bruto: detail.bulto.peso,
|
package/index.ts
CHANGED
|
@@ -309,9 +309,11 @@ export class IntegrationManager {
|
|
|
309
309
|
id_envio: detail.id_envio,
|
|
310
310
|
id_usuario: idUsuario,
|
|
311
311
|
contenido: detail.bulto.nombre_producto,
|
|
312
|
-
valor: detail.bulto.
|
|
312
|
+
valor: detail.bulto.precio_producto
|
|
313
|
+
? parseFloat(detail.bulto.precio_producto)
|
|
314
|
+
: getRandomContentValue(),
|
|
313
315
|
dni: user.dni,
|
|
314
|
-
taric,
|
|
316
|
+
taric: detail.bulto.hs_code || taric,
|
|
315
317
|
eori_importacion: user.eori_import,
|
|
316
318
|
eori_exportacion: user.eori_export,
|
|
317
319
|
peso_bruto: detail.bulto.peso,
|
package/package.json
CHANGED
package/types/index.ts
CHANGED