Revision b2ba4ab3
Von Sven Schöling vor fast 13 Jahren hinzugefügt
templates/webpages/ir/form_header.html | ||
---|---|---|
1 | 1 |
[%- USE T8 %] |
2 | 2 |
[%- USE HTML %] |
3 | 3 |
[%- USE LxERP %] |
4 |
[%- USE L %] |
|
4 | 5 |
[%- SET follow_up_trans_info = invnumber _ ' (' _ vendor_name _ ')' %] |
5 | 6 |
<body> |
6 | 7 |
<script type="text/javascript" src="js/common.js"></script> |
... | ... | |
158 | 159 |
</tr> |
159 | 160 |
<tr> |
160 | 161 |
<th align="right">[% 'Invoice Date' | $T8 %]</th> |
161 |
<td nowrap> |
|
162 |
<input name="invdate" id="invdate" size="11" title="[% dateformat %]" value="[% invdate %]" onBlur="check_right_date_format(this)"> |
|
163 |
<input type="button" name="invdate_button" id="trigger1" value="[% 'button' | $T8 %]"> |
|
164 |
</td> |
|
162 |
<td>[% L.date_tag('invdate', invdate, onBlur='check_right_date_format(this)', cal_align='BL') %]</td> |
|
165 | 163 |
</tr> |
166 | 164 |
<tr> |
167 | 165 |
<th align="right">[% 'Due Date' | $T8 %]</th> |
168 |
<td width="13"> |
|
169 |
<input name="duedate" id="duedate" size="11" title="[% dateformat %]" value="[% duedate %]" onBlur="check_right_date_format(this)"> |
|
170 |
<input type="button" name="duedate_button" id="trigger2" value="[% 'button' | $T8 %]"> |
|
171 |
</td> |
|
166 |
<td>[% L.date_tag('duedate', duedate, onBlur='check_right_date_format(this)', cal_align='BL') %]</td> |
|
172 | 167 |
</tr> |
173 | 168 |
[%- END %] |
174 | 169 |
|
... | ... | |
178 | 173 |
</tr> |
179 | 174 |
<tr> |
180 | 175 |
<th align="right" nowrap>[% 'Order Date' | $T8 %]</th> |
181 |
<td><input name="orddate" id="orddate" size="11" title="[% dateformat %]" value="[% orddate %]" onBlur="check_right_date_format(this)"> |
|
182 |
<input type="button" name="b_orddate" id="trigger_orddate" value="?"></td> |
|
176 |
<td>[% L.date_tag('orddate', orddate, onBlur='check_right_date_format(this)', cal_align='BL') %]</td> |
|
183 | 177 |
</tr> |
184 | 178 |
<tr> |
185 | 179 |
<th align="right" nowrap>[% 'Quotation Date' | $T8 %]</th> |
186 |
<td><input name="quodate" id="quodate" size="11" title="[% dateformat %]" value="[% quodate %]" onBlur="check_right_date_format(this)"> |
|
187 |
<input type="button" name="b_quodate" id="trigger_quodate" value="?"></td> |
|
180 |
<td>[% L.date_tag('quodate', quodate, onBlur='check_right_date_format(this)', cal_align='BL') %]</td> |
|
188 | 181 |
</tr> |
189 | 182 |
<tr> |
190 | 183 |
<th align="right" nowrap>[% 'Project Number' | $T8 %]</th> |
... | ... | |
213 | 206 |
<script type="text/javascript" src="js/show_history.js"></script> |
214 | 207 |
<script type="text/javascript"> |
215 | 208 |
<!-- |
216 |
Calendar.setup({ inputField : "invdate", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BL", button : "trigger1" }); |
|
217 |
Calendar.setup({ inputField : "duedate", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BL", button : "trigger2" }); |
|
218 |
Calendar.setup({ inputField : "orddate", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BL", button : "trigger_orddate" }); |
|
219 |
Calendar.setup({ inputField : "quodate", ifFormat :"[% myconfig_jsc_dateformat %]", align : "BL", button : "trigger_quodate" }); |
|
220 | 209 |
$('document').ready(function(){ |
221 | 210 |
[% IF creditwarning != '' %] |
222 | 211 |
alert('[% 'Credit Limit exceeded!!!' | $T8 %]'); |
Auch abrufbar als: Unified diff
date_tags in ir/form_header