Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed html
  • Loading branch information
Andreas Müller committed Nov 19, 2022
commit 7434c759c1ba34c777accb0cc346cfabec71d9fa
8 changes: 4 additions & 4 deletions src/output/invoice.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ class invoice extends Base {
}
// REMOVE
// _.each(this.users, (time, name) => stats += `\n* **${name}**: ${time}`);
let to = this.concat(this.config.get('invoiceAddress'), '</br>');
let from = this.concat(this.config.get('invoiceSettings').from, '</br>');
let opening = this.concat(this.config.get('invoiceSettings').opening, '</br>');
let closing = this.concat(this.config.get('invoiceSettings').closing, '</br>');
let to = this.concat(this.config.get('invoiceAddress'), '<br />');
let from = this.concat(this.config.get('invoiceSettings').from, '<br />');
let opening = this.concat(this.config.get('invoiceSettings').opening, '<br />');
let closing = this.concat(this.config.get('invoiceSettings').closing, '<br />');

// QR bill
let endOfZipPos = this.config.get('invoiceSettings').from[3].search("[ _]");
Expand Down