salix/print/templates/reports/receipt/receipt.js

19 lines
488 B
JavaScript
Raw Normal View History

2023-01-23 12:15:30 +00:00
const vnReport = require('../../../core/mixins/vn-report.js');
module.exports = {
2019-10-24 05:41:54 +00:00
name: 'receipt',
2023-01-23 12:15:30 +00:00
mixins: [vnReport],
2019-10-24 05:41:54 +00:00
async serverPrefetch() {
2023-01-23 12:15:30 +00:00
this.receipt = await this.findOneFromDef('receipt', [this.id]);
this.checkMainEntity(this.receipt);
this.client = await this.findOneFromDef('client', [this.id]);
},
2019-10-31 11:43:04 +00:00
props: {
2022-09-26 11:33:27 +00:00
id: {
2022-10-28 13:53:57 +00:00
type: Number,
2022-09-26 11:33:27 +00:00
required: true,
description: 'Receipt id'
2019-10-31 11:43:04 +00:00
}
}
};