@@ -19,7 +20,7 @@
[% 'Name' | $T8 %]
-
+
@@ -34,31 +35,36 @@
- [% '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 %]
-
+
[% 'Fax' | $T8 %]
-
+
[% 'taxincluded checked' | $T8 %]
- [% L.yes_no_tag('taxincluded_checked', myconfig_taxincluded_checked) %]
+ [% L.yes_no_tag('taxincluded_checked', MYCONFIG.taxincluded_checked) %]
@@ -68,16 +74,32 @@
[% 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)
+ default => MYCONFIG.focus_position)
%]
+
+ [% 'Item multi selection with qty' | $T8 %]
+
+ [% L.yes_no_tag('item_multiselect', MYCONFIG.item_multiselect) %]
+
+
+
+
+ [% '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) %]
+
+