salix/print/templates/reports/claim-pickup-order/claim-pickup-order.js

64 lines
2.2 KiB
JavaScript
Raw Normal View History

const strftime = require('strftime');
2019-10-29 06:46:44 +00:00
const db = require(`${appPath}/core/database`);
const Component = require(`${appPath}/core/component`);
const reportHeader = new Component('report-header');
const reportFooter = new Component('report-footer');
module.exports = {
2019-01-25 14:08:11 +00:00
name: 'rpt-claim-pickup-order',
2019-10-29 06:46:44 +00:00
async serverPrefetch() {
this.claim = await this.fetchClaim(this.claimId);
this.sales = await this.fetchSales(this.claimId);
},
created() {
2019-02-05 06:58:05 +00:00
if (this.locale)
this.$i18n.locale = this.locale;
},
methods: {
dated: () => {
return strftime('%d-%m-%Y', new Date());
},
2019-10-29 06:46:44 +00:00
fetchClaim(claimId) {
return db.findOne(
`SELECT
u.lang locale,
c.id clientId,
cl.id claimId,
c.email AS recipient,
c.socialName,
c.name AS clientName,
c.fi,
a.city,
a.postalCode,
a.street,
a.nickname,
p.name AS province,
ct.country
FROM claim cl
JOIN client c ON c.id = cl.clientFk
JOIN account.user u ON u.id = c.id
JOIN country ct ON ct.id = c.countryFk
JOIN ticket t ON t.id = cl.ticketFk
JOIN address a ON a.id = t.addressFk
LEFT JOIN province p ON p.id = c.provinceFk
2019-10-29 06:46:44 +00:00
WHERE cl.id = ?`, [claimId]);
},
2019-10-29 06:46:44 +00:00
fetchSales(claimId) {
return db.pool.query(
`SELECT
s.id,
s.quantity,
s.concept,
cb.quantity claimQuantity
FROM claimBeginning cb
JOIN sale s ON s.id = cb.saleFk
2019-10-29 06:46:44 +00:00
WHERE cb.claimFk = ?`, [claimId]);
},
},
components: {
2019-10-29 06:46:44 +00:00
'report-header': reportHeader.build(),
'report-footer': reportFooter.build()
},
2019-10-29 06:46:44 +00:00
props: ['claimId', 'isPreview']
};