Revision 5b47ed3e
Von Moritz Bunkus vor fast 18 Jahren hinzugefügt
bin/mozilla/is.pl | ||
---|---|---|
582 | 582 |
|
583 | 583 |
$form->{"javascript"} .= qq|<script type="text/javascript" src="js/show_form_details.js"></script>|; |
584 | 584 |
|
585 |
$jsscript .= |
|
586 |
$form->write_trigger(\%myconfig, 2, |
|
587 |
"orddate", "BL", "trigger_orddate", |
|
588 |
"quodate", "BL", "trigger_quodate"); |
|
589 |
|
|
585 | 590 |
$form->header; |
586 | 591 |
|
587 | 592 |
print qq| |
... | ... | |
748 | 753 |
<th align=right nowrap>| . $locale->text('Order Number') . qq|</th> |
749 | 754 |
<td><input name=ordnumber size=11 value="$form->{ordnumber}"></td> |
750 | 755 |
</tr> |
756 |
<tr> |
|
757 |
<th align="right" nowrap>| . $locale->text('Order Date') . qq|</th> |
|
758 |
<td><input name="orddate" id="orddate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{orddate}) . qq|"></td> |
|
759 |
<td><input type="button" name="b_orddate" id="trigger_orddate" value="?"></td> |
|
760 |
</tr> |
|
751 | 761 |
<tr> |
752 | 762 |
<th align=right nowrap>| . $locale->text('Quotation Number') . qq|</th> |
753 | 763 |
<td><input name=quonumber size=11 value="$form->{quonumber}"></td> |
754 | 764 |
</tr> |
765 |
<tr> |
|
766 |
<th align="right" nowrap>| . $locale->text('Quotation Date') . qq|</th> |
|
767 |
<td><input name="quodate" id="quodate" size="11" title="$myconfig{dateformat}" value="| . Q($form->{quodate}) . qq|"></td> |
|
768 |
<td><input type="button" name="b_quodate" id="trigger_quodate" value="?"></td> |
|
769 |
</tr> |
|
755 | 770 |
<tr> |
756 | 771 |
<th align=right nowrap>| . $locale->text('Customer Order Number') . qq|</th> |
757 | 772 |
<td><input name=cusordnumber size=11 value="$form->{cusordnumber}"></td> |
Auch abrufbar als: Unified diff
Bei Einkaufs- und Verkaufsmasken Felder für Angebots- und Auftragsdatum hinzugefügt.