Revision 4702a2f1
Von Sven Schöling vor 5 Tagen hinzugefügt
- ID 4702a2f11f6dd10a062cd5e63a624ed029e86df1
- Vorgänger 07458256
templates/design40_webpages/am/config.html | ||
---|---|---|
247 | 247 |
<td> |
248 | 248 |
[% L.yes_no_tag('part_picker_search_all_as_list_default', part_picker_search_all_as_list_default) %] |
249 | 249 |
</td> |
250 |
</tr> |
|
251 |
<tr> |
|
252 |
<th>[% 'Item input position for quotations and orders' | $T8 %]</th> |
|
253 |
<td> |
|
254 |
[% L.select_tag('order_item_input_position', [ [ 'default', LxERP.t8('Use settings from client configuration') ], [ 0, LxERP.t8('above the positions') ], [ 1, LxERP.t8('below the positions') ] ], default=order_item_input_position) %] |
|
255 |
</td> |
|
250 | 256 |
</tr> |
251 | 257 |
</tbody> |
252 | 258 |
</table> |
templates/design40_webpages/client_config/_features.html | ||
---|---|---|
439 | 439 |
</div> |
440 | 440 |
</td> |
441 | 441 |
</tr> |
442 |
<tr> |
|
443 |
<th>[% LxERP.t8("Item input position for quotations and orders") %]</th> |
|
444 |
<td>[% L.select_tag("defaults.order_item_input_position", [ [ 0, LxERP.t8('above the positions'), ], [ 1, LxERP.t8('below the positions') ] ], default=SELF.defaults.order_item_input_position) %]</td> |
|
445 |
<td>[% LxERP.t8("Controls whether the default item input is above (default) or below the positions list in orders and quotations. Can be overridden by user preferences.") %]</td> |
|
446 |
</tr> |
|
442 | 447 |
<tr> |
443 | 448 |
<th class="caption" colspan="3">[% 'Show certain sales and purchase documents' | $T8 %]</th> |
444 | 449 |
</tr> |
templates/design40_webpages/order/tabs/basic_data.html | ||
---|---|---|
355 | 355 |
|
356 | 356 |
</div><!-- /.wrapper --> |
357 | 357 |
|
358 |
[% PROCESS order/tabs/_item_input.html SELF=SELF %] |
|
358 |
[%- IF order_item_input_position == 0 -%] |
|
359 |
[% PROCESS order/tabs/_item_input.html SELF=SELF %] |
|
360 |
[%- END -%] |
|
359 | 361 |
|
360 | 362 |
[%- IF SELF.positions_scrollbar_height -%] |
361 | 363 |
[%- SET scroll_style = 'style="overflow-y: auto; height:' _ SELF.positions_scrollbar_height _ 'vh;"' -%] |
... | ... | |
450 | 452 |
|
451 | 453 |
</div><!-- /#row_table_scroll_id /.wrapper --> |
452 | 454 |
|
455 |
[%- IF order_item_input_position == 1 -%] |
|
456 |
[% PROCESS order/tabs/_item_input.html SELF=SELF %] |
|
457 |
[%- END -%] |
|
458 |
|
|
453 | 459 |
</div><!-- /#ui-tabs-basic-data --> |
454 | 460 |
|
455 | 461 |
[% L.sortable_element('#row_table_id') %] |
Auch abrufbar als: Unified diff
Artikeleingabe unten: design4.0 templates
Im Gegensatz zum alten template Satz ist hier die Artikeleingabe nicht
im scrollbaren Bereich enthalten, weil der sowieso schon recht klein
ist.