Revision 637be9d4
Von Thomas Kasulke vor mehr als 17 Jahren hinzugefügt
bin/mozilla/ar.pl | ||
---|---|---|
477 | 477 |
|
478 | 478 |
# with JavaScript Calendar |
479 | 479 |
$button1 = qq| |
480 |
<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate} onBlur=\"check_right_date_format(this)\"></td>
|
|
480 |
<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\"></td>
|
|
481 | 481 |
<td><input type=button name=transdate id="trigger1" value=| |
482 | 482 |
. $locale->text('button') . qq|></td> |
483 | 483 |
|; |
484 | 484 |
$button2 = qq| |
485 |
<td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate} onBlur=\"check_right_date_format(this)\"></td>
|
|
485 |
<td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\"></td>
|
|
486 | 486 |
<td><input type=button name=duedate id="trigger2" value=| |
487 | 487 |
. $locale->text('button') . qq|></td></td> |
488 | 488 |
|; |
... | ... | |
495 | 495 |
|
496 | 496 |
# without JavaScript Calendar |
497 | 497 |
$button1 = |
498 |
qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value=$form->{transdate} onBlur=\"check_right_date_format(this)\"></td>|;
|
|
498 |
qq|<td><input name=transdate id=transdate size=11 title="$myconfig{dateformat}" value="$form->{transdate}" onBlur=\"check_right_date_format(this)\"></td>|;
|
|
499 | 499 |
$button2 = |
500 |
qq|<td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value=$form->{duedate} onBlur=\"check_right_date_format(this)\"></td>|;
|
|
500 |
qq|<td><input name=duedate id=duedate size=11 title="$myconfig{dateformat}" value="$form->{duedate}" onBlur=\"check_right_date_format(this)\"></td>|;
|
|
501 | 501 |
} |
502 | 502 |
|
503 | 503 |
$form->header; |
... | ... | |
790 | 790 |
|; |
791 | 791 |
|
792 | 792 |
$column_data{paid} = |
793 |
qq|<td align=center><input name="paid_$i" size=11 value=$form->{"paid_$i"} onBlur=\"check_right_number_format(this)\"></td>|;
|
|
793 |
qq|<td align=center><input name="paid_$i" size=11 value="$form->{"paid_$i"}" onBlur=\"check_right_number_format(this)\"></td>|;
|
|
794 | 794 |
$column_data{AR_paid} = |
795 | 795 |
qq|<td align=center>${selectAR_paid}</td>|; |
796 | 796 |
$column_data{exchangerate} = qq|<td align=center>$exchangerate</td>|; |
797 | 797 |
$column_data{datepaid} = |
798 |
qq|<td align=center><input name="datepaid_$i" id="datepaid_$i" size=11 value=$form->{"datepaid_$i"} onBlur=\"check_right_date_format(this)\">
|
|
798 |
qq|<td align=center><input name="datepaid_$i" id="datepaid_$i" size=11 value="$form->{"datepaid_$i"}" onBlur=\"check_right_date_format(this)\">
|
|
799 | 799 |
<input type="button" name="datepaid_$i" id="trigger_datepaid_$i" value="?"></td>|; |
800 | 800 |
$column_data{source} = |
801 | 801 |
qq|<td align=center><input name="source_$i" size=11 value="$form->{"source_$i"}"></td>|; |
Auch abrufbar als: Unified diff
Formulardaten für Datumsangabe gequoted, da hier sonst onBlur... im value stand.