refs #4564
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2022-10-26 15:18:14 +02:00
parent 4334907d91
commit 3a2fc984dd
2 changed files with 31 additions and 25 deletions

View File

@ -23,6 +23,7 @@ class Report extends Component {
} }
async toPdfStream() { async toPdfStream() {
try {
const template = await this.render(); const template = await this.render();
const defaultOptions = Object.assign({}, config.pdf); const defaultOptions = Object.assign({}, config.pdf);
@ -56,6 +57,9 @@ class Report extends Component {
resolve(stream); resolve(stream);
}); });
}); });
} catch (e) {
console.log('ERROR CATCHED:', e);
}
} }
/** /**

View File

@ -5,6 +5,8 @@ const reportFooter = new Component('report-footer');
module.exports = { module.exports = {
name: 'claim-pickup-order', name: 'claim-pickup-order',
async serverPrefetch() { async serverPrefetch() {
// FORCE FAIL FOR TEST
throw new Error('Something went wrong');
this.client = await this.fetchClient(this.id); this.client = await this.fetchClient(this.id);
this.sales = await this.fetchSales(this.id); this.sales = await this.fetchSales(this.id);
this.claimConfig = await this.fetchClaimConfig(); this.claimConfig = await this.fetchClaimConfig();