Revision c2715187
Von Sven Schöling vor mehr als 17 Jahren hinzugefügt
SL/AP.pm | ||
---|---|---|
765 | 765 |
$storno_row->{invnumber} = 'Storno-' . $storno_row->{invnumber}; |
766 | 766 |
$storno_row->{amount} *= -1; |
767 | 767 |
$storno_row->{netamount} *= -1; |
768 |
$storno_row->{paid} = $storno_amount->{amount};
|
|
768 |
$storno_row->{paid} = $storno_row->{amount};
|
|
769 | 769 |
|
770 | 770 |
delete @$storno_row{qw(itime mtime)}; |
771 | 771 |
|
SL/AR.pm | ||
---|---|---|
635 | 635 |
$storno_row->{invnumber} = 'Storno-' . $storno_row->{invnumber}; |
636 | 636 |
$storno_row->{amount} *= -1; |
637 | 637 |
$storno_row->{netamount} *= -1; |
638 |
$storno_row->{paid} = $storno_amount->{amount};
|
|
638 |
$storno_row->{paid} = $storno_row->{amount};
|
|
639 | 639 |
|
640 | 640 |
delete @$storno_row{qw(itime mtime)}; |
641 | 641 |
|
Auch abrufbar als: Unified diff
Storno Bugfix. paid wurde unter bestimmten Bedingungen nicht richtig gesetzt.