hotfix fix: replace pdf with csv

This commit is contained in:
Javier Segarra 2024-02-29 06:25:41 +00:00
parent 8d96bb0a18
commit 6b7dc67c3e
1 changed files with 1 additions and 1 deletions

View File

@ -80,6 +80,6 @@ module.exports = Self => {
const content = toCSV(sales);
return [content, 'text/csv', `inline; filename="doc-${reference}.pdf"`];
return [content, 'text/csv', `inline; filename="doc-${reference}.csv"`];
};
};