Revision f50a5cf3
Von Moritz Bunkus vor etwa 16 Jahren hinzugefügt
bin/mozilla/rp.pl | ||
---|---|---|
1759 | 1759 |
|
1760 | 1760 |
if ($previous_ctid != $ref->{ctid}) { |
1761 | 1761 |
$row->{statement}->{raw_data} = |
1762 |
$cgi->hidden('-name' => "customer_id_${row_idx}", '-value' => $ref->{ctid})
|
|
1763 |
. $cgi->checkbox('-name' => "statement_${row_idx}", '-value' => 1, '-label' => '', 'checked' => $ref->{checked});
|
|
1762 |
$cgi->hidden('-name' => "customer_id_" . ($row_idx + 1), '-value' => $ref->{ctid})
|
|
1763 |
. $cgi->checkbox('-name' => "statement_" . ($row_idx + 1), '-value' => 1, '-label' => '', 'checked' => $ref->{checked});
|
|
1764 | 1764 |
$row->{ct}->{data} = $ref->{name}; |
1765 | 1765 |
|
1766 | 1766 |
$row_idx++; |
Auch abrufbar als: Unified diff
Drucken von offenen Forderungen/Verbindlichkeiten: Die nachfolgende Funktion erwartet, dass die Zählung bei 1 beginnt, $row_idx startet aber bei 0.