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

67 lines
2.1 KiB
JavaScript
Raw Normal View History

2019-10-29 06:46:44 +00:00
const Component = require(`${appPath}/core/component`);
const db = require(`${appPath}/core/database`);
2019-10-29 06:46:44 +00:00
const reportHeader = new Component('report-header');
const reportFooter = new Component('report-footer');
module.exports = {
2019-10-31 11:43:04 +00:00
name: 'claim-pickup-order',
2019-10-29 06:46:44 +00:00
async serverPrefetch() {
2019-10-31 11:43:04 +00:00
this.client = await this.fetchClient(this.claimId);
2019-10-29 06:46:44 +00:00
this.sales = await this.fetchSales(this.claimId);
2019-10-31 11:43:04 +00:00
if (!this.client)
throw new Error('Something went wrong');
},
2019-10-31 11:43:04 +00:00
computed: {
currentDate: function() {
const filters = this.$options.filters;
return filters.date(new Date(), '%d-%m-%Y');
}
},
methods: {
2019-10-31 11:43:04 +00:00
fetchClient(claimId) {
2019-10-29 06:46:44 +00:00
return db.findOne(
`SELECT
2019-10-31 11:43:04 +00:00
c.id,
c.socialName,
2019-10-31 11:43:04 +00:00
c.name,
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.rawSql(
`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-31 11:43:04 +00:00
props: {
claimId: {
required: true
}
}
};