]> wagnertech.de Git - kivitendo-erp.git/commitdiff
Mandantenkonfiguration: Felder bearbeiten können, die zuvor nur in myconfig standen
authorMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 14 Jun 2013 10:54:29 +0000 (12:54 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 14 Jun 2013 10:54:29 +0000 (12:54 +0200)
templates/webpages/client_config/_datev_check_configuration.html
templates/webpages/client_config/_default_accounts.html
templates/webpages/client_config/_miscellaneous.html
templates/webpages/client_config/_orders_deleteable.html
templates/webpages/client_config/_posting_configuration.html
templates/webpages/client_config/_ranges_of_numbers.html
templates/webpages/client_config/_warehouse.html

index 13d12aaa267c31516c6b03ce1abb90bd8242dfd6..e71487d7599f26a0c2fb4dd76c512240e4fa1db5 100644 (file)
@@ -1,7 +1,5 @@
 [%- USE LxERP -%][%- USE L -%]
 <div id="datev_check_configuration">
- <div class='listheading'>[% LxERP.t8('DATEV check configuration') %]</div>
-
  <table>
   <tr>
    <td colspan="3">[% LxERP.t8('It is possible to make a quick DATEV export everytime you post a record to ensure things work nicely with their data requirements. This will result in a slight overhead though you can enable this for each type of record independantly.') %]</td>
index c73002b85b52c72edd762740e80182dc3d917fa2..f893f5481a036d82fa0261d696c03f545f025edd 100644 (file)
@@ -1,8 +1,6 @@
 [%- USE HTML -%][%- USE LxERP -%][%- USE L -%][%- USE T8 -%]
 [% SET style="width: 600px" %]
 <div id="default_accounts">
- <div class='listheading'>[% LxERP.t8('Default Accounts') %]</div>
-
  <table>
   <tr>
    <td align="right">[% LxERP.t8("Inventory Account") %]</td>
index c09fa761b33a40f83db46cf2a26dcc2e336e2356..57c62490e4769417c88efef8362982f538f70d4d 100644 (file)
@@ -1,54 +1,82 @@
 [%- USE LxERP -%][%- USE L -%][%- USE HTML -%]
-[% SET style="width: 200px" %]
+[% SET style="width: 400px" %]
 <div id="miscellaneous">
- <div class="listheading">[% LxERP.t8("Miscellaneous") %]</div>
-
  <table>
+  <tr><td class="listheading" colspan="4">[% LxERP.t8("Company settings") %]</td></tr>
+
+  <tr>
+   <td align="right">[% LxERP.t8("Company name") %]</td>
+   <td>[% L.input_tag('defaults.company', SELF.defaults.company, style=style) %]</td>
+  </tr>
+
+  <tr>
+   <td align="right">[% LxERP.t8("Address") %]</td>
+   <td>[% L.textarea_tag('defaults.address', SELF.defaults.address, style=style, rows=4) %]</td>
+  </tr>
+
+  <tr>
+   <td align="right">[% LxERP.t8("Tax number") %]</td>
+   <td>[% L.input_tag('defaults.taxnumber', SELF.defaults.taxnumber, style=style) %]</td>
+  </tr>
+
+  <tr>
+   <td align="right">[% LxERP.t8("Tax ID number") %]</td>
+   <td>[% L.input_tag('defaults.co_ustid', SELF.defaults.co_ustid, style=style) %]</td>
+  </tr>
+
+  <tr>
+   <td align="right">[% LxERP.t8("SEPA creditor ID") %]</td>
+   <td>[% L.input_tag('defaults.sepa_creditor_id', SELF.defaults.sepa_creditor_id, style=style) %]</td>
+  </tr>
+
   <tr>
    <td align="right">[% LxERP.t8("Business Number") %]</td>
    <td>[% L.input_tag('defaults.businessnumber', SELF.defaults.businessnumber, style=style) %]</td>
   </tr>
 
+  <tr>
+   <td align="right">[% LxERP.t8("DUNS number") %]</td>
+   <td>[% L.input_tag('defaults.duns', SELF.defaults.duns, style=style) %]</td>
+  </tr>
+
+  <tr><td class="listheading" colspan="4">[% LxERP.t8("Language settings") %]</td></tr>
+
   <tr>
    <td align="right">[% LxERP.t8('Default Customer/Vendor Language') %]</td>
    <td>[% L.select_tag('defaults.language_id', SELF.all_languages, title_key='description', default=SELF.defaults.language_id, with_empty=1, style=style) %]</td>
   </tr>
- </table>
 
<div class="listheading">[% LxERP.t8("Currencies") %]</div>
 <tr><td class="listheading" colspan="4">[% LxERP.t8("Currencies") %]</td></tr>
 
- <table>
   <tr>
    <th></th>
-   <th>[% LxERP.t8("Default currency") %]</th>
    <th>[% LxERP.t8("Currency name") %]</th>
+   <th>[% LxERP.t8("Default currency") %]</th>
    <th>[% LxERP.t8("Hints") %]</th>
   </tr>
 
 [% FOREACH currency = SELF.all_currencies %]
   <tr>
    <td align="right">[% IF loop.count == 1 %][% LxERP.t8("Currencies") %][% END %]</td>
+   <td>
+    [% L.input_tag("currencies[].name", currency.name, style=style) %]
+   </td>
    <td align="center">
     [% 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)) %]
    </td>
-   <td>
-    [% L.input_tag("currencies[].name", currency.name, style=style) %]
-   </td>
    <td>[% IF loop.count == 1 %][% LxERP.t8("Edit the currency names in order to rename them.") %][%- END %]</td>
   </tr>
 [% END %]
 
   <tr>
    <td align="right">[% LxERP.t8("Add new currency") %]</td>
-   <td align="center">[% L.radio_button_tag('defaults.currency_id', value=-1, id='defaults.currency_id__1', checked=(SELF.defaults.currency_id == -1)) %]</td>
    <td>[% L.input_tag("new_currency", FORM.new_currency, style=style) %]</td>
+   <td align="center">[% L.radio_button_tag('defaults.currency_id', value=-1, id='defaults.currency_id__1', checked=(SELF.defaults.currency_id == -1)) %]</td>
   </tr>
- </table>
 
<div class="listheading">[% LxERP.t8("Weight") %]</div>
 <tr><td class="listheading" colspan="4">[% LxERP.t8("Weight") %]</td></tr>
 
- <table>
   <tr>
    <td align="right">[% LxERP.t8("Weight unit") %]</td>
    <td>[% L.select_tag('defaults.weightunit', SELF.all_weightunits, default=SELF.defaults.weightunit, value_key='name', title_key='name', style=style) %]</td>
@@ -57,7 +85,7 @@
   <tr>
    <td align="right">[% LxERP.t8('Show weights') %]</td>
    <td>[% L.yes_no_tag('defaults.show_weight', SELF.defaults.show_weight, style=style) %]</td>
-   <td>[% LxERP.t8('Show the weights of articles and the total weight in orders, invoices and delivery notes?') %]</td>
+   <td colspan="2">[% LxERP.t8('Show the weights of articles and the total weight in orders, invoices and delivery notes?') %]</td>
   </tr>
  </table>
 </div>
index c15f159e433ce990e7ecf64dfdfbe3bc4ccfa258..0b35a72ee2fe470a5e14545daa1321396e0a0adc 100644 (file)
@@ -1,7 +1,5 @@
 [%- USE LxERP -%][%- USE L -%]
 <div id="orders_deleteable">
- <div class='listheading'>[% LxERP.t8('Orders / Delivery Orders deleteable') %]</div>
-
  <table>
   <tr>
    <td align="right">[% LxERP.t8('Sales Orders deleteable') %]</td>
index 333ae485e5a1b7c4f2ebe7577208aa288ec7ef8f..d85fd79b3f3d7d4f071a1c2c5ae4794de74986d3 100644 (file)
@@ -1,7 +1,5 @@
 [%- USE L -%][%- USE LxERP -%]
 <div id="posting_configuration">
- <div class="listheading">[% LxERP.t8('Posting Configuration') %]</div>
-
  <table>
   <tr>
    <td align="right">[% LxERP.t8('Sales invoices changeable') %]</td>
index 38a7e60e82ecc4a5b05c89f0af05dd4e09b87949..51b11b9432ef56c97602f84c85241dc67643cac6 100644 (file)
@@ -1,7 +1,5 @@
 [%- USE LxERP -%][%- USE L -%][%- USE HTML -%]
 <div id="ranges_of_numbers">
- <div class='listheading'>[% LxERP.t8('Ranges of numbers') %]</div>
-
  <table>
   <tr>
    <td align="right" nowrap>[% LxERP.t8('Last Invoice Number') %]</td>
index 79fc7a2759eacb7b55282d802bb559c00ee0977d..87ff835891d90410995cf009e0847262c64457c8 100644 (file)
@@ -1,7 +1,5 @@
 [%- USE HTML -%][%- USE LxERP -%][%- USE L -%]
 <div id="warehouse">
- <div class='listheading'>[% LxERP.t8('Warehouse') %]</div>
-
  <table>
   <tr>
    <td align="right">[% LxERP.t8('Default Transfer') %]</td>