X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/24e130ef18617400c239a9263c0638e06415310a..1dbceb7429ca36f65a54fd734c271ce37e5bc843:/SL/Form.pm diff --git a/SL/Form.pm b/SL/Form.pm index 32a82e08b..2ba19b65c 100644 --- a/SL/Form.pm +++ b/SL/Form.pm @@ -1813,6 +1813,7 @@ sub set_payment_options { $amounts{invtotal} = $self->{invtotal}; $amounts{total} = $self->{total}; } + $amounts{skonto_in_percent} = 100.0 * $self->{percent_skonto}; map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts; @@ -1866,6 +1867,8 @@ sub set_payment_options { map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts; + $self->{skonto_in_percent} = $formatted_amounts{skonto_in_percent}; + $main::lxdebug->leave_sub(); }