From: Thomas Kasulke Date: Fri, 1 Jun 2007 09:17:03 +0000 (+0000) Subject: Anzeige der Kontenausgabe angepasst. Daten werden, je nach Sortierung, gruppiert. X-Git-Tag: release-2.4.3^2~216 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=38320021c5afe1183ce603c018e23c61ce6f492a;p=kivitendo-erp.git Anzeige der Kontenausgabe angepasst. Daten werden, je nach Sortierung, gruppiert. --- diff --git a/bin/mozilla/ca.pl b/bin/mozilla/ca.pl index 12aef7aa6..faac8cc74 100644 --- a/bin/mozilla/ca.pl +++ b/bin/mozilla/ca.pl @@ -410,12 +410,13 @@ sub list_transactions { $totaldebit += $ca->{debit}; $totalcredit += $ca->{credit}; - $column_data{transdate} = qq|$ca->{transdate}|; - $column_data{reference} = qq|$href|; - $column_data{description} = qq|$ca->{description}|; - - $i++; + $column_data{transdate} = ($ca->{"reference"} ne $last || $form->{sort} ne "transdate") ? qq|$ca->{transdate}| : qq||; + $column_data{reference} = ($ca->{"reference"} ne $last) ? qq|$href| : qq||; + $column_data{description} = ($ca->{"reference"} ne $last) ? qq|$ca->{description}| : qq||; + + $i++ if($ca->{"reference"} ne $last); $i %= 2; + $last=$ca->{"reference"}; print qq| |;