Revision 38320021
Von Thomas Kasulke vor mehr als 17 Jahren hinzugefügt
bin/mozilla/ca.pl | ||
---|---|---|
410 | 410 |
$totaldebit += $ca->{debit}; |
411 | 411 |
$totalcredit += $ca->{credit}; |
412 | 412 |
|
413 |
$column_data{transdate} = qq|<td>$ca->{transdate}</td>|;
|
|
414 |
$column_data{reference} = qq|<td>$href</td>|;
|
|
415 |
$column_data{description} = qq|<td>$ca->{description}</td>|;
|
|
416 |
|
|
417 |
$i++; |
|
413 |
$column_data{transdate} = ($ca->{"reference"} ne $last || $form->{sort} ne "transdate") ? qq|<td>$ca->{transdate}</td>| : qq|<td></td>|;
|
|
414 |
$column_data{reference} = ($ca->{"reference"} ne $last) ? qq|<td>$href</td>| : qq|<td></td>|;
|
|
415 |
$column_data{description} = ($ca->{"reference"} ne $last) ? qq|<td>$ca->{description}</td>| : qq|<td></td>|;
|
|
416 |
|
|
417 |
$i++ if($ca->{"reference"} ne $last);
|
|
418 | 418 |
$i %= 2; |
419 |
$last=$ca->{"reference"}; |
|
419 | 420 |
print qq| |
420 | 421 |
<tr class=listrow$i> |
421 | 422 |
|; |
Auch abrufbar als: Unified diff
Anzeige der Kontenausgabe angepasst. Daten werden, je nach Sortierung, gruppiert.