Revision df2e5373
Von Philip Reetz vor mehr als 17 Jahren hinzugefügt
SL/CA.pm | ||
---|---|---|
370 | 370 |
$ca->{debit} = 0; |
371 | 371 |
} |
372 | 372 |
|
373 |
$ca->{index} = $ca->{reference}.$ca->{description}; |
|
374 |
|
|
373 | 375 |
push(@{ $form->{CA} }, $ca); |
374 | 376 |
|
375 | 377 |
} |
bin/mozilla/ca.pl | ||
---|---|---|
410 | 410 |
$totaldebit += $ca->{debit}; |
411 | 411 |
$totalcredit += $ca->{credit}; |
412 | 412 |
|
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>|;
|
|
413 |
$column_data{transdate} = ($ca->{"index"} ne $last || $form->{sort} ne "transdate") ? qq|<td>$ca->{transdate}</td>| : qq|<td></td>|;
|
|
414 |
$column_data{reference} = ($ca->{"index"} ne $last) ? qq|<td>$href</td>| : qq|<td></td>|;
|
|
415 |
$column_data{description} = ($ca->{"index"} ne $last) ? qq|<td>$ca->{description}</td>| : qq|<td></td>|;
|
|
416 | 416 |
|
417 |
$i++ if($ca->{"reference"} ne $last);
|
|
417 |
$i++ if($ca->{"index"} ne $last);
|
|
418 | 418 |
$i %= 2; |
419 |
$last=$ca->{"reference"};
|
|
419 |
$last=$ca->{"index"};
|
|
420 | 420 |
print qq| |
421 | 421 |
<tr class=listrow$i> |
422 | 422 |
|; |
Auch abrufbar als: Unified diff
Buchungen wurden nicht korrekt angezeigt, wenn gleiche Referenz aber unterschiedliche
Beschreibung