Revision 443e237f
Von Bernd Bleßmann vor mehr als 4 Jahren hinzugefügt
SL/DN.pm | ||
---|---|---|
1128 | 1128 |
$print_form->{media} = 'file'; |
1129 | 1129 |
# no language override, should always be the object's language |
1130 | 1130 |
$invoice->flatten_to_form($print_form, format_amounts => 1); |
1131 |
for my $i (1 .. $print_form->{rowcount}) { |
|
1132 |
$print_form->{"sellprice_$i"} = $print_form->{"fxsellprice_$i"}; |
|
1133 |
} |
|
1131 | 1134 |
$print_form->prepare_for_printing; |
1132 | 1135 |
|
1133 | 1136 |
my $filename = SL::Helper::CreatePDF->create_pdf( |
Auch abrufbar als: Unified diff
Original-Rechnung bei Mahnung Drucken: sellprice aus fxsellprice setzen
Sonst stimmt z.B. der Rabatt nicht, da sellprice in der DB den rabattierten
Wert enthält/enthalten kann. sellprice wird aber in IS::invoice_details (
aufgerufen aus Form::prepare_for_printing) als unrabattierter Einzelpreis
verwendet.