2024-08-23 11:12:11 +00:00
|
|
|
const axios = require('axios');
|
|
|
|
const UserError = require('vn-loopback/util/user-error');
|
|
|
|
|
|
|
|
module.exports = Self => {
|
|
|
|
Self.remoteMethod('sendOrders', {
|
|
|
|
description: 'Sends a set of orders/tickets',
|
|
|
|
accessType: 'WRITE',
|
|
|
|
accepts: [{
|
|
|
|
arg: 'orders',
|
|
|
|
type: ['number'],
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
returns: {
|
|
|
|
type: 'string',
|
|
|
|
root: true
|
|
|
|
},
|
|
|
|
http: {
|
|
|
|
path: `/sendOrders`,
|
|
|
|
verb: 'POST'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
Self.sendOrders = async orders => {
|
|
|
|
const config = await Self.app.models.QuadmindsApiConfig.findOne();
|
|
|
|
if (!config) throw new UserError('Config params not set');
|
|
|
|
|
|
|
|
let pois = await Self.rawSql(`
|
|
|
|
WITH deliveryNotes AS (
|
|
|
|
SELECT t.id, t.routeFk, tn.description
|
|
|
|
FROM ticket t
|
|
|
|
JOIN ticketObservation tn ON tn.ticketFk = t.id
|
|
|
|
JOIN observationType ot ON ot.id = tn.observationTypeFk
|
|
|
|
WHERE ot.code = 'delivery'
|
|
|
|
)
|
|
|
|
SELECT a.id code,
|
2024-08-29 11:21:59 +00:00
|
|
|
c.socialName name,
|
2024-08-23 11:12:11 +00:00
|
|
|
CONCAT_WS(', ', IFNULL(a.street, ''), IFNULL(a.city, ''), IFNULL(p.name, '')) longAddress,
|
|
|
|
CONCAT(IFNULL(a.mobile, c.mobile)) phoneNumber,
|
|
|
|
dn.description poiDeliveryComments,
|
|
|
|
c.email email
|
2024-08-29 11:21:59 +00:00
|
|
|
FROM ticket t
|
2024-08-23 11:12:11 +00:00
|
|
|
JOIN address a ON a.id = t.addressFk
|
|
|
|
JOIN province p ON p.id = a.provinceFk
|
|
|
|
JOIN country co ON co.id = p.countryFk
|
|
|
|
JOIN client c ON c.id = t.clientFk
|
|
|
|
LEFT JOIN deliveryNotes dn ON dn.id = t.id
|
|
|
|
WHERE t.id IN (?)
|
|
|
|
GROUP BY t.id
|
|
|
|
`, [orders]);
|
|
|
|
|
|
|
|
// Transformo code en string ya que lo obtenermos como integer
|
|
|
|
pois = pois.map(poi => {
|
|
|
|
return {
|
|
|
|
...poi,
|
|
|
|
code: poi.code.toString(),
|
|
|
|
poiDeliveryComments: poi.poiDeliveryComments || undefined,
|
|
|
|
phoneNumber: poi.phoneNumber || undefined
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
await axios.post(`${config.url}pois`, pois, {
|
|
|
|
headers: {
|
|
|
|
'Accept': 'application/json',
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
'X-Saas-Apikey': config.key
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|