Change VAT for merchandise back from 16% to 19%
All checks were successful
continuous-integration/drone/push Build is passing

This reverts commit d17098a80d.
This commit is contained in:
Reinhard Müller 2020-12-31 12:11:12 +01:00
parent a5df37da97
commit c88aa22038
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# -----------------------------------------------------------------------------
# Process merchandise order
# -----------------------------------------------------------------------------
# Copyright (C) 2008-2020 Free Software Foundation Europe <contact@fsfe.org>
# Copyright (C) 2008-2019 Free Software Foundation Europe <contact@fsfe.org>
#
# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
@ -104,7 +104,7 @@ if ($amount > 999) {
my $amount_f = sprintf "%.2f", $amount ;
my $amount100 = $amount * 100;
my $vat = sprintf "%.2f", ($amount_f / 1.16) * 0.16;
my $vat = sprintf "%.2f", ($amount_f / 1.19) * 0.19;
my $net = sprintf "%.2f", $amount_f - $vat;
# -----------------------------------------------------------------------------

Binary file not shown.