projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f373f98
)
Beim Ausdrucken von Angeboten/Aufträgen nicht die Lieferanteninformationen der Artike...
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Wed, 22 Jul 2009 15:27:24 +0000
(17:27 +0200)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Wed, 22 Jul 2009 15:27:24 +0000
(17:27 +0200)
SL/OE.pm
patch
|
blob
|
history
diff --git
a/SL/OE.pm
b/SL/OE.pm
index
a4d9a29
..
fe29361
100644
(file)
--- a/
SL/OE.pm
+++ b/
SL/OE.pm
@@
-995,6
+995,7
@@
sub order_details {
$form->{discount} = [];
+ $form->{TEMPLATE_ARRAYS} = { };
IC->prepare_parts_for_printing();
my $ic_cvar_configs = CVar->get_configs(module => 'IC');
@@
-1010,7
+1011,7
@@
sub order_details {
my @tax_arrays = qw(taxbase tax taxdescription taxrate taxnumber);
-
$form->{TEMPLATE_ARRAYS} = { map { $_ => [] } (@arrays, @tax_arrays) }
;
+
map { $form->{TEMPLATE_ARRAYS}->{$_} = [] } (@arrays, @tax_arrays)
;
my $sameitem = "";
foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {