[%- USE LxERP -%][%- USE L -%][%- USE HTML -%] [% SET style="width: 200px" %]
[% LxERP.t8("Miscellaneous") %]
[% LxERP.t8("Business Number") %] [% L.input_tag('defaults.businessnumber', SELF.defaults.businessnumber, style=style) %]
[% LxERP.t8('Default Customer/Vendor Language') %] [% L.select_tag('defaults.language_id', SELF.all_languages, title_key='description', default=SELF.defaults.language_id, with_empty=1, style=style) %]
[% LxERP.t8("Currencies") %]
[% FOREACH currency = SELF.all_currencies %] [% END %]
[% LxERP.t8("Default currency") %] [% LxERP.t8("Currency name") %] [% LxERP.t8("Hints") %]
[% IF loop.count == 1 %][% LxERP.t8("Currencies") %][% END %] [% L.hidden_tag("currencies[+].id", currency.id) %] [% L.radio_button_tag('defaults.currency_id', value=currency.id, id='defaults.currency_id_' _ currency.id, checked=(SELF.defaults.currency_id == currency.id)) %] [% L.input_tag("currencies[].name", currency.name, style=style) %] [% IF loop.count == 1 %][% LxERP.t8("Edit the currency names in order to rename them.") %][%- END %]
[% LxERP.t8("Add new currency") %] [% L.radio_button_tag('defaults.currency_id', value=-1, id='defaults.currency_id__1', checked=(SELF.defaults.currency_id == -1)) %] [% L.input_tag("new_currency", FORM.new_currency, style=style) %]
[% LxERP.t8("Weight") %]
[% LxERP.t8("Weight unit") %] [% L.select_tag('defaults.weightunit', SELF.all_weightunits, default=SELF.defaults.weightunit, value_key='name', title_key='name', style=style) %]
[% LxERP.t8('Show weights') %] [% L.yes_no_tag('defaults.show_weight', SELF.defaults.show_weight, style=style) %] [% LxERP.t8('Show the weights of articles and the total weight in orders, invoices and delivery notes?') %]