salix/modules/invoiceIn/back/methods/invoice-in/getTotals.js

44 lines
1.4 KiB
JavaScript
Raw Normal View History

2021-09-28 08:57:51 +00:00
module.exports = Self => {
2021-10-05 09:19:48 +00:00
Self.remoteMethod('getTotals', {
2021-09-28 08:57:51 +00:00
description: 'Return totals for an invoiceIn',
accessType: 'READ',
accepts: {
arg: 'id',
type: 'number',
required: true,
description: 'invoiceIn id',
http: {source: 'path'}
},
returns: {
type: 'object',
root: true
},
http: {
path: '/:id/getTotals',
verb: 'GET'
}
});
2021-10-05 09:19:48 +00:00
Self.getTotals = async(id, options) => {
2021-09-28 08:57:51 +00:00
const myOptions = {};
if (typeof options == 'object')
Object.assign(myOptions, options);
2022-01-20 09:05:24 +00:00
const [result] = await Self.rawSql(`
2021-09-28 08:57:51 +00:00
SELECT iit.*,
SUM(iidd.amount) totalDueDay
FROM vn.invoiceIn ii
LEFT JOIN (SELECT SUM(iit.taxableBase) totalTaxableBase,
SUM(iit.taxableBase * (1 + (ti.PorcentajeIva / 100))) totalVat
FROM vn.invoiceInTax iit
LEFT JOIN sage.TiposIva ti ON ti.CodigoIva = iit.taxTypeSageFk
WHERE iit.invoiceInFk = ?) iit ON TRUE
LEFT JOIN vn.invoiceInDueDay iidd ON iidd.invoiceInFk = ii.id
WHERE
2022-01-20 09:05:24 +00:00
ii.id = ?`, [id, id]);
2022-01-24 14:35:32 +00:00
return result;
2021-09-28 08:57:51 +00:00
};
};