Revision 0346a1f5
Von Bernd Bleßmann vor fast 3 Jahren hinzugefügt
templates/webpages/ap/form_header.html | ||
---|---|---|
89 | 89 |
<tr> |
90 | 90 |
<th align="right" nowrap>[% 'Vendor' | $T8 %]</th> |
91 | 91 |
<td colspan="3"> |
92 |
[% P.customer_vendor.picker("vendor_id", vendor_id, type="vendor", style="width: 300px", onchange="\$('#update_button').click()") %]
|
|
92 |
[% P.customer_vendor.picker("vendor_id", vendor_id, type="vendor", style="width: 330px", onchange="\$('#update_button').click()") %]
|
|
93 | 93 |
[% L.button_tag("show_vc_details('vendor')", LxERP.t8('Details (one letter abbreviation)')) %] |
94 | 94 |
[% L.hidden_tag("previous_vendor_id", vendor_id) %] |
95 | 95 |
</td> |
... | ... | |
134 | 134 |
[% IF ALL_DEPARTMENTS %] |
135 | 135 |
<tr> |
136 | 136 |
<th align="right" nowrap>[% 'Department' | $T8 %]</th> |
137 |
<td colspan=3>[% L.select_tag('department_id', ALL_DEPARTMENTS, default = department_id, title_key = 'description', with_empty = 1) %]</td> |
|
137 |
<td colspan=3>[% L.select_tag('department_id', ALL_DEPARTMENTS, default = department_id, title_key = 'description', with_empty = 1, style = "width:334px") %]</td>
|
|
138 | 138 |
</tr> |
139 | 139 |
[% END %] |
140 | 140 |
|
141 | 141 |
<tr> |
142 | 142 |
<th align="right">[% 'Transaction description' | $T8 %]</th> |
143 |
<td colspan="3">[% L.input_tag("transaction_description", transaction_description, size=35, "data-validate"=INSTANCE_CONF.get_require_transaction_description_ps ? 'required' : '') %]</td>
|
|
143 |
<td colspan="3">[% L.input_tag("transaction_description", transaction_description, style="width:330px", "data-validate"=INSTANCE_CONF.get_require_transaction_description_ps ? 'required' : '') %]</td>
|
|
144 | 144 |
</tr> |
145 | 145 |
<tr> |
146 | 146 |
<td align="right"><input name="taxincluded" class="checkbox" type="checkbox" value="1" [% IF ( taxincluded ) %]checked[% END %]></td> |
templates/webpages/ar/form_header.html | ||
---|---|---|
47 | 47 |
<tr> |
48 | 48 |
<th align="right" nowrap>[% 'Customer' | $T8 %]</th> |
49 | 49 |
<td colspan=3> |
50 |
[% P.customer_vendor.picker("customer_id", customer_id, type="customer", style="width: 300px", class=(initial_focus == 'customer_id' ? "initial_focus" : ""), onchange="\$('#update_button').click()") %]
|
|
50 |
[% P.customer_vendor.picker("customer_id", customer_id, type="customer", style="width: 330px", class=(initial_focus == 'customer_id' ? "initial_focus" : ""), onchange="\$('#update_button').click()") %]
|
|
51 | 51 |
[% L.button_tag("show_vc_details('customer')", LxERP.t8('Details (one letter abbreviation)')) %] |
52 | 52 |
[% L.hidden_tag("previous_customer_id", customer_id) %] |
53 | 53 |
[% L.hidden_tag('terms', terms) %] |
... | ... | |
106 | 106 |
[% IF ALL_DEPARTMENTS %] |
107 | 107 |
<tr> |
108 | 108 |
<th align="right" nowrap>[% 'Department' | $T8 %]</th> |
109 |
<td colspan=3>[% L.select_tag('department_id', ALL_DEPARTMENTS, default = department_id, title_key = 'description', with_empty = 1) %]</td> |
|
109 |
<td colspan=3>[% L.select_tag('department_id', ALL_DEPARTMENTS, default = department_id, title_key = 'description', with_empty = 1, style = 'width:334px') %]</td>
|
|
110 | 110 |
</tr> |
111 | 111 |
[% END %] |
112 | 112 |
<tr> |
113 | 113 |
<th align="right">[% 'Transaction description' | $T8 %]</th> |
114 |
<td colspan="3">[% L.input_tag("transaction_description", transaction_description, size=35, "data-validate"=INSTANCE_CONF.get_require_transaction_description_ps ? 'required' : '') %]</td>
|
|
114 |
<td colspan="3">[% L.input_tag("transaction_description", transaction_description, style="width:330px", "data-validate"=INSTANCE_CONF.get_require_transaction_description_ps ? 'required' : '') %]</td>
|
|
115 | 115 |
</tr> |
116 | 116 |
<tr> |
117 | 117 |
<td align=right>[% L.checkbox_tag('taxincluded', checked=taxincluded) %]</td> |
templates/webpages/gl/form_header.html | ||
---|---|---|
67 | 67 |
</tr> |
68 | 68 |
<tr> |
69 | 69 |
<th align="right">[% 'Reference' | $T8 %]</th> |
70 |
<td>[% L.input_tag('reference', reference, size=20, readonly=readonly) %]</td>
|
|
70 |
<td>[% L.input_tag('reference', reference, style='width:330px', readonly=readonly) %]</td>
|
|
71 | 71 |
<th align="right">[% 'Transdate' | $T8 %]</th> |
72 | 72 |
<td>[% L.date_tag('transdate', transdate, readonly=readonly) %]</td> |
73 | 73 |
</tr> |
... | ... | |
84 | 84 |
SET departments_style = "style='visibility:hidden'" IF ALL_DEPARTMENTS.size == 0 %] |
85 | 85 |
<tr> |
86 | 86 |
<th [%- departments_style -%]align="right">[% 'Department' | $T8 %]</th> |
87 |
<td [%- departments_style -%]>[% L.select_tag('department_id', ALL_DEPARTMENTS, default = department_id, title_key = 'description', with_empty = 1) %]</td> |
|
87 |
<td [%- departments_style -%]>[% L.select_tag('department_id', ALL_DEPARTMENTS, default = department_id, title_key = 'description', with_empty = 1, style = 'width:334px') %]</td>
|
|
88 | 88 |
<th align=right>[% 'Tax point' | $T8 %]</th> |
89 | 89 |
<td>[% L.date_tag('tax_point', tax_point) %]</td> |
90 | 90 |
</tr> |
91 | 91 |
<tr> |
92 | 92 |
<th align="right">[% 'Transaction description' | $T8 %]</th> |
93 |
<td>[% L.input_tag("transaction_description", transaction_description, size=35) %]</td>
|
|
93 |
<td>[% L.input_tag("transaction_description", transaction_description, style='width:330px') %]</td>
|
|
94 | 94 |
<th align=right>[% 'Delivery Date' | $T8 %]</th> |
95 | 95 |
<td>[% L.date_tag('deliverydate', deliverydate) %]</td> |
96 | 96 |
</tr> |
97 | 97 |
<tr> |
98 | 98 |
<th align="right">[% 'Description' | $T8 %]</th> |
99 |
<td>[% L.areainput_tag('description', description, cols=50, readonly=readonly) %]</td>
|
|
99 |
<td>[% L.areainput_tag('description', description, style='width:330px', readonly=readonly) %]</td>
|
|
100 | 100 |
</tr> |
101 | 101 |
<tr> |
102 | 102 |
<th align="right">[%- IF id %][% 'Mitarbeiter' | $T8 %][% END %]</th> |
Auch abrufbar als: Unified diff
Länge Eingabefelder angleichen in in Debitoren, Kreditoren- u. Dialogbuchung.
Durch die Einführung der Vorgangsbezeichnung dort sah des alles etwas unruhig
aus.