From: Bernd Bleßmann Date: Thu, 22 Jan 2015 14:22:58 +0000 (+0100) Subject: Lieferschein: Ausdruck mit Gruppierung repariert. X-Git-Tag: release-3.2.0beta~43^2~7 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=2247150caea321232883531cccdc003ca7516ed4;p=kivitendo-erp.git Lieferschein: Ausdruck mit Gruppierung repariert. behebt #26. --- diff --git a/SL/DO.pm b/SL/DO.pm index 584ad59ad..8fad24ce0 100644 --- a/SL/DO.pm +++ b/SL/DO.pm @@ -898,10 +898,12 @@ sub order_details { next if (!$form->{"id_$i"}); if ($item->[1] ne $sameitem) { - push(@{ $form->{description} }, qq|$item->[1]|); + push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, qq|$item->[1]|); $sameitem = $item->[1]; - map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays)); + map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" && $_ !~ /^si_/} @arrays)); + map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, []) } grep({ $_ =~ /^si_/} @arrays)); + $si_position++; } $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});