cardus 0.0.80 → 0.0.81
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/index.ts +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -119,7 +119,7 @@ class IntegrationManager {
|
|
|
119
119
|
});
|
|
120
120
|
let direccionSalida = null;
|
|
121
121
|
if (parsedOrder.direccionSalidaId) {
|
|
122
|
-
direccionSalida = yield addressesService.getAddress(
|
|
122
|
+
direccionSalida = yield addressesService.getAddress(parsedOrder.direccionSalidaId, idUsuario);
|
|
123
123
|
}
|
|
124
124
|
const idEnvioTemporal = yield this.insertTempShipment({
|
|
125
125
|
order: parsedOrder,
|
package/index.ts
CHANGED