@@ -34,17 +35,22 @@
- [% 'E-mail' | $T8 %]
+ [% 'Email address' | $T8 %]
- [% 'Signature' | $T8 %]
-
-
- [% 'Check full signature' | $T8 %]
- [% 'Edit user signature' | $T8 %]
-
+
[% 'Email signature' | $T8 %]
+
+ [% P.textarea_tag("signature", MYCONFIG.signature, class="texteditor", rows="5", cols="50") %]
+
+
+
+
+ [% "Company's email signature" | $T8 %]
+ [% P.restricted_html(company_signature) %]
+
+
[% 'Phone' | $T8 %]
@@ -68,10 +74,12 @@
[% L.select_tag(
'focus_position',
[
- ['new_description', LxERP.t8('New row, description')],
- ['new_partnumber', LxERP.t8('New row, partnumber')],
+ ['new_description', LxERP.t8('New row, description')],
+ ['new_partnumber', LxERP.t8('New row, partnumber')],
+ ['new_qty', LxERP.t8('New row, qty')],
['last_description', LxERP.t8('Last row, description')],
- ['last_partnumber', LxERP.t8('Last row, partnumber')],
+ ['last_partnumber', LxERP.t8('Last row, partnumber')],
+ ['last_qty', LxERP.t8('Last row, qty')],
],
default => MYCONFIG.focus_position)
%]
@@ -85,6 +93,13 @@
+
+ [% 'Use date and duration for time recordings' | $T8 %]
+
+ [% L.yes_no_tag('time_recording_use_duration', time_recording_use_duration) %]
+
+
+
- [% 'Language' | $T8 %]
+ [% 'Forced Layout Style' | $T8 %]
- [% L.select_tag('countrycode', COUNTRYCODES, value_key = 'value', title_key = 'name') %]
+ [% L.select_tag('layout_style', [['', LxERP.t8('Use settings from client configuration')], ['auto', LxERP.t8('Automatic')], ['desktop', LxERP.t8('desktop version')]], default=layout_style, with_empty=0) %]
+ [% 'Quick Searches that will be shown in the header for this user' | $T8 %]
+
+
+ [% L.select_tag("quick_search_modules[]",
+ enabled_quick_searchmodules,
+ value_key = "name",
+ title_key = "description_config",
+ id = "quick_searches",
+ multiple = 1,
+ with_empty = 1
+ size = enabled_quick_searchmodules.size,
+ default = default_quick_searchmodules) %]
+
+
+
+ [% 'Item input position for quotations and orders' | $T8 %]
+
+ [% 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) %]
+
+