Skip to content

Commit 8904888

Browse files
author
Andreas Müller
committed
added mwst to total line
1 parent f16c4e2 commit 8904888

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/output/invoice.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const format = {
99
};
1010

1111
/**
12-
* stdout table output
12+
* invoice, code heavily based on markdown.js
1313
*/
1414
class invoice extends Base {
1515
constructor(config, report) {
@@ -75,7 +75,7 @@ ${opening}
7575
<div class="positionValue">${this.invoiceCurrency} ${this.totalForInvoiceExkl.toFixed(2)}</div>
7676
<div class="positionDesc">MWST (${this.invoiceVAT*100}%)</div>
7777
<div class="positionValue">${this.invoiceCurrency} ${this.totalForInvoiceMwst.toFixed(2)}</div>
78-
<div class="positionDescTot">Rechnungsbetrag</div>
78+
<div class="positionDescTot">Rechnungsbetrag inkl. MWST</div>
7979
<div class="positionValueTot">${this.invoiceCurrency} ${this.totalForInvoice.toFixed(2)}</div>
8080
</div>
8181

0 commit comments

Comments
 (0)