Revision cd3dc84b
Von Moritz Bunkus vor mehr als 17 Jahren hinzugefügt
bin/mozilla/dn.pl | ||
---|---|---|
382 | 382 |
|
383 | 383 |
|
384 | 384 |
$form->{nextsub} = "save_dunning"; |
385 |
|
|
385 |
|
|
386 |
$form->{jsscript} = 1; |
|
387 |
$form->{javascript} .= qq|<script type="text/javascript" src="js/checkbox_utils.js"></script>|; |
|
388 |
|
|
386 | 389 |
$form->{callback} = |
387 | 390 |
"$form->{script}?action=show_invoices&login=$form->{login}&password=$form->{password}&customer=$form->{customer}&invnumber=$form->{invnumber}&ordnumber=$form->{ordnumber}&paymentuntil=$form->{paymentuntil}&groupinvoices=$form->{groupinvoices}&minamount=$form->{minamount}&dunning_level=$form->{dunning_level}¬es=$form->{notes}" |
388 | 391 |
unless $form->{callback}; |
... | ... | |
395 | 398 |
. qq|</th>|; |
396 | 399 |
$column_header{active} = |
397 | 400 |
qq|<th class=listheading>| |
398 |
. $locale->text('Active?') |
|
401 |
. NTI($cgi->checkbox('-name' => 'selectall_active', |
|
402 |
'-label' => $locale->text('Active?'), |
|
403 |
'-checked' => 1, |
|
404 |
'-onclick' => "checkbox_check_all('selectall_active', 'active_', 1, " . scalar(@{ $form->{DUNNINGS} }) . ")")) |
|
399 | 405 |
. qq|</th>|; |
400 | 406 |
$column_header{email} = |
401 | 407 |
qq|<th class=listheading>| |
402 |
. $locale->text('eMail?') |
|
408 |
. NTI($cgi->checkbox('-name' => 'selectall_email', |
|
409 |
'-label' => $locale->text('eMail?'), |
|
410 |
'-checked' => 0, |
|
411 |
'-onclick' => "checkbox_check_all('selectall_email', 'email_', 1, " . scalar(@{ $form->{DUNNINGS} }) . ")")) |
|
403 | 412 |
. qq|</th>|; |
404 | 413 |
$column_header{customername} = |
405 | 414 |
qq|<th class=listheading>| |
Auch abrufbar als: Unified diff
Checkboxen bei Mahnungen eingebaut, um die ganze Liste an- oder abzuwählen.