salix/print/templates/email/letter-debtor-st/letter-debtor-st.js

63 lines
1.8 KiB
JavaScript
Raw Normal View History

2022-09-26 06:07:45 +00:00
const Component = require(`vn-print/core/component`);
2022-11-10 08:51:28 +00:00
const emailBody = new Component('email-body');
const attachment = new Component('attachment');
2023-07-11 11:49:39 +00:00
const db = require('../../../core/database');
2019-11-04 12:55:20 +00:00
module.exports = {
name: 'letter-debtor-st',
async serverPrefetch() {
2023-07-11 11:49:39 +00:00
this.debtor = await db.findOne(`
2023-12-19 09:07:17 +00:00
SELECT sa.id,
sa.iban,
be.name bankName,
sa.countryFk,
c.countryFk
FROM supplierAccount sa
JOIN bankEntity be ON sa.bankEntityFk = be.id
LEFT JOIN company co ON co.supplierAccountFk = sa.id
JOIN client c ON c.countryFk = sa.countryFk
WHERE c.id = ?;
2023-12-13 10:29:50 +00:00
`, [this.id]);
2023-12-19 09:07:17 +00:00
if (!this.debtor) {
2023-12-13 10:29:50 +00:00
this.debtor = await db.findOne(`
SELECT sa.iban,
be.name bankName
FROM supplierAccount sa
JOIN bankEntity be ON sa.bankEntityFk = be.id
JOIN company co ON co.supplierAccountFk = sa.id
2023-12-19 09:07:17 +00:00
WHERE co.id = ?;
`, [this.companyId]);
2023-12-13 10:29:50 +00:00
}
2019-11-04 12:55:20 +00:00
},
data() {
2022-10-04 11:41:37 +00:00
return {
attachments: [
{
filename: 'letter-debtor.pdf',
type: 'pdf',
path: `Clients/${this.id}/letter-debtor-pdf`
}
]
};
},
2019-11-04 12:55:20 +00:00
methods: {
2022-09-26 06:07:45 +00:00
fetchDebtor(id, companyId) {
return this.findOneFromDef('client', [id, companyId]);
2019-11-04 12:55:20 +00:00
}
},
components: {
2022-11-10 08:51:28 +00:00
'email-body': emailBody.build(),
'attachment': attachment.build()
2019-11-04 12:55:20 +00:00
},
props: {
2022-09-26 06:07:45 +00:00
id: {
2022-10-28 13:53:57 +00:00
type: Number,
2019-11-04 12:55:20 +00:00
required: true
},
companyId: {
2022-10-28 13:53:57 +00:00
type: Number,
2019-11-04 12:55:20 +00:00
required: true
},
2019-11-04 12:55:20 +00:00
}
};