Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 48b465f5

Von Hans Peter Schlaepfer vor fast 5 Jahren hinzugefügt

  • ID 48b465f5bc71d60ee4b6ba42185b75d60cb0961f
  • Vorgänger 86204ed3
  • Nachfolger 1f5d5be6

Neues kivitendo Design Aenderungen in templates/webpages/client_config/..

Unterschiede anzeigen:

templates/webpages/client_config/_features.html
1
[%- USE LxERP -%][%- USE L -%][%- USE P -%][%- USE T8 %]
2
[% SET style="width: 250px" %]
3
<div id="features">
4
 <table>
5
  <tr><td class="listheading" colspan="4">[% LxERP.t8("DATEV") %]</td></tr>
6

  
7
  <tr>
8
   <td align="right">[% LxERP.t8('Datevautomatik') %]</td>
9
   <td>[% L.yes_no_tag('defaults.feature_datev', SELF.defaults.feature_datev) %]</td>
10
   <td>[% LxERP.t8('Use Datevautomatik') %]</td>
11
  </tr>
12

  
13
  <tr><td class="listheading" colspan="4">[% LxERP.t8("UStVA") %]</td></tr>
1
[% USE LxERP %]
2
[% USE L %]
3
[% USE P %]
4
[% USE T8 %]
14 5

  
15
  <tr>
16
   <td align="right">[% LxERP.t8('UStVA') %]</td>
17
   <td>[% L.yes_no_tag('defaults.feature_ustva', SELF.defaults.feature_ustva) %]</td>
18
   <td>[% LxERP.t8('Use UStVA') %]</td>
19
  </tr>
6
<div id="features">
20 7

  
21
  <tr><td class="listheading" colspan="4">[% LxERP.t8("File Management") %]</td></tr>
22
  <tr>
23
   <td align="right">[% LxERP.t8('WebDAV') %]</td>
24
   <td>[% L.yes_no_tag('defaults.webdav', SELF.defaults.webdav) %]</td>
25
   <td>[% LxERP.t8('Use WebDAV Repository') %]</td>
26
  </tr>
27
  <tr>
28
   <td align="right">[% LxERP.t8('WebDAV save documents') %]</td>
29
   <td>[% L.yes_no_tag('defaults.webdav_documents', SELF.defaults.webdav_documents) %]</td>
30
   <td>[% LxERP.t8('Save document in WebDAV repository') %]</td>
31
  </tr>
32
  <tr>
33
   <td align="right">[% LxERP.t8('Filemanagement') %]</td>
34
   <td>[% L.yes_no_tag('defaults.doc_storage', SELF.defaults.doc_storage) %]</td>
35
   <td>[% LxERP.t8('Use Filemanagement') %]</td>
36
  </tr>
37
  <tr>
38
    <td align="right">[% LxERP.t8('Storage Type for generated/imported PDF Documents') %]</td>
39
    <td>[% L.select_tag('defaults.doc_storage_for_documents',
40
         [ [ 'None', LxERP.t8('None') ],[ 'Filesystem', LxERP.t8('Files') ],[ 'Webdav', LxERP.t8('WebDAV') ] ],
41
                               default = SELF.defaults.doc_storage_for_documents,
42
                               onchange="return checkavailable_filebackend(this);") %]</td>
43
    <td>[% LxERP.t8('Use this storage backend for all generated PDF-Files') %]</td>
44
  </tr>
45
  <tr>
46
    <td align="right">[% LxERP.t8('Storage Type for Attachments') %]</td>
47
    <td>[% L.select_tag('defaults.doc_storage_for_attachments',
48
         [ [ 'None', LxERP.t8('None') ], [ 'Filesystem', LxERP.t8('Files') ],[ 'Webdav', LxERP.t8('WebDAV') ] ],
49
                               default = SELF.defaults.doc_storage_for_attachments,
50
                               onchange="return checkavailable_filebackend(this);") %]</td>
51
    <td>[% LxERP.t8('Use this storage backend for all uploaded attachments') %]</td>
52
  </tr>
53
  <tr>
54
    <td align="right">[% LxERP.t8('Storage Type for images') %]</td>
55
    <td>[% L.select_tag('defaults.doc_storage_for_images',
56
         [ [ 'None', LxERP.t8('None') ], [ 'Filesystem', LxERP.t8('Files') ],[ 'Webdav', LxERP.t8('WebDAV') ] ],
57
                               default = SELF.defaults.doc_storage_for_images,
58
                               onchange="return checkavailable_filebackend(this);") %]</td>
59
    <td>[% LxERP.t8('Use this storage backend for uploaded images') %]</td>
60
  </tr>
61
  <tr>
62
    <td align="right">[% LxERP.t8('Storage Type for shopimages') %]</td>
63
    <td>[% L.select_tag('defaults.doc_storage_for_shopimages',
64
         [ [ 'None', LxERP.t8('None') ], [ 'Filesystem', LxERP.t8('Files') ],[ 'Webdav', LxERP.t8('WebDAV') ] ],
65
                               default = SELF.defaults.doc_storage_for_shopimages,
66
                               onchange="return checkavailable_filebackend(this);") %]</td>
67
    <td>[% LxERP.t8('Use this storage backend for uploaded images') %]</td>
68
  </tr>
69
  <tr>
70
   <td align="right">[% LxERP.t8('Delete printfiles') %]</td>
71
   <td>[% L.yes_no_tag('defaults.doc_delete_printfiles', SELF.defaults.doc_delete_printfiles) %]</td>
72
   <td>[% LxERP.t8('Allow to delete generated printfiles') %]</td>
73
  </tr>
74
  <tr>
75
   <td align="right">[% LxERP.t8('max filesize') %]</td>
76
   <td>[% L.input_tag('doc_max_filesize_MB','', size=10, onchange="verifyMBSize(this);") %]
77
       [% L.hidden_tag('defaults.doc_max_filesize',SELF.defaults.doc_max_filesize) %] MB</td>
78
   <td>[% LxERP.t8('The maximum of uploadable filesize in Megabyte') %]</td>
79
  </tr>
80
  <tr>
81
   <td align="right">[% LxERP.t8('Preselect Customer/Vendor documents as email attachments') %]</td>
82
   <td>[% L.yes_no_tag('defaults.email_attachment_vc_files_checked', SELF.defaults.email_attachment_vc_files_checked) %]</td>
83
   <td>[% LxERP.t8('Preselect all documents saved for the current customer/vendor as a mail attachment.') %]</td>
84
  </tr>
85
  <tr>
86
   <td align="right">[% LxERP.t8('Preselect part documents as email attachments') %]</td>
87
   <td>[% L.yes_no_tag('defaults.email_attachment_part_files_checked', SELF.defaults.email_attachment_part_files_checked) %]</td>
88
   <td>[% LxERP.t8('Preselect all documents for the current selected parts in a record as a mail attachment.') %]</td>
89
  </tr>
90
  <tr>
91
   <td align="right">[% LxERP.t8('Preselect record documents as email attachments') %]</td>
92
   <td>[% L.yes_no_tag('defaults.email_attachment_record_files_checked', SELF.defaults.email_attachment_record_files_checked) %]</td>
93
   <td>[% LxERP.t8('Preselect all documents saved for the current record as a mail attachment.') %]</td>
94
  </tr>
8
<div class="wrapper">
9

  
10
  <table class="tbl-horizontal expanded" style="margin-right:4.0em;">
11
    <caption>[% LxERP.t8("DATEV & UStVA") %]</caption>
12
    <colgroup> <col class="wi-mediumsmall"><col class="wi-small"><col class="wi-mediumsmall"> </colgroup>
13
    <tbody>
14
      <tr>
15
        <th>[% LxERP.t8('Datevautomatik') %]</th>
16
        <td>[% L.yes_no_tag('defaults.feature_datev', SELF.defaults.feature_datev) %]</td>
17
        <td class="long-desc">[% LxERP.t8('Use Datevautomatik') %]</td>
18
      </tr>
19
      <tr>
20
        <th>[% LxERP.t8('UStVA') %]</th>
21
        <td>[% L.yes_no_tag('defaults.feature_ustva', SELF.defaults.feature_ustva) %]</td>
22
        <td class="long-desc">[% LxERP.t8('Use UStVA') %]</td>
23
      </tr>
24
      <tr>
25
        <th class="caption" colspan="3">[% LxERP.t8("File Management") %]</th>
26
      </tr>
27
      <tr>
28
        <th>[% LxERP.t8('WebDAV') %]</th>
29
        <td>[% L.yes_no_tag('defaults.webdav', SELF.defaults.webdav) %]</td>
30
        <td class="long-desc">[% LxERP.t8('Use WebDAV Repository') %]</td>
31
      </tr>
32
      <tr>
33
        <th>[% LxERP.t8('WebDAV save documents') %]</th>
34
        <td>[% L.yes_no_tag('defaults.webdav_documents', SELF.defaults.webdav_documents) %]</td>
35
        <td class="long-desc">[% LxERP.t8('Save document in WebDAV repository') %]</td>
36
      </tr>
37
      <tr>
38
        <th>[% LxERP.t8('Filemanagement') %]</th>
39
        <td>[% L.yes_no_tag('defaults.doc_storage', SELF.defaults.doc_storage) %]</td>
40
        <td class="long-desc">[% LxERP.t8('Use Filemanagement') %]</td>
41
      </tr>
42
      <tr>
43
        <th>[% LxERP.t8('Storage Type for generated/imported PDF Documents') %]</th>
44
        <td>[% L.select_tag('defaults.doc_storage_for_documents', [ [ 'None', LxERP.t8('None') ],[ 'Filesystem', LxERP.t8('Files') ],[ 'Webdav', LxERP.t8('WebDAV') ] ], default = SELF.defaults.doc_storage_for_documents, onchange="return checkavailable_filebackend(this);") %]</td>
45
        <td class="long-desc">[% LxERP.t8('Use this storage backend for all generated PDF-Files') %]</td>
46
      </tr>
47
      <tr>
48
        <th>[% LxERP.t8('Storage Type for Attachments') %]</th>
49
        <td>[% L.select_tag('defaults.doc_storage_for_attachments', [ [ 'None', LxERP.t8('None') ], [ 'Filesystem', LxERP.t8('Files') ],[ 'Webdav', LxERP.t8('WebDAV') ] ], default = SELF.defaults.doc_storage_for_attachments, onchange="return checkavailable_filebackend(this);") %]</td>
50
        <td class="long-desc">[% LxERP.t8('Use this storage backend for all uploaded attachments') %]</td>
51
      </tr>
52
      <tr>
53
        <th>[% LxERP.t8('Storage Type for images') %]</th>
54
        <td>[% L.select_tag('defaults.doc_storage_for_images', [ [ 'None', LxERP.t8('None') ], [ 'Filesystem', LxERP.t8('Files') ],[ 'Webdav', LxERP.t8('WebDAV') ] ], default = SELF.defaults.doc_storage_for_images, onchange="return checkavailable_filebackend(this);") %]</td>
55
        <td class="long-desc">[% LxERP.t8('Use this storage backend for uploaded images') %]</td>
56
      </tr>
57
      <tr>
58
        <th>[% LxERP.t8('Storage Type for shopimages') %]</th>
59
        <td>[% L.select_tag('defaults.doc_storage_for_shopimages',
60
             [ [ 'None', LxERP.t8('None') ], [ 'Filesystem', LxERP.t8('Files') ],[ 'Webdav', LxERP.t8('WebDAV') ] ],
61
                                   default = SELF.defaults.doc_storage_for_shopimages,
62
                                   onchange="return checkavailable_filebackend(this);") %]</td>
63
        <td class="long-desc">[% LxERP.t8('Use this storage backend for uploaded images') %]</td>
64
      </tr>
65
      <tr>
66
        <th>[% LxERP.t8('Delete printfiles') %]</th>
67
        <td>[% L.yes_no_tag('defaults.doc_delete_printfiles', SELF.defaults.doc_delete_printfiles) %]</td>
68
        <td class="long-desc">[% LxERP.t8('Allow to delete generated printfiles') %]</td>
69
      </tr>
70
      <tr>
71
        <th>[% LxERP.t8('max filesize') %]</th>
72
        <td>[% L.input_tag('doc_max_filesize_MB','', size=10, onchange="verifyMBSize(this);", class='wi-small') %] [% L.hidden_tag('defaults.doc_max_filesize',SELF.defaults.doc_max_filesize) %] MB</td>
73
        <td class="long-desc">[% LxERP.t8('The maximum of uploadable filesize in Megabyte') %]</td>
74
      </tr>
75
      <tr>
76
        <td align="right">[% LxERP.t8('Preselect Customer/Vendor documents as email attachments') %]</td>
77
        <td>[% L.yes_no_tag('defaults.email_attachment_vc_files_checked', SELF.defaults.email_attachment_vc_files_checked) %]</td>
78
        <td>[% LxERP.t8('Preselect all documents saved for the current customer/vendor as a mail attachment.') %]</td>
79
      </tr> 
80
      <tr>
81
        <td align="right">[% LxERP.t8('Preselect part documents as email attachments') %]</td>
82
        <td>[% L.yes_no_tag('defaults.email_attachment_part_files_checked', SELF.defaults.email_attachment_part_files_checked) %]</td>
83
        <td>[% LxERP.t8('Preselect all documents for the current selected parts in a record as a mail attachment.') %]</td>
84
      </tr>
85
      <tr>
86
        <td align="right">[% LxERP.t8('Preselect record documents as email attachments') %]</td>
87
        <td>[% L.yes_no_tag('defaults.email_attachment_record_files_checked', SELF.defaults.email_attachment_record_files_checked) %]</td>
88
        <td>[% LxERP.t8('Preselect all documents saved for the current record as a mail attachment.') %]</td>
89
      </tr>
95 90
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Storage Backends") %]</td></tr>
96
  <tr>
97
   <td align="right">[% LxERP.t8('Files') %]</td>
98
   <td>[% L.yes_no_tag('defaults.doc_files', SELF.defaults.doc_files) %]</td>
99
   <td>[% LxERP.t8('Use File Storage backend') %]</td>
100
  </tr>
101
  <tr>
102
   <td align="right">[% LxERP.t8('WebDAV') %]</td>
103
   <td>[% L.yes_no_tag('defaults.doc_webdav', SELF.defaults.doc_webdav) %]</td>
104
   <td>[% LxERP.t8('Use WebDAV Storage backend') %]</td>
105
  </tr>
106

  
107
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Reports") %]</td></tr>
108

  
109
  <tr>
110
   <td align="right">[% LxERP.t8('Balance') %]</td>
111
   <td>[% L.yes_no_tag('defaults.feature_balance', SELF.defaults.feature_balance) %]</td>
112
   <td>[% LxERP.t8('Use Balance Sheet') %]</td>
113
  </tr>
114
  <tr>
115
   <td align="right">[% LxERP.t8('income') %]</td>
116
   <td>[% L.yes_no_tag('defaults.feature_eurechnung', SELF.defaults.feature_eurechnung) %]</td>
117
   <td>[% LxERP.t8('Use Income') %]</td>
118
  </tr>
119
  <tr>
120
   <td align="right">[% LxERP.t8('Erfolgsrechnung') %]</td>
121
   <td>[% L.yes_no_tag('defaults.feature_erfolgsrechnung', SELF.defaults.feature_erfolgsrechnung) %]</td>
122
   <td>[% LxERP.t8('Use Erfolgsrechnung') %]</td>
123
  </tr>
124

  
125
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Customer Master Data") %]</td></tr>
126

  
127
  <tr>
128
   <td align="right">[% LxERP.t8('Representative') %]</td>
129
   <td>[% L.yes_no_tag('defaults.vertreter', SELF.defaults.vertreter) %]</td>
130
   <td>[% LxERP.t8('Representative for Customer') %]</td>
131
  </tr>
132
 <tr>
133
   <td align="right">[% LxERP.t8('Normalize Customer / Vendor names') %]</td>
134
   <td>   [% L.yes_no_tag('defaults.normalize_vc_names', SELF.defaults.normalize_vc_names) %]</td>
135
   <td>[% LxERP.t8('Automatic deletion of leading, trailing and excessive (repetitive) spaces in customer or vendor names') %]</td>
136
  </tr>
137

  
138
  <tr>
139
   <td align="right">[% LxERP.t8('Hourly Rate') %]</td>
140
   <td>[% L.input_tag('defaults.customer_hourly_rate', LxERP.format_amount(SELF.defaults.customer_hourly_rate, 2), style=style) %]</td>
141
   <td>[% LxERP.t8('Default hourly rate for new customers') %]</td>
142
  </tr>
143

  
144
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Parts Master Data") %]</td></tr>
145

  
146
  <tr>
147
   <td align="right">[% LxERP.t8('Pictures for parts') %]</td>
148
   <td>[% L.yes_no_tag('defaults.parts_show_image', SELF.defaults.parts_show_image) %]</td>
149
   <td>[% LxERP.t8('Show the picture in the part form') %]</td>
150
  </tr>
151
  <tr>
152
   <td align="right">[% LxERP.t8('Pictures for search parts') %]</td>
153
   <td>[% L.yes_no_tag('defaults.parts_listing_image', SELF.defaults.parts_listing_image) %]</td>
154
   <td>[% LxERP.t8('Show the pictures in the result for search parts') %]</td>
155
  </tr>
156
  <tr>
157
   <td align="right">[% LxERP.t8('CSS style for pictures') %]</td>
158
   <td>   [% L.input_tag('defaults.parts_image_css',SELF.defaults.parts_image_css, style=style) %]</td>
159
   <td>[% LxERP.t8('Style the picture with the following CSS code') %]</td>
160
  </tr>
161
  <tr>
162
    <td align="right">[% LxERP.t8('If item not found, allow creation of new item') %]</td>
163
    <td>[% L.yes_no_tag('defaults.create_part_if_not_found', SELF.defaults.create_part_if_not_found) %]</td>
164
    <td>[% LxERP.t8('If searching a part from a document and no part is found then offer to create a new part.') %]</td>
165
  </tr>
166
 <tr>
167
   <td align="right">[% LxERP.t8('Normalize part description and part notes') %]</td>
168
   <td>   [% L.yes_no_tag('defaults.normalize_part_descriptions', SELF.defaults.normalize_part_descriptions) %]</td>
169
   <td>[% LxERP.t8('Automatic deletion of leading, trailing and excessive (repetitive) spaces in part description and part notes. Affects the CSV import as well.') %]</td>
170
 </tr>
171

  
172
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Purchasing & Sales") %]</td></tr>
173

  
174
  <tr>
175
   <td align="right">[% LxERP.t8('Require a transaction description in purchase and sales records') %]</td>
176
   <td>[% L.yes_no_tag('defaults.require_transaction_description_ps', SELF.defaults.require_transaction_description_ps) %]</td>
177
   <td>[% LxERP.t8('If enabled purchase and sales records cannot be saved if no transaction description has been entered.') %]</td>
178
  </tr>
179

  
180
  <tr>
181
   <td align="right">[% LxERP.t8("Only list customer's projects in sales records") %]</td>
182
   <td>[% L.yes_no_tag("defaults.customer_projects_only_in_sales", SELF.defaults.customer_projects_only_in_sales) %]</td>
183
   <td>[% LxERP.t8("If enabled only those projects that are assigned to the currently selected customer are offered for selection in sales records.") %]</td>
184
  </tr>
185

  
186
  <tr>
187
   <td align="right">[% LxERP.t8('Allow conversion from sales quotations to sales invoices') %]</td>
188
   <td>[% L.yes_no_tag('defaults.allow_sales_invoice_from_sales_quotation', SELF.defaults.allow_sales_invoice_from_sales_quotation) %]</td>
189
   <td>[% LxERP.t8('If disabled sales quotations cannot be converted into sales invoices directly.') %]</td>
190
  </tr>
191

  
192
  <tr>
193
   <td align="right">[% LxERP.t8('Allow conversion from sales orders to sales invoices') %]</td>
194
   <td>[% L.yes_no_tag('defaults.allow_sales_invoice_from_sales_order', SELF.defaults.allow_sales_invoice_from_sales_order) %]</td>
195
   <td>[% LxERP.t8('If disabled sales orders cannot be converted into sales invoices directly.') %]</td>
196
  </tr>
197

  
198
  <tr>
199
   <td align="right">[% LxERP.t8('Allow direct creation of new purchase delivery orders') %]</td>
200
   <td>[% L.yes_no_tag('defaults.allow_new_purchase_delivery_order', SELF.defaults.allow_new_purchase_delivery_order) %]</td>
201
   <td>[% LxERP.t8('If disabled purchase delivery orders can only be created by conversion from existing requests for quotations and purchase orders.') %]</td>
202
  </tr>
203

  
204
  <tr>
205
   <td align="right">[% LxERP.t8('Allow direct creation of new purchase invoices') %]</td>
206
   <td>[% L.yes_no_tag('defaults.allow_new_purchase_invoice', SELF.defaults.allow_new_purchase_invoice) %]</td>
207
   <td>[% LxERP.t8('If disabled purchase invoices can only be created by conversion from existing requests for quotations, purchase orders and purchase delivery orders.') %]</td>
208
  </tr>
209

  
210
  <tr>
211
   <td align="right">[% LxERP.t8("Show »not delivered qty/value« column in sales and purchase orders") %]</td>
212
   <td>[% L.yes_no_tag("defaults.sales_purchase_order_ship_missing_column", SELF.defaults.sales_purchase_order_ship_missing_column) %]</td>
213
   <td>[% LxERP.t8("If enabled a column will be shown in sales and purchase orders that lists both the amount and the value not shipped yet for each item.") %]</td>
214
  </tr>
215

  
216
  <tr>
217
   <td align="right">[% LxERP.t8("Warn before saving orders with duplicate parts (new controller only)") %]</td>
218
   <td>[% L.yes_no_tag("defaults.order_warn_duplicate_parts", SELF.defaults.order_warn_duplicate_parts) %]</td>
219
   <td>[% LxERP.t8("If enabled a warning will be shown in sales and purchase orders if there are two or more positions of the same part (new controller only).") %]</td>
220
  </tr>
221
  <tr>
222
   <td align="right">[% LxERP.t8("Warn before saving orders without a delivery date") %]</td>
223
   <td>[% L.yes_no_tag("defaults.order_warn_no_deliverydate", SELF.defaults.order_warn_no_deliverydate) %]</td>
224
   <td>[% LxERP.t8("If enabled a warning will be shown in sales and purchase orders if there the delivery date is empty.") %]</td>
225
  </tr>
226

  
227
  <tr><td class="listheading" colspan="4">[% LxERP.t8("E-mail") %]</td></tr>
228

  
229
  <tr>
230
   <td align="right">[% LxERP.t8('Global Record BCC') %]</td>
231
   <td>
232
     [% L.input_tag('defaults.global_bcc', SELF.defaults.global_bcc, style=style) %]
233
   </td>
234
   <td>[% 'Manually sent E-Mails will have their BCC field appended with this address. Will not trigger for employees without the right to send bcc, and will not apply to mails sent by automated jobs.' | $T8 %]</td>
235
  </tr>
236

  
237
  <tr>
238
   <td align="right">[% LxERP.t8('Send a BCC to logged in user?') %]</td>
239
   <td>
240
     [% L.yes_no_tag('defaults.bcc_to_login', SELF.defaults.bcc_to_login) %]
241
   </td>
242
   <td>
243
     [% LxERP.t8('Send a blind copy of all outgoing emails to current user\'s email address?') %]
244
   </td>
245
 </tr>
246

  
247
  <tr>
248
   <td align="right">[% LxERP.t8('Email journal') %]</td>
249
   <td>
250
     [% L.select_tag('defaults.email_journal', [ [ 0, LxERP.t8('No Journal') ],[ 1, LxERP.t8('Without Attachments') ],[ 2, LxERP.t8('With Attachments') ]  ], default=SELF.defaults.email_journal) %]
251
   </td>
252
   <td>[% 'Sent emails can be optionally stored in the database with or without their attachments.' | $T8 %]</td>
253
  </tr>
254
  <tr>
255
   <td align="right">[% LxERP.t8('Invoice email settings') %]</td>
256
   <td>
257
     [% L.select_tag('defaults.invoice_mail_settings', [ [ 'cp', LxERP.t8('Contact Person') ],[ 'invoice_mail', LxERP.t8('Invoice email') ],[ 'invoice_mail_cc_cp', LxERP.t8('Invoice email and Contact Person') ]  ], default=SELF.defaults.invoice_mail_settings) %]
258
   </td>
259
   <td>[% 'The invoice recipient can either be a selected contact person (default) or the email adress set in the master data of the customer. Additionally a contact persons mail and the company\'s invoicing mail can be combined.' | $T8 %]</td>
260
  </tr>
261

  
262
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Requirement Specs") %]</td></tr>
263
  <tr>
264
   <td align="right">[% LxERP.t8('Default article for converting into quotations and orders') %]</td>
265
   <td>
266
    [% IF SELF.h_unit_name %]
267
     [% P.part.picker('defaults.requirement_spec_section_order_part_id', SELF.defaults.requirement_spec_section_order_part_id, convertible_unit=SELF.h_unit_name, style=style) %]
268
    [% ELSE %]
269
     [% LxERP.t8("Error: this feature requires that articles with a time-based unit (e.g. 'h' or 'min') exist.") %]
270
    [% END %]
271
   </td>
272
   <td>[% LxERP.t8('When converting a requirement spec into a quotation or an oder each section gets converted into a line position in the new record. This is the article used by default for this conversion.') %]</td>
273
  </tr>
274
  <tr><td class="listheading" colspan="4">[% LxERP.t8('Transport and service costs reminder') %]</td></tr>
275
 <tr>
276
  <td align="right">[% LxERP.t8('Default transport article number') %]</td>
277
  <td>[% P.part.picker('defaults.transport_cost_reminder_article_number_id', SELF.defaults.transport_cost_reminder_article_number_id, style=style) %]</td>
278
   <td>[% LxERP.t8('Before saving a sales order, this article will be checked and a warning is generated.') %]</td>
279
 </tr>
280

  
281
 <tr><td class="listheading" colspan="4">[% LxERP.t8("Disabled Price Sources") %]</td></tr>
282
 <tr>
283
   <td align="right">[% 'Price Sources to be disabled in this client' | $T8 %]</td>
284
   <td colspan=2>
285
     <div class="clearfix">
286
      [% L.select_tag("defaults.disabled_price_sources[]", SELF.all_price_sources, id="defaults_price_sources", multiple=1, default=SELF.defaults.disabled_price_sources) %]
287
      [% L.multiselect2side("defaults_price_sources", labelsx=LxERP.t8("All price sources"), labeldx=LxERP.t8("Price sources deactivated in this client")) %]
288
     </div>
289
   </td>
290
 </tr>
291

  
292
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Projects") %]</td></tr>
293
  <tr>
294
   <td align="right">[% LxERP.t8('Always save orders with a projectnumber (create new projects)') %]</td>
295
   <td>[% L.yes_no_tag('defaults.order_always_project', SELF.defaults.order_always_project) %]</td>
296
  </tr>
297
  <tr>
298
   <td align="right">[% LxERP.t8('Project type') %]</td>
299
   <td>[% L.select_tag('defaults.project_type_id', SELF.all_project_types, default=SELF.defaults.project_type_id, title_key='description', with_empty=0, style="width: 200px") %]</td>
300
  </tr>
301
  <tr>
302
   <td align="right">[% LxERP.t8('Project Status') %]</td>
303
   <td>[% L.select_tag('defaults.project_status_id', SELF.all_project_statuses, default=SELF.defaults.project_status_id, title_key='description', with_empty=0, style="width: 200px") %]</td>
304
  </tr>
305
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Select Mulit-Item Options") %]</td></tr>
306
  <tr>
307
   <td align="right">[% LxERP.t8('Show parts longdescription (notes) in select list') %]</td>
308
   <td>[% L.yes_no_tag('defaults.show_longdescription_select_item', SELF.defaults.show_longdescription_select_item) %]</td>
309
  </tr>
310

  
311
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Enabled Quick Searched") %]</td></tr>
312
  <tr>
313
    <td align="right">[% 'Quick Searches that will be shown in the header in this client' | $T8 %]</td>
314
    <td colspan=2>
315
      <div class="clearfix">
316
       [% L.select_tag("defaults.quick_search_modules[]", SELF.available_quick_search_modules, value_key="name", title_key="description_config", id="defaults_quick_searches", multiple=1, default=SELF.defaults.quick_search_modules) %]
317
       [% L.multiselect2side("defaults_quick_searches", labelsx=LxERP.t8("All modules"), labeldx=LxERP.t8("Enabled modules")) %]
91
      <tr>
92
        <th class="caption" colspan="3">[% LxERP.t8("Storage Backends") %]</th>
93
      </tr>
94
      <tr>
95
        <th>[% LxERP.t8('Files') %]</th>
96
        <td>[% L.yes_no_tag('defaults.doc_files', SELF.defaults.doc_files) %]</td>
97
        <td class="long-desc">[% LxERP.t8('Use File Storage backend') %]</td>
98
      </tr>
99
      <tr>
100
        <th>[% LxERP.t8('WebDAV') %]</th>
101
        <td>[% L.yes_no_tag('defaults.doc_webdav', SELF.defaults.doc_webdav) %]</td>
102
        <td class="long-desc">[% LxERP.t8('Use WebDAV Storage backend') %]</td>
103
      </tr>
104
      <tr>
105
        <th class="caption" colspan="3"> [% LxERP.t8("Reports") %] </th>
106
      </tr>
107
      <tr>
108
        <th>[% LxERP.t8('Balance') %]</th>
109
        <td>[% L.yes_no_tag('defaults.feature_balance', SELF.defaults.feature_balance) %]</td>
110
        <td class="long-desc">[% LxERP.t8('Use Balance Sheet') %]</td>
111
      </tr>
112
      <tr>
113
        <th>[% LxERP.t8('income') %]</th>
114
        <td>[% L.yes_no_tag('defaults.feature_eurechnung', SELF.defaults.feature_eurechnung) %]</td>
115
        <td class="long-desc">[% LxERP.t8('Use Income') %]</td>
116
      </tr>
117
      <tr>
118
        <th>[% LxERP.t8('Erfolgsrechnung') %]</th>
119
        <td>[% L.yes_no_tag('defaults.feature_erfolgsrechnung', SELF.defaults.feature_erfolgsrechnung) %]</td>
120
        <td class="long-desc">[% LxERP.t8('Use Erfolgsrechnung') %]</td>
121
      </tr>
122
      <tr>
123
        <th class="caption" colspan="3"> [% 'E-mail' | $T8 %] </th>
124
      </tr>
125
      <tr>
126
        <th>[% LxERP.t8('Global Record BCC') %]</th>
127
        <td colspan="2"> [% L.input_tag('defaults.global_bcc', SELF.defaults.global_bcc, class='wi-wide') %] <div class="description">[% 'Manually sent E-Mails will have their BCC field appended with this address. Will not trigger for employees without the right to send bcc, and will not apply to mails sent by automated jobs.' | $T8 %]</div></td>
128

  
129
      </tr>
130
      <tr>
131
        <th>[% LxERP.t8('Send a BCC to logged in user?') %]</th>
132
        <td> [% L.yes_no_tag('defaults.bcc_to_login', SELF.defaults.bcc_to_login) %] </td>
133
        <td class="long-desc"> [% LxERP.t8('Send a blind copy of all outgoing emails to current user\'s email address?') %] </td>
134
      </tr>
135
      <tr>
136
        <th>[% LxERP.t8('Email journal') %]</th>
137
        <td colspan="2"> [% L.select_tag('defaults.email_journal', [ [ 0, LxERP.t8('No Journal') ],[ 1, LxERP.t8('Without Attachments') ],[ 2, LxERP.t8('With Attachments') ] ], default=SELF.defaults.email_journal, class="wi-wide") %] <div class="description">[% 'Sent emails can be optionally stored in the database with or without their attachments.' | $T8 %]</div></td>
138

  
139
      </tr>
140
      <tr>
141
        <td align="right">[% LxERP.t8('Invoice email settings') %]</td>
142
        <td>
143
          [% L.select_tag('defaults.invoice_mail_settings', [ [ 'cp', LxERP.t8('Contact Person') ],[ 'invoice_mail', LxERP.t8('Invoice email') ],[ 'invoice_mail_cc_cp', LxERP.t8('Invoice email and Contact Person') ]  ], default=SELF.defaults.invoice_mail_settings) %]
144
        </td>
145
        <td>[% 'The invoice recipient can either be a selected contact person (default) or the email adress set in the master data of the customer. Additionally a contact persons mail and the company\'s invoicing mail can be combined.' | $T8 %]</td>
146
      </tr>
147
      <tr>
148
        <th class="caption" colspan="3">[% LxERP.t8("SEPA") %]</th>
149
      </tr>
150
      <tr>
151
        <th>[% 'Add Customer/Vendor Number' | $T8 %]</th>
152
        <td>[% L.yes_no_tag('defaults.sepa_reference_add_vc_vc_id', SELF.defaults.sepa_reference_add_vc_vc_id) %]</td>
153
        <td class="long-desc">[% LxERP.t8('Add Customer/Vendor Number as a reference add-on for SEPA export.') %]</td>
154
      </tr>
155
      <tr>
156
        <th>[% 'Execution Date = Invoice Duedate' | $T8 %]</th>
157
        <td>[% L.yes_no_tag('defaults.sepa_set_duedate_as_default_exec_date', SELF.defaults.sepa_set_duedate_as_default_exec_date) %]</td>
158
        <td class="long-desc">[% LxERP.t8('Set the invoice duedate as the default execution date for SEPA export.') %]</td>
159
      </tr>
160
      <tr>
161
        <th>[% 'Execution Date = Skonto Date' | $T8 %]</th>
162
        <td>[% L.yes_no_tag('defaults.sepa_set_skonto_date_as_default_exec_date', SELF.defaults.sepa_set_skonto_date_as_default_exec_date) %]</td>
163
        <td class="long-desc">[% LxERP.t8('Set the invoice skonto date (if exists) as the default execution date for SEPA export.') %]</td>
164
      </tr>
165
      <tr>
166
        <th>[% 'Buffer Substraction' | $T8 %]</th>
167
        <td>[% L.input_tag('defaults.sepa_set_skonto_date_buffer_in_days', LxERP.format_amount(SELF.defaults.sepa_set_skonto_date_buffer_in_days, 0), size=10, class='wi-small' ) %]</td>
168
        <td class="long-desc">[% LxERP.t8('In addition to the above date functions, subtract the following amount of days from the calculated date as a buffer.') %]</td>
169
      </tr>
170

  
171
      <tr>
172
        <th class="caption" colspan="3">[% LxERP.t8("Experimental Features") %]</th>
173
      </tr>
174
      <tr>
175
        <th>[% LxERP.t8('Order Controller') %]</th>
176
        <td>[% L.yes_no_tag('defaults.feature_experimental_order', SELF.defaults.feature_experimental_order) %]</td>
177
        <td class="long-desc">[% LxERP.t8('Replace legacy order controller with new one') %]</td>
178
      </tr>
179
      <tr>
180
        <th>[% LxERP.t8('Assortment') %]</th>
181
        <td>[% L.yes_no_tag('defaults.feature_experimental_assortment', SELF.defaults.feature_experimental_assortment) %]</td>
182
        <td class="long-desc">[% LxERP.t8('Enable Assortment as new article type') %]</td>
183
      </tr>
184
    </tbody>
185
  </table>
186

  
187
  <table class="tbl-horizontal expanded">
188
    <caption>[% 'Customer Master Data' | $T8 %]</caption>
189
    <colgroup> <col class="wi-mediumsmall"><col class="wi-small"><col class="wi-wide"> </colgroup>
190
    <tbody>
191
      <tr>
192
        <th>[% LxERP.t8('Representative') %]</th>
193
        <td>[% L.yes_no_tag('defaults.vertreter', SELF.defaults.vertreter) %]</td>
194
        <td class="long-desc">[% LxERP.t8('Representative for Customer') %]</td>
195
      </tr>
196
      <tr>
197
        <th>[% LxERP.t8('Normalize Customer / Vendor names') %]</th>
198
        <td> [% L.yes_no_tag('defaults.normalize_vc_names', SELF.defaults.normalize_vc_names) %]</td>
199
        <td class="long-desc">[% LxERP.t8('Automatic deletion of leading, trailing and excessive (repetitive) spaces in customer or vendor names') %]</td>
200
      </tr>
201
      <tr>
202
        <th>[% LxERP.t8('Hourly Rate') %]</th>
203
        <td>[% L.input_tag('defaults.customer_hourly_rate', LxERP.format_amount(SELF.defaults.customer_hourly_rate, 2), class='wi-small') %]</td>
204
        <td class="long-desc">[% LxERP.t8('Default hourly rate for new customers') %]</td>
205
      </tr>
206
      <tr>
207
        <th class="caption" colspan="3">[% LxERP.t8("Parts Master Data") %]</th>
208
      </tr>
209
      <tr>
210
        <th>[% LxERP.t8('Pictures for parts') %]</th>
211
        <td>[% L.yes_no_tag('defaults.parts_show_image', SELF.defaults.parts_show_image) %]</td>
212
        <td class="long-desc">[% LxERP.t8('Show the picture in the part form') %]</td>
213
      </tr>
214
      <tr>
215
        <th>[% LxERP.t8('Pictures for search parts') %]</th>
216
        <td>[% L.yes_no_tag('defaults.parts_listing_image', SELF.defaults.parts_listing_image) %]</td>
217
        <td class="long-desc">[% LxERP.t8('Show the pictures in the result for search parts') %]</td>
218
      </tr>
219
      <tr>
220
        <th>[% LxERP.t8('CSS style for pictures') %]</th>
221
        <td> [% L.input_tag('defaults.parts_image_css',SELF.defaults.parts_image_css, class='wi-mediumsmall') %]</td>
222
        <td class="long-desc">[% LxERP.t8('Style the picture with the following CSS code') %]</td>
223
      </tr>
224
      <tr>
225
        <th>[% LxERP.t8('If item not found, allow creation of new item') %]</th>
226
        <td>[% L.yes_no_tag('defaults.create_part_if_not_found', SELF.defaults.create_part_if_not_found) %]</td>
227
        <td class="long-desc">[% LxERP.t8('If searching a part from a document and no part is found then offer to create a new part.') %]</td>
228
      </tr>
229
      <tr>
230
        <th>[% LxERP.t8('Normalize part description and part notes') %]</th>
231
        <td> [% L.yes_no_tag('defaults.normalize_part_descriptions', SELF.defaults.normalize_part_descriptions) %]</td>
232
        <td class="long-desc">[% LxERP.t8('Automatic deletion of leading, trailing and excessive (repetitive) spaces in part description and part notes. Affects the CSV import as well.') %]</td>
233
      </tr>
234
      <tr>
235
        <th class="caption" colspan="3">[% LxERP.t8("Purchasing & Sales") %]</th>
236
      </tr>
237
      <tr>
238
        <th>[% LxERP.t8('Require a transaction description in purchase and sales records') %]</th>
239
        <td>[% L.yes_no_tag('defaults.require_transaction_description_ps', SELF.defaults.require_transaction_description_ps) %]</td>
240
        <td class="long-desc">[% LxERP.t8('If enabled purchase and sales records cannot be saved if no transaction description has been entered.') %]</td>
241
      </tr>
242
      <tr>
243
        <th>[% LxERP.t8("Only list customer's projects in sales records") %]</th>
244
        <td>[% L.yes_no_tag("defaults.customer_projects_only_in_sales", SELF.defaults.customer_projects_only_in_sales) %]</td>
245
        <td class="long-desc">[% LxERP.t8("If enabled only those projects that are assigned to the currently selected customer are offered for selection in sales records.") %]</td>
246
      </tr>
247
      <tr>
248
        <th>[% LxERP.t8('Allow conversion from sales quotations to sales invoices') %]</th>
249
        <td>[% L.yes_no_tag('defaults.allow_sales_invoice_from_sales_quotation', SELF.defaults.allow_sales_invoice_from_sales_quotation) %]</td>
250
        <td class="long-desc">[% LxERP.t8('If disabled sales quotations cannot be converted into sales invoices directly.') %]</td>
251
      </tr>
252
      <tr>
253
        <th>[% LxERP.t8('Allow conversion from sales orders to sales invoices') %]</th>
254
        <td>[% L.yes_no_tag('defaults.allow_sales_invoice_from_sales_order', SELF.defaults.allow_sales_invoice_from_sales_order) %]</td>
255
        <td class="long-desc">[% LxERP.t8('If disabled sales orders cannot be converted into sales invoices directly.') %]</td>
256
      </tr>
257
      <tr>
258
        <th>[% LxERP.t8('Allow direct creation of new purchase delivery orders') %]</th>
259
        <td>[% L.yes_no_tag('defaults.allow_new_purchase_delivery_order', SELF.defaults.allow_new_purchase_delivery_order) %]</td>
260
        <td class="long-desc">[% LxERP.t8('If disabled purchase delivery orders can only be created by conversion from existing requests for quotations and purchase orders.') %]</td>
261
      </tr>
262
      <tr>
263
        <th>[% LxERP.t8('Allow direct creation of new purchase invoices') %]</th>
264
        <td>[% L.yes_no_tag('defaults.allow_new_purchase_invoice', SELF.defaults.allow_new_purchase_invoice) %]</td>
265
        <td class="long-desc">[% LxERP.t8('If disabled purchase invoices can only be created by conversion from existing requests for quotations, purchase orders and purchase delivery orders.') %]</td>
266
      </tr>
267
      <tr>
268
        <th>[% LxERP.t8("Show »not delivered qty/value« column in sales and purchase orders") %]</th>
269
        <td>[% L.yes_no_tag("defaults.sales_purchase_order_ship_missing_column", SELF.defaults.sales_purchase_order_ship_missing_column) %]</td>
270
        <td class="long-desc">[% LxERP.t8("If enabled a column will be shown in sales and purchase orders that lists both the amount and the value not shipped yet for each item.") %]</td>
271
      </tr>
272
      <tr>
273
        <th>[% LxERP.t8("Warn before saving orders with duplicate parts (new controller only)") %]</th>
274
        <td>[% L.yes_no_tag("defaults.order_warn_duplicate_parts", SELF.defaults.order_warn_duplicate_parts) %]</td>
275
        <td class="long-desc">[% LxERP.t8("If enabled a warning will be shown in sales and purchase orders if there are two or more positions of the same part (new controller only).") %]</td>
276
      </tr>
277
      <tr>
278
       <td align="right">[% LxERP.t8("Warn before saving orders without a delivery date") %]</td>
279
       <td>[% L.yes_no_tag("defaults.order_warn_no_deliverydate", SELF.defaults.order_warn_no_deliverydate) %]</td>
280
       <td>[% LxERP.t8("If enabled a warning will be shown in sales and purchase orders if there the delivery date is empty.") %]</td>
281
      </tr>
282
      <tr>
283
        <th class="caption" colspan="3">[% LxERP.t8('Transport and service costs reminder') %]</th>
284
      </tr>
285
      <tr>
286
        <th>[% LxERP.t8('Default transport article number') %]</th>
287
        <td>[% P.part.picker('defaults.transport_cost_reminder_article_number_id', SELF.defaults.transport_cost_reminder_article_number_id, class='wi-mediumsmall') %]</td>
288
        <td class="long-desc">[% LxERP.t8('Before saving a sales order, this article will be checked and a warning is generated.') %]</td>
289
      </tr>
290
      <tr>
291
        <th class="caption" colspan="3">[% LxERP.t8("Requirement Specs") %]</th>
292
      </tr>
293
      <tr>
294
        <th>[% LxERP.t8('Default article for converting into quotations and orders') %]</th>
295
        <td>
296
          [% IF SELF.h_unit_name %]
297
            [% P.part.picker('defaults.requirement_spec_section_order_part_id', SELF.defaults.requirement_spec_section_order_part_id, convertible_unit=SELF.h_unit_name, class='wi-mediumsmall') %]
298
          [% ELSE %]
299
            [% LxERP.t8("Error: this feature requires that articles with a time-based unit (e.g. 'h' or 'min') exist.") %]
300
          [% END %]
301
        </td>
302
        <td class="long-desc">[% LxERP.t8('When converting a requirement spec into a quotation or an oder each section gets converted into a line position in the new record. This is the article used by default for this conversion.') %]</td>
303
      </tr>
304
      <tr>
305
        <th class="caption" colspan="3">[% LxERP.t8("Projects") %]</th>
306
      </tr>
307
      <tr>
308
        <th>[% 'Orders with projectnumber' | $T8 %]</th>
309
        <td>[% L.yes_no_tag('defaults.order_always_project', SELF.defaults.order_always_project) %]</td>
310
        <td class="long-desc">[% LxERP.t8('Always save orders with a projectnumber (create new projects)') %]</td>
311
      </tr>
312
      <tr>
313
        <th>[% LxERP.t8('Project type') %]</th>
314
        <td>[% L.select_tag('defaults.project_type_id', SELF.all_project_types, default=SELF.defaults.project_type_id, title_key='description', with_empty=0, class='wi-mediumsmall') %]</td>
315
        <td class="long-desc"></td>
316
      </tr>
317
      <tr>
318
        <th>[% LxERP.t8('Project Status') %]</th>
319
        <td>[% L.select_tag('defaults.project_status_id', SELF.all_project_statuses, default=SELF.defaults.project_status_id, title_key='description', with_empty=0, class='wi-mediumsmall') %]</td>
320
        <td class="long-desc"></td>
321
      </tr>
322
      <tr>
323
        <th class="caption" colspan="3">[% LxERP.t8("Select Mulit-Item Options") %]</th>
324
      </tr>
325
      <tr>
326
        <th>[% 'Long description' | $T8 %]</th>
327
        <td>[% L.yes_no_tag('defaults.show_longdescription_select_item', SELF.defaults.show_longdescription_select_item) %]</td>
328
        <td class="long-desc">[% LxERP.t8('Show parts longdescription (notes) in select list') %]</td>
329
      </tr>
330
    </tbody>
331
  </table>
332

  
333
</div><!-- /.wrapper -->
334

  
335
<div class="wrapper">
336

  
337
<table class="tbl-horizontal expanded">
338
  <caption>[% LxERP.t8("Disabled Price Sources") %]</caption>
339
  <colgroup> <col class="wi-normal"><col class="wi-verywide"><col class="wi-normal"> </colgroup>
340
  <tbody>
341
    <tr>
342
      <th>[% 'Price Sources to be disabled in this client' | $T8 %]</th>
343
      <td colspan="2">
344
      <div>
345
        [% L.select_tag("defaults.disabled_price_sources[]", SELF.all_price_sources, id="defaults_price_sources", multiple=1, default=SELF.defaults.disabled_price_sources) %] [% L.multiselect2side("defaults_price_sources", labelsx=LxERP.t8("All price sources"), labeldx=LxERP.t8("Price sources deactivated in this client")) %]
318 346
      </div>
319
    </td>
320
  </tr>
321
  <tr><td class="listheading" colspan="4">[% LxERP.t8("SEPA") %]</td></tr>
322
  <tr>
323
   <td align="right">[% LxERP.t8('Add Customer/Vendor Number as a reference add-on for SEPA export.') %]</td>
324
   <td>[% L.yes_no_tag('defaults.sepa_reference_add_vc_vc_id', SELF.defaults.sepa_reference_add_vc_vc_id) %]</td>
325
  </tr>
326
  <tr>
327
   <td align="right">[% LxERP.t8('Set the invoice duedate as the default execution date for SEPA export.') %]</td>
328
   <td>[% L.yes_no_tag('defaults.sepa_set_duedate_as_default_exec_date', SELF.defaults.sepa_set_duedate_as_default_exec_date) %]</td>
329
  </tr>
330
  <tr>
331
   <td align="right">[% LxERP.t8('Set the invoice skonto date (if exists) as the default execution date for SEPA export.') %]</td>
332
   <td>[% L.yes_no_tag('defaults.sepa_set_skonto_date_as_default_exec_date', SELF.defaults.sepa_set_skonto_date_as_default_exec_date) %]</td>
333
  </tr>
334
  <tr>
335
   <td align="right">[% LxERP.t8('In addition to the above date functions, subtract the following amount of days from the calculated date as a buffer.') %]</td>
336
   <td>[% L.input_tag('defaults.sepa_set_skonto_date_buffer_in_days', LxERP.format_amount(SELF.defaults.sepa_set_skonto_date_buffer_in_days, 0), style=style) %]</td>
337
  </tr>
338
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Experimental Features") %]</td></tr>
339
  <tr>
340
   <td align="right">[% LxERP.t8('new order controller') %]</td>
341
   <td>[% L.yes_no_tag('defaults.feature_experimental_order', SELF.defaults.feature_experimental_order) %]</td>
342
  </tr>
343
  <tr>
344
   <td align="right">[% LxERP.t8('Assortment') %]</td>
345
   <td>[% L.yes_no_tag('defaults.feature_experimental_assortment', SELF.defaults.feature_experimental_assortment) %]</td>
346
  </tr>
347

  
348
 <tr><td class="listheading" colspan="4">[% LxERP.t8("Shipped Quantity Algorithm") %]</td></tr>
349
 <tr>
350
  <td align="right">[% LxERP.t8('Require stock out to consider a delivery order position delivered?') %]</td>
351
  <td>[% L.yes_no_tag('defaults.shipped_qty_require_stock_out', SELF.defaults.shipped_qty_require_stock_out) %]</td>
352
  <td>[% LxERP.t8('If yes, delivery order positions are considered "delivered" only if they have been stocked out of the inventory. Otherwise saving the delivery order is considered delivered.') %]</td>
353
 </tr>
354
 <tr>
355
  <td align="right">[% LxERP.t8('Use fill up when calculating shipped quantities?') %]</td>
356
  <td>[% L.yes_no_tag('defaults.shipped_qty_fill_up', SELF.defaults.shipped_qty_fill_up) %]</td>
357
  <td>[% LxERP.t8('Linked positions will always be reconciled first. If this is set to yes, unlinked positions will be reconciled in a second step. This is necessary in very old databases (with open delivery orders from before 3.4.0) and in businesses where delivery orders are frequently amended. Usually the direct links are faster and more accurate. Defaults to true for historical reasons only.') %]</td>
358
 </tr>
359
 <tr>
360
  <td align="right">[% LxERP.t8('Position identity fields for fill up?') %]</td>
361
  <td>
362
    [% L.select_tag("defaults.shipped_qty_item_identity_fields[]", SELF.available_shipped_qty_item_identity_fields, id="defaults_shipped_qty_item_identity_fields", multiple=1, default=SELF.defaults.shipped_qty_item_identity_fields) %]
363
    [% L.multiselect2side("defaults_shipped_qty_item_identity_fields", labelsx=LxERP.t8("Available identity fields"), labeldx=LxERP.t8("Selected identity fields")) %]</td>
364
  <td>[% LxERP.t8('Only applies if the previous is set to true. When filling up unlinked positions, consider them matches if ALL of these fields match. For example, in a business with variants that are defined by a special description, description needs to be part of the identity. If delivering several similar order positions by delivery date is common, reqdate should be included in the identity. Serialnumber is useful when the serialnumber in the order and delivery order has to match.') %]</td>
365
 </tr>
366

  
367
 <tr><td class="listheading" colspan="4">[% 'Displayable Name Preferences' | $T8 %]</td></tr>
347
      </td>
348
    </tr>
349
    <tr>
350
      <th class="caption" colspan="3">[% LxERP.t8("Enabled Quick Searched") %]</th>
351
    </tr>
352
    <tr>
353
      <th>[% 'Quick Searches that will be shown in the header in this client' | $T8 %]</th>
354
      <td colspan="2">
355
      <div>
356
        [% L.select_tag("defaults.quick_search_modules[]", SELF.available_quick_search_modules, value_key="name", title_key="description_config", id="defaults_quick_searches", multiple=1, default=SELF.defaults.quick_search_modules) %] [% L.multiselect2side("defaults_quick_searches", labelsx=LxERP.t8("All modules"), labeldx=LxERP.t8("Enabled modules")) %]
357
      </div>
358
      </td>
359
    </tr>
360
    <tr>
361
      <th class="caption" colspan="3">[% LxERP.t8("Shipped Quantity Algorithm") %]</th>
362
    </tr>
363
    <tr>
364
      <th>[% LxERP.t8('Require stock out to consider a delivery order position delivered?') %]</th>
365
      <td colspan="2">[% L.yes_no_tag('defaults.shipped_qty_require_stock_out', SELF.defaults.shipped_qty_require_stock_out) %]<div class="description wi-verywide">
366
[% LxERP.t8('If yes, delivery order positions are considered "delivered" only if they have been stocked out of the inventory. Otherwise saving the delivery order is considered delivered.') %]
367
</div></td>
368
    </tr>
369
    <tr>
370
      <th>[% LxERP.t8('Use fill up when calculating shipped quantities?') %]</th>
371
      <td colspan="2">[% L.yes_no_tag('defaults.shipped_qty_fill_up', SELF.defaults.shipped_qty_fill_up) %]<div class="description wi-verywide">
372
[% LxERP.t8('Linked positions will always be reconciled first. If this is set to yes, unlinked positions will be reconciled in a second step. This is necessary in very old databases (with open delivery orders from before 3.4.0) and in businesses where delivery orders are frequently amended. Usually the direct links are faster and more accurate. Defaults to true for historical reasons only.') %]
373
</div></td>
374
    </tr>
375
    <tr>
376
      <th>[% LxERP.t8('Position identity fields for fill up?') %]</th>
377
      <td colspan="2"> [% L.select_tag("defaults.shipped_qty_item_identity_fields[]", SELF.available_shipped_qty_item_identity_fields, id="defaults_shipped_qty_item_identity_fields", multiple=1, default=SELF.defaults.shipped_qty_item_identity_fields) %] [% L.multiselect2side("defaults_shipped_qty_item_identity_fields", labelsx=LxERP.t8("Available identity fields"), labeldx=LxERP.t8("Selected identity fields")) %]<div class="description wi-verywide">
378
[% LxERP.t8('Only applies if the previous is set to true. When filling up unlinked positions, consider them matches if ALL of these fields match. For example, in a business with variants that are defined by a special description, description needs to be part of the identity. If delivering several similar order positions by delivery date is common, reqdate should be included in the identity. Serialnumber is useful when the serialnumber in the order and delivery order has to match.') %]
379
</div></td>
380
      <!-- <td class="longdesc"></td> -->
381
    </tr>
382

  
383
 <th colspan="4">[% 'Displayable Name Preferences' | $T8 %]</th>
368 384
 [% FOREACH module=SELF.displayable_name_specs_by_module.keys.sort %]
369 385
 [%- SET spec=SELF.displayable_name_specs_by_module.$module -%]
370 386
  <tr>
......
398 414
  </tr>
399 415
  [% END %]
400 416

  
401

  
417
  </tbody>
402 418
</table>
403
</div>
419
</div><!-- /.wrapper -->
420

  
421
</div><!-- /#features -->
422

  

Auch abrufbar als: Unified diff