diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-10-18 08:41:54 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-10-18 08:41:54 +0200 |
| commit | c1d950f2765cde614c8411b4effb3850146ba598 (patch) | |
| tree | 408372166c170bfabc3e23a02d8aaa48b662696c /src/countries/nl.cpp | |
| parent | a8799cfee2de8ac53cc07c571c56ae5d9c98cbbd (diff) | |
ui loading animation for model request
Diffstat (limited to 'src/countries/nl.cpp')
| -rw-r--r-- | src/countries/nl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/countries/nl.cpp b/src/countries/nl.cpp index cf79ee2..62f947f 100644 --- a/src/countries/nl.cpp +++ b/src/countries/nl.cpp @@ -82,14 +82,14 @@ bool _nl_add_billing_item_to_tax_report(tax_report* report, invoice* inv, billin a5->total_tax += totals.tax; } - // TODO 1c else if (rate.rate > 0.0f) { - tax_line* tl = administration::get_tax_line_from_report(report, "1d"); + tax_line* tl = administration::get_tax_line_from_report(report, "1c"); tl->total_net += totals.net; tl->total_tax += totals.tax; - + a5->total_tax += totals.tax; } + // NOTE: category '1d' for private usage is not supported. else if (rate.rate == 0.0f) { tax_line* tl = administration::get_tax_line_from_report(report, "1e"); tl->total_net += totals.net; |
