Revision b4f72528
Von Sven Schöling vor mehr als 13 Jahren hinzugefügt
templates/webpages/is/form_header.html | ||
---|---|---|
</tr>
|
||
<tr>
|
||
<th align="right">[% 'Credit Note Date' | $T8 %]</th>
|
||
<td nowrap>
|
||
<input name="invdate" id="invdate" size="11" title="[% dateformat %]" value="[% invdate %]" onBlur="check_right_date_format(this)">
|
||
<input type="button" name="invdate_button" id="trigger1" value="[% 'button' | $T8 %]">
|
||
</td>
|
||
<td>[% L.date_tag('invdate', invdate, onBlur='check_right_date_format(this)', cal_align='BL') %]</td>
|
||
</tr>
|
||
[%- ELSE %]
|
||
<tr>
|
||
... | ... | |
</tr>
|
||
<tr>
|
||
<th align="right">[% 'Invoice Date' | $T8 %]</th>
|
||
<td nowrap>
|
||
<input name="invdate" id="invdate" size="11" title="[% dateformat %]" value="[% invdate %]" onBlur="check_right_date_format(this)">
|
||
<input type="button" name="invdate_button" id="trigger1" value="[% 'button' | $T8 %]">
|
||
</td>
|
||
<td>[% L.date_tag('invdate', invdate, onBlur='check_right_date_format(this)', cal_align='BL') %]</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right">[% 'Due Date' | $T8 %]</th>
|
||
<td width="13">
|
||
<input name="duedate" id="duedate" size="11" title="[% dateformat %]" value="[% duedate %]" onBlur="check_right_date_format(this)">
|
||
<input type="button" name="duedate_button" id="trigger2" value="[% 'button' | $T8 %]">
|
||
</td>
|
||
<td>[% L.date_tag('duedate', duedate, onBlur='check_right_date_format(this)', cal_align='BL') %]</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Delivery Order Number' | $T8 %]</th>
|
||
... | ... | |
</tr>
|
||
<tr>
|
||
<th align="right">[% 'Delivery Date' | $T8 %]</th>
|
||
<td width="13">
|
||
<input name="deliverydate" id="deliverydate" size="11" title="[% dateformat %]" value="[% deliverydate %]" onBlur="check_right_date_format(this)">
|
||
<input type="button" name="deliverydate_button" id="trigger3" value="[% 'button' | $T8 %]">
|
||
</td>
|
||
<td>[% L.date_tag('deliverydate', deliverydate, onBlur='check_right_date_format(this)', cal_align='BL') %]</td>
|
||
</tr>
|
||
[%- END %]
|
||
|
||
... | ... | |
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Order Date' | $T8 %]</th>
|
||
<td><input name="orddate" id="orddate" size="11" title="[% dateformat %]" value="[% orddate %]" onBlur="check_right_date_format(this)">
|
||
<input type="button" name="b_orddate" id="trigger_orddate" value="?"></td>
|
||
<td>[% L.date_tag('orddate', orddate, onBlur='check_right_date_format(this)', cal_align='BL') %]</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Quotation Number' | $T8 %]</th>
|
||
... | ... | |
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Quotation Date' | $T8 %]</th>
|
||
<td><input name="quodate" id="quodate" size="11" title="[% dateformat %]" value="[% quodate %]" onBlur="check_right_date_format(this)">
|
||
<input type="button" name="b_quodate" id="trigger_quodate" value="?"></td>
|
||
<td>[% L.date_tag('quodate', quodate, onBlur='check_right_date_format(this)', cal_align='BL') %]</td>
|
||
</tr>
|
||
<tr>
|
||
<th align="right" nowrap>[% 'Customer Order Number' | $T8 %]</th>
|
||
... | ... | |
<script type="text/javascript" src="js/show_history.js"></script>
|
||
<script type="text/javascript">
|
||
<!--
|
||
Calendar.setup({ inputField : "invdate", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BL", button : "trigger1" });
|
||
[% IF !is_type_credit_note %]
|
||
Calendar.setup({ inputField : "duedate", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BL", button : "trigger2" });
|
||
Calendar.setup({ inputField : "deliverydate", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BL", button : "trigger3" });
|
||
[% END %]
|
||
Calendar.setup({ inputField : "orddate", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BL", button : "trigger_orddate" });
|
||
Calendar.setup({ inputField : "quodate", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BL", button : "trigger_quodate" });
|
||
$('document').ready(function(){
|
||
[% IF resubmit && is_format_html %]
|
||
window.open('about:blank','Beleg');
|
Auch abrufbar als: Unified diff
date_tags in is/form_header