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,39 +23,43 @@ class Report extends Component {
}
async toPdfStream() {
const template = await this.render();
const defaultOptions = Object.assign({}, config.pdf);
try {
const template = await this.render();
const defaultOptions = Object.assign({}, config.pdf);
const optionsPath = `${this.path}/options.json`;
const fullPath = path.resolve(__dirname, optionsPath);
let options = defaultOptions;
if (fs.existsSync(fullPath))
options = require(optionsPath);
const optionsPath = `${this.path}/options.json`;
const fullPath = path.resolve(__dirname, optionsPath);
let options = defaultOptions;
if (fs.existsSync(fullPath))
options = require(optionsPath);
return new Promise(resolve => {
Cluster.pool.queue({}, async({page}) => {
await page.emulateMediaType('screen');
await page.setContent(template);
return new Promise(resolve => {
Cluster.pool.queue({}, async({page}) => {
await page.emulateMediaType('screen');
await page.setContent(template);
const element = await page.$('#pageFooter');
const element = await page.$('#pageFooter');
let footer = '\n';
if (element) {
footer = await page.evaluate(el => {
const html = el.innerHTML;
el.remove();
return html;
}, element);
}
let footer = '\n';
if (element) {
footer = await page.evaluate(el => {
const html = el.innerHTML;
el.remove();
return html;
}, element);
}
options.headerTemplate = '\n';
options.footerTemplate = footer;
options.headerTemplate = '\n';
options.footerTemplate = footer;
const stream = await page.pdf(options);
const stream = await page.pdf(options);
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 = {
name: 'claim-pickup-order',
async serverPrefetch() {
// FORCE FAIL FOR TEST
throw new Error('Something went wrong');
this.client = await this.fetchClient(this.id);
this.sales = await this.fetchSales(this.id);
this.claimConfig = await this.fetchClaimConfig();