44 lines
1.1 KiB
JavaScript
Executable File
44 lines
1.1 KiB
JavaScript
Executable File
const Component = require(`vn-print/core/component`);
|
|
const emailBody = new Component('email-body');
|
|
const attachment = new Component('attachment');
|
|
|
|
module.exports = {
|
|
name: 'letter-debtor-st',
|
|
async serverPrefetch() {
|
|
this.debtor = await this.fetchDebtor(this.id, this.companyId);
|
|
|
|
if (!this.debtor)
|
|
throw new Error('Something went wrong');
|
|
},
|
|
data() {
|
|
return {
|
|
attachments: [
|
|
{
|
|
filename: 'letter-debtor.pdf',
|
|
type: 'pdf',
|
|
path: `Clients/${this.id}/letter-debtor-pdf`
|
|
}
|
|
]
|
|
};
|
|
},
|
|
methods: {
|
|
fetchDebtor(id, companyId) {
|
|
return this.findOneFromDef('client', [id, companyId]);
|
|
}
|
|
},
|
|
components: {
|
|
'email-body': emailBody.build(),
|
|
'attachment': attachment.build()
|
|
},
|
|
props: {
|
|
id: {
|
|
type: Number,
|
|
required: true
|
|
},
|
|
companyId: {
|
|
type: Number,
|
|
required: true
|
|
},
|
|
}
|
|
};
|