2022-10-17 13:13:27 +00:00
|
|
|
const Component = require(`vn-print/core/component`);
|
2022-11-10 07:57:42 +00:00
|
|
|
const reportBody = new Component('report-body');
|
2022-10-17 13:13:27 +00:00
|
|
|
const reportHeader = new Component('report-header');
|
|
|
|
const reportFooter = new Component('report-footer');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'invoiceIn',
|
|
|
|
async serverPrefetch() {
|
|
|
|
this.invoice = await this.fetchInvoice(this.id);
|
2022-10-18 12:58:38 +00:00
|
|
|
this.taxes = await this.fetchTaxes(this.id);
|
2022-10-17 13:13:27 +00:00
|
|
|
|
|
|
|
if (!this.invoice)
|
|
|
|
throw new Error('Something went wrong');
|
2022-10-18 12:58:38 +00:00
|
|
|
|
|
|
|
const entries = await this.fetchEntry(this.id);
|
|
|
|
const buys = await this.fetchBuy(this.id);
|
|
|
|
|
|
|
|
const map = new Map();
|
|
|
|
|
|
|
|
for (let entry of entries) {
|
|
|
|
entry.buys = [];
|
|
|
|
|
|
|
|
map.set(entry.id, entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let buy of buys) {
|
|
|
|
const entry = map.get(buy.entryFk);
|
|
|
|
|
|
|
|
if (entry) entry.buys.push(buy);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.entries = entries;
|
2022-10-17 13:13:27 +00:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
fetchInvoice(id) {
|
|
|
|
return this.findOneFromDef('invoice', [id]);
|
2022-10-18 12:58:38 +00:00
|
|
|
},
|
|
|
|
fetchEntry(id) {
|
|
|
|
return this.rawSqlFromDef('entry', [id]);
|
|
|
|
},
|
|
|
|
fetchBuy(id) {
|
|
|
|
return this.rawSqlFromDef('buy', [id]);
|
|
|
|
},
|
2022-10-19 13:15:54 +00:00
|
|
|
async fetchTaxes(id) {
|
|
|
|
const taxes = await this.rawSqlFromDef(`taxes`, [id]);
|
|
|
|
return this.taxVat(taxes);
|
2022-10-18 12:58:38 +00:00
|
|
|
},
|
|
|
|
buyImport(buy) {
|
|
|
|
return buy.quantity * buy.buyingValue;
|
|
|
|
},
|
|
|
|
entrySubtotal(entry) {
|
|
|
|
let subTotal = 0.00;
|
|
|
|
for (let buy of entry.buys)
|
|
|
|
subTotal += this.buyImport(buy);
|
|
|
|
|
|
|
|
return subTotal;
|
|
|
|
},
|
|
|
|
sumTotal(rows, prop) {
|
|
|
|
let total = 0.00;
|
|
|
|
for (let row of rows)
|
|
|
|
total += parseFloat(row[prop]);
|
|
|
|
|
|
|
|
return total;
|
2022-10-19 13:15:54 +00:00
|
|
|
},
|
|
|
|
taxVat(taxes) {
|
|
|
|
for (tax of taxes) {
|
|
|
|
let vat = 0;
|
|
|
|
if (tax.rate && tax.taxableBase)
|
|
|
|
vat = (tax.rate / 100) * tax.taxableBase;
|
|
|
|
|
|
|
|
tax.vat = vat;
|
|
|
|
}
|
|
|
|
|
|
|
|
return taxes;
|
|
|
|
},
|
|
|
|
taxTotal() {
|
|
|
|
const base = this.sumTotal(this.taxes, 'taxableBase');
|
|
|
|
const vat = this.sumTotal(this.taxes, 'vat');
|
|
|
|
|
|
|
|
return base + vat;
|
2022-10-17 13:13:27 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
2022-11-10 07:57:42 +00:00
|
|
|
'report-body': reportBody.build(),
|
2022-10-17 13:13:27 +00:00
|
|
|
'report-header': reportHeader.build(),
|
|
|
|
'report-footer': reportFooter.build(),
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
id: {
|
2022-11-02 12:55:06 +00:00
|
|
|
type: Number,
|
2022-10-17 13:13:27 +00:00
|
|
|
description: 'The invoice id'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|