Revision 5adfb691
Von Bernd Bleßmann vor etwa 12 Jahren hinzugefügt
SL/Form.pm | ||
---|---|---|
1741 | 1741 |
$amounts{invtotal} = $self->{invtotal}; |
1742 | 1742 |
$amounts{total} = $self->{total}; |
1743 | 1743 |
} |
1744 |
$amounts{skonto_in_percent} = 100.0 * $self->{percent_skonto}; |
|
1745 |
|
|
1746 | 1744 |
map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts; |
1747 | 1745 |
|
1746 |
$amounts{skonto_in_percent} = 100.0 * $self->{percent_skonto}; |
|
1748 | 1747 |
$amounts{skonto_amount} = $amounts{invtotal} * $self->{percent_skonto}; |
1749 | 1748 |
$amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto}); |
1750 | 1749 |
$amounts{total_wo_skonto} = $amounts{total} * (1 - $self->{percent_skonto}); |
Auch abrufbar als: Unified diff
kein parse_amount für skonto_in_percent
Es wird direkt aus dem Wert aus der DB errechnet.