Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision a85900cb

Von Hans Peter Schlaepfer vor etwa 6 Jahren hinzugefügt

  • ID a85900cb68a578d89090043534ae79664a4070a9
  • Vorgänger 72c4037d
  • Nachfolger e7c11f83

Preview design 4.0

Unterschiede anzeigen:

templates/webpages/client_config/_features.html
1 1
[%- USE LxERP -%][%- USE L -%][%- USE P -%][%- USE T8 %]
2 2
[% SET style="width: 250px" %]
3 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>
14

  
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>
20

  
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') ],[ 'ExtDMS', LxERP.t8('ext.DMS') ],[ 'DB', LxERP.t8('Database') ]  ],
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') ],[ 'ExtDMS', LxERP.t8('ext.DMS') ],[ 'DB', LxERP.t8('Database') ]  ],
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') ],[ 'ExtDMS', LxERP.t8('ext.DMS') ],[ 'DB', LxERP.t8('Database') ]  ],
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('Delete printfiles') %]</td>
63
   <td>[% L.yes_no_tag('defaults.doc_delete_printfiles', SELF.defaults.doc_delete_printfiles) %]</td>
64
   <td>[% LxERP.t8('Allow to delete generated printfiles') %]</td>
65
  </tr>
66
  <tr>
67
   <td align="right">[% LxERP.t8('max filesize') %]</td>
68
   <td>[% L.input_tag('doc_max_filesize_MB','', size=10, onchange="verifyMBSize(this);") %]
69
       [% L.hidden_tag('defaults.doc_max_filesize',SELF.defaults.doc_max_filesize) %] MB</td>
70
   <td>[% LxERP.t8('The maximum of uploadable filesize in Megabyte') %]</td>
71
  </tr>
72
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Storage Backends") %]</td></tr>
73
  <tr>
74
   <td align="right">[% LxERP.t8('Files') %]</td>
75
   <td>[% L.yes_no_tag('defaults.doc_files', SELF.defaults.doc_files) %]</td>
76
   <td>[% LxERP.t8('Use File Storage backend') %]</td>
77
  </tr>
78
  <tr>
79
   <td align="right">[% LxERP.t8('WebDAV') %]</td>
80
   <td>[% L.yes_no_tag('defaults.doc_webdav', SELF.defaults.doc_webdav) %]</td>
81
   <td>[% LxERP.t8('Use WebDAV Storage backend') %]</td>
82
  </tr>
83
  <tr>
84
   <td align="right">[% LxERP.t8('Database') %]</td>
85
   <td>[% L.yes_no_tag('defaults.doc_database', SELF.defaults.doc_database, disabled=1) %]</td>
86
   <td>[% LxERP.t8('Use Database Storage backend (not implemented yet!)') %]</td>
87
  </tr>
88

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

  
91
  <tr>
92
   <td align="right">[% LxERP.t8('Balance') %]</td>
93
   <td>[% L.yes_no_tag('defaults.feature_balance', SELF.defaults.feature_balance) %]</td>
94
   <td>[% LxERP.t8('Use Balance Sheet') %]</td>
95
  </tr>
96
  <tr>
97
   <td align="right">[% LxERP.t8('income') %]</td>
98
   <td>[% L.yes_no_tag('defaults.feature_eurechnung', SELF.defaults.feature_eurechnung) %]</td>
99
   <td>[% LxERP.t8('Use Income') %]</td>
100
  </tr>
101
  <tr>
102
   <td align="right">[% LxERP.t8('Erfolgsrechnung') %]</td>
103
   <td>[% L.yes_no_tag('defaults.feature_erfolgsrechnung', SELF.defaults.feature_erfolgsrechnung) %]</td>
104
   <td>[% LxERP.t8('Use Erfolgsrechnung') %]</td>
105
  </tr>
106

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

  
109
  <tr>
110
   <td align="right">[% LxERP.t8('Representative') %]</td>
111
   <td>[% L.yes_no_tag('defaults.vertreter', SELF.defaults.vertreter) %]</td>
112
   <td>[% LxERP.t8('Representative for Customer') %]</td>
113
  </tr>
114
 <tr>
115
   <td align="right">[% LxERP.t8('Normalize Customer / Vendor names') %]</td>
116
   <td>   [% L.yes_no_tag('defaults.normalize_vc_names', SELF.defaults.normalize_vc_names) %]</td>
117
   <td>[% LxERP.t8('Automatic deletion of leading, trailing and excessive (repetitive) spaces in customer or vendor names') %]</td>
118
  </tr>
119

  
120
  <tr>
121
   <td align="right">[% LxERP.t8('Hourly Rate') %]</td>
122
   <td>[% L.input_tag('defaults.customer_hourly_rate', LxERP.format_amount(SELF.defaults.customer_hourly_rate, 2), style=style) %]</td>
123
   <td>[% LxERP.t8('Default hourly rate for new customers') %]</td>
124
  </tr>
125

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

  
128
  <tr>
129
   <td align="right">[% LxERP.t8('Pictures for parts') %]</td>
130
   <td>[% L.yes_no_tag('defaults.parts_show_image', SELF.defaults.parts_show_image) %]</td>
131
   <td>[% LxERP.t8('Show the picture in the part form') %]</td>
132
  </tr>
133
  <tr>
134
   <td align="right">[% LxERP.t8('Pictures for search parts') %]</td>
135
   <td>[% L.yes_no_tag('defaults.parts_listing_image', SELF.defaults.parts_listing_image) %]</td>
136
   <td>[% LxERP.t8('Show the pictures in the result for search parts') %]</td>
137
  </tr>
138
  <tr>
139
   <td align="right">[% LxERP.t8('CSS style for pictures') %]</td>
140
   <td>   [% L.input_tag('defaults.parts_image_css',SELF.defaults.parts_image_css, style=style) %]</td>
141
   <td>[% LxERP.t8('Style the picture with the following CSS code') %]</td>
142
  </tr>
143
  <tr>
144
    <td align="right">[% LxERP.t8('If item not found, allow creation of new item') %]</td>
145
    <td>[% L.yes_no_tag('defaults.create_part_if_not_found', SELF.defaults.create_part_if_not_found) %]</td>
146
    <td>[% LxERP.t8('If searching a part from a document and no part is found then offer to create a new part.') %]</td>
147
  </tr>
148
 <tr>
149
   <td align="right">[% LxERP.t8('Normalize part description and part notes') %]</td>
150
   <td>   [% L.yes_no_tag('defaults.normalize_part_descriptions', SELF.defaults.normalize_part_descriptions) %]</td>
151
   <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>
152
  </tr>
153
</tr>
154

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

  
157
  <tr>
158
   <td align="right">[% LxERP.t8('Require a transaction description in purchase and sales records') %]</td>
159
   <td>[% L.yes_no_tag('defaults.require_transaction_description_ps', SELF.defaults.require_transaction_description_ps) %]</td>
160
   <td>[% LxERP.t8('If enabled purchase and sales records cannot be saved if no transaction description has been entered.') %]</td>
161
  </tr>
162

  
163
  <tr>
164
   <td align="right">[% LxERP.t8("Only list customer's projects in sales records") %]</td>
165
   <td>[% L.yes_no_tag("defaults.customer_projects_only_in_sales", SELF.defaults.customer_projects_only_in_sales) %]</td>
166
   <td>[% LxERP.t8("If enabled only those projects that are assigned to the currently selected customer are offered for selection in sales records.") %]</td>
167
  </tr>
168

  
169
  <tr>
170
   <td align="right">[% LxERP.t8('Allow conversion from sales quotations to sales invoices') %]</td>
171
   <td>[% L.yes_no_tag('defaults.allow_sales_invoice_from_sales_quotation', SELF.defaults.allow_sales_invoice_from_sales_quotation) %]</td>
172
   <td>[% LxERP.t8('If disabled sales quotations cannot be converted into sales invoices directly.') %]</td>
173
  </tr>
174

  
175
  <tr>
176
   <td align="right">[% LxERP.t8('Allow conversion from sales orders to sales invoices') %]</td>
177
   <td>[% L.yes_no_tag('defaults.allow_sales_invoice_from_sales_order', SELF.defaults.allow_sales_invoice_from_sales_order) %]</td>
178
   <td>[% LxERP.t8('If disabled sales orders cannot be converted into sales invoices directly.') %]</td>
179
  </tr>
180

  
181
  <tr>
182
   <td align="right">[% LxERP.t8('Allow direct creation of new purchase delivery orders') %]</td>
183
   <td>[% L.yes_no_tag('defaults.allow_new_purchase_delivery_order', SELF.defaults.allow_new_purchase_delivery_order) %]</td>
184
   <td>[% LxERP.t8('If disabled purchase delivery orders can only be created by conversion from existing requests for quotations and purchase orders.') %]</td>
185
  </tr>
186

  
187
  <tr>
188
   <td align="right">[% LxERP.t8('Allow direct creation of new purchase invoices') %]</td>
189
   <td>[% L.yes_no_tag('defaults.allow_new_purchase_invoice', SELF.defaults.allow_new_purchase_invoice) %]</td>
190
   <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>
191
  </tr>
192

  
193
  <tr>
194
   <td align="right">[% LxERP.t8("Show »not delivered qty/value« column in sales and purchase orders") %]</td>
195
   <td>[% L.yes_no_tag("defaults.sales_purchase_order_ship_missing_column", SELF.defaults.sales_purchase_order_ship_missing_column) %]</td>
196
   <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>
197
  </tr>
198

  
199
  <tr>
200
   <td align="right">[% LxERP.t8("Warn before saving orders with duplicate parts (new controller only)") %]</td>
201
   <td>[% L.yes_no_tag("defaults.order_warn_duplicate_parts", SELF.defaults.order_warn_duplicate_parts) %]</td>
202
   <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>
203
  </tr>
204

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

  
207
  <tr>
208
   <td align="right">[% LxERP.t8('Global Record BCC') %]</td>
209
   <td>
210
     [% L.input_tag('defaults.global_bcc', SELF.defaults.global_bcc, style=style) %]
211
   </td>
212
   <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>
213
  </tr>
214

  
215
  <tr>
216
   <td align="right">[% LxERP.t8('Send a BCC to logged in user?') %]</td>
217
   <td>
218
     [% L.yes_no_tag('defaults.bcc_to_login', SELF.defaults.bcc_to_login) %]
219
   </td>
220
   <td>
221
     [% LxERP.t8('Send a blind copy of all outgoing emails to current user\'s email address?') %]
222
   </td>
223
 </tr>
224

  
225
  <tr>
226
   <td align="right">[% LxERP.t8('Email journal') %]</td>
227
   <td>
228
     [% 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) %]
229
   </td>
230
   <td>[% 'Sent emails can be optionally stored in the database with or without their attachments.' | $T8 %]</td>
231
  </tr>
232

  
233
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Requirement Specs") %]</td></tr>
234

  
235
  <tr>
236
   <td align="right">[% LxERP.t8('Default article for converting into quotations and orders') %]</td>
237
   <td>
238
    [% IF SELF.h_unit_name %]
239
     [% 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) %]
240
    [% ELSE %]
241
     [% LxERP.t8("Error: this feature requires that articles with a time-based unit (e.g. 'h' or 'min') exist.") %]
242
    [% END %]
243
   </td>
244
   <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>
245
  </tr>
246
  <tr><td class="listheading" colspan="4">[% LxERP.t8('Transport and service costs reminder') %]</td></tr>
247
 <tr>
248
  <td align="right">[% LxERP.t8('Default transport article number') %]</td>
249
  <td>[% L.part_picker('defaults.transport_cost_reminder_article_number_id', SELF.defaults.transport_cost_reminder_article_number_id, style=style) %]</td>
250
   <td>[% LxERP.t8('Before saving a sales order, this article will be checked and a warning is generated.') %]</td>
251
 </tr>
252

  
253
 <tr><td class="listheading" colspan="4">[% LxERP.t8("Disabled Price Sources") %]</td></tr>
254
 <tr>
255
   <td align="right">[% 'Price Sources to be disabled in this client' | $T8 %]</td>
256
   <td colspan=2>
257
     <div class="clearfix">
258
      [% L.select_tag("defaults.disabled_price_sources[]", SELF.all_price_sources, id="defaults_price_sources", multiple=1, default=SELF.defaults.disabled_price_sources) %]
259
      [% L.multiselect2side("defaults_price_sources", labelsx=LxERP.t8("All price sources"), labeldx=LxERP.t8("Price sources deactivated in this client")) %]
260
     </div>
261
   </td>
262
 </tr>
263

  
264
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Projects") %]</td></tr>
265
  <tr>
266
   <td align="right">[% LxERP.t8('Always save orders with a projectnumber (create new projects)') %]</td>
267
   <td>[% L.yes_no_tag('defaults.order_always_project', SELF.defaults.order_always_project) %]</td>
268
  </tr>
269
  <tr>
270
   <td align="right">[% LxERP.t8('Project type') %]</td>
271
   <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>
272
  </tr>
273
   <td align="right">[% LxERP.t8('Project Status') %]</td>
274
   <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>
275
  </tr>
276
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Select Mulit-Item Options") %]</td></tr>
277
  <tr>
278
   <td align="right">[% LxERP.t8('Show parts longdescription (notes) in select list') %]</td>
279
   <td>[% L.yes_no_tag('defaults.show_longdescription_select_item', SELF.defaults.show_longdescription_select_item) %]</td>
280
  </tr>
281

  
282
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Enabled Quick Searched") %]</td></tr>
283
  <tr>
284
    <td align="right">[% 'Quick Searches that will be shown in the header in this client' | $T8 %]</td>
285
    <td colspan=2>
286
      <div class="clearfix">
287
       [% 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) %]
288
       [% L.multiselect2side("defaults_quick_searches", labelsx=LxERP.t8("All modules"), labeldx=LxERP.t8("Enabled modules")) %]
289
      </div>
290
    </td>
291
  </tr>
292
  <tr><td class="listheading" colspan="4">[% LxERP.t8("SEPA") %]</td></tr>
293
  <tr>
294
   <td align="right">[% LxERP.t8('Add Customer/Vendor Number as a reference add-on for SEPA export.') %]</td>
295
   <td>[% L.yes_no_tag('defaults.sepa_reference_add_vc_vc_id', SELF.defaults.sepa_reference_add_vc_vc_id) %]</td>
296
  </tr>
4
	<div class="cols">
5
		<table class="tbl-horizontal col" style="margin-right:4.0em;">
6
			<caption>[% LxERP.t8("DATEV & UStVA") %]</caption>
7
			<colgroup> <col class="wi-mediumsmall"><col class="wi-small"><col class="wi-mediumsmall"> </colgroup> 
8
			<tbody>
9
				<tr>
10
					<th>[% LxERP.t8('Datevautomatik') %]</th>
11
					<td>[% L.yes_no_tag('defaults.feature_datev', SELF.defaults.feature_datev) %]</td>
12
					<td class="long-desc">[% LxERP.t8('Use Datevautomatik') %]</td>
13
				</tr>
14
				<tr>
15
					<th>[% LxERP.t8('UStVA') %]</th>
16
					<td>[% L.yes_no_tag('defaults.feature_ustva', SELF.defaults.feature_ustva) %]</td>
17
					<td class="long-desc">[% LxERP.t8('Use UStVA') %]</td>
18
				</tr>
19
				<tr>
20
					<th class="caption" colspan="3">[% LxERP.t8("File Management") %]</th>
21
				</tr>
22
				<tr>
23
					<th>[% LxERP.t8('WebDAV') %]</th>
24
					<td>[% L.yes_no_tag('defaults.webdav', SELF.defaults.webdav) %]</td>
25
					<td class="long-desc">[% LxERP.t8('Use WebDAV Repository') %]</td>
26
				</tr>
27
				<tr>
28
					<th>[% LxERP.t8('WebDAV save documents') %]</th>
29
					<td>[% L.yes_no_tag('defaults.webdav_documents', SELF.defaults.webdav_documents) %]</td>
30
					<td class="long-desc">[% LxERP.t8('Save document in WebDAV repository') %]</td>
31
				</tr>
32
				<tr>
33
					<th>[% LxERP.t8('Filemanagement') %]</th>
34
					<td>[% L.yes_no_tag('defaults.doc_storage', SELF.defaults.doc_storage) %]</td>
35
					<td class="long-desc">[% LxERP.t8('Use Filemanagement') %]</td>
36
				</tr>
37
				<tr>
38
					<th>[% LxERP.t8('Storage Type for generated/imported PDF Documents') %]</th>
39
					<td>[% L.select_tag('defaults.doc_storage_for_documents', [ [ 'None', LxERP.t8('None') ],[ 'Filesystem', LxERP.t8('Files') ],[ 'Webdav', LxERP.t8('WebDAV') ],[ 'ExtDMS', LxERP.t8('ext.DMS') ],[ 'DB', LxERP.t8('Database') ] ], default = SELF.defaults.doc_storage_for_documents, onchange="return checkavailable_filebackend(this);") %]</td>
40
					<td class="long-desc">[% LxERP.t8('Use this storage backend for all generated PDF-Files') %]</td>
41
				</tr>
42
				<tr>
43
					<th>[% LxERP.t8('Storage Type for Attachments') %]</th>
44
					<td>[% L.select_tag('defaults.doc_storage_for_attachments', [ [ 'None', LxERP.t8('None') ], [ 'Filesystem', LxERP.t8('Files') ],[ 'Webdav', LxERP.t8('WebDAV') ],[ 'ExtDMS', LxERP.t8('ext.DMS') ],[ 'DB', LxERP.t8('Database') ] ], default = SELF.defaults.doc_storage_for_attachments, onchange="return checkavailable_filebackend(this);") %]</td>
45
					<td class="long-desc">[% LxERP.t8('Use this storage backend for all uploaded attachments') %]</td>
46
				</tr>
47
				<tr>
48
					<th>[% LxERP.t8('Storage Type for images') %]</th>
49
					<td>[% L.select_tag('defaults.doc_storage_for_images', [ [ 'None', LxERP.t8('None') ], [ 'Filesystem', LxERP.t8('Files') ],[ 'Webdav', LxERP.t8('WebDAV') ],[ 'ExtDMS', LxERP.t8('ext.DMS') ],[ 'DB', LxERP.t8('Database') ] ], default = SELF.defaults.doc_storage_for_images, onchange="return checkavailable_filebackend(this);") %]</td>
50
					<td class="long-desc">[% LxERP.t8('Use this storage backend for uploaded images') %]</td>
51
				</tr>
52
				<tr>
53
					<th>[% LxERP.t8('Delete printfiles') %]</th>
54
					<td>[% L.yes_no_tag('defaults.doc_delete_printfiles', SELF.defaults.doc_delete_printfiles) %]</td>
55
					<td class="long-desc">[% LxERP.t8('Allow to delete generated printfiles') %]</td>
56
				</tr>
57
				<tr>
58
					<th>[% LxERP.t8('max filesize') %]</th>
59
					<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>
60
					<td class="long-desc">[% LxERP.t8('The maximum of uploadable filesize in Megabyte') %]</td>
61
				</tr>
62
				<tr>
63
					<th class="caption" colspan="3">[% LxERP.t8("Storage Backends") %]</th>
64
				</tr>
65
				<tr>
66
					<th>[% LxERP.t8('Files') %]</th>
67
					<td>[% L.yes_no_tag('defaults.doc_files', SELF.defaults.doc_files) %]</td>
68
					<td class="long-desc">[% LxERP.t8('Use File Storage backend') %]</td>
69
				</tr>
70
				<tr>
71
					<th>[% LxERP.t8('WebDAV') %]</th>
72
					<td>[% L.yes_no_tag('defaults.doc_webdav', SELF.defaults.doc_webdav) %]</td>
73
					<td class="long-desc">[% LxERP.t8('Use WebDAV Storage backend') %]</td>
74
				</tr>
75
				<tr>
76
					<th>[% LxERP.t8('Database') %]</th>
77
					<td>[% L.yes_no_tag('defaults.doc_database', SELF.defaults.doc_database, disabled=1) %]</td>
78
					<td class="long-desc">[% LxERP.t8('Use Database Storage backend (not implemented yet!)') %]</td>
79
				</tr>
80
				<tr>
81
					<th class="caption" colspan="3"> [% LxERP.t8("Reports") %] </th>
82
				</tr>
83
				<tr>
84
					<th>[% LxERP.t8('Balance') %]</th>
85
					<td>[% L.yes_no_tag('defaults.feature_balance', SELF.defaults.feature_balance) %]</td>
86
					<td class="long-desc">[% LxERP.t8('Use Balance Sheet') %]</td>
87
				</tr>
88
				<tr>
89
					<th>[% LxERP.t8('income') %]</th>
90
					<td>[% L.yes_no_tag('defaults.feature_eurechnung', SELF.defaults.feature_eurechnung) %]</td>
91
					<td class="long-desc">[% LxERP.t8('Use Income') %]</td>
92
				</tr>
93
				<tr>
94
					<th>[% LxERP.t8('Erfolgsrechnung') %]</th>
95
					<td>[% L.yes_no_tag('defaults.feature_erfolgsrechnung', SELF.defaults.feature_erfolgsrechnung) %]</td>
96
					<td class="long-desc">[% LxERP.t8('Use Erfolgsrechnung') %]</td>
97
				</tr>
98
				<tr>
99
					<th class="caption" colspan="3"> [% 'E-mail' | $T8 %] </th>
100
				</tr>
101
				<tr>
102
					<th>[% LxERP.t8('Global Record BCC') %]</th>
103
					<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>
104
					
105
				</tr>
106
				<tr>
107
					<th>[% LxERP.t8('Send a BCC to logged in user?') %]</th>
108
					<td> [% L.yes_no_tag('defaults.bcc_to_login', SELF.defaults.bcc_to_login) %] </td>
109
					<td class="long-desc"> [% LxERP.t8('Send a blind copy of all outgoing emails to current user\'s email address?') %] </td>
110
				</tr>
111
				<tr>
112
					<th>[% LxERP.t8('Email journal') %]</th>
113
					<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>
114
					
115
				</tr>
116
				<tr>
117
					<th class="caption" colspan="3">[% LxERP.t8("SEPA") %]</th>
118
				</tr>
119
				<tr>
120
					<th>[% 'Add Customer/Vendor Number' | $T8 %]</th>
121
					<td>[% L.yes_no_tag('defaults.sepa_reference_add_vc_vc_id', SELF.defaults.sepa_reference_add_vc_vc_id) %]</td>
122
					<td class="long-desc">[% LxERP.t8('Add Customer/Vendor Number as a reference add-on for SEPA export.') %]</td>
123
				</tr>
124
				<tr>
125
					<th class="caption" colspan="3">[% LxERP.t8("Experimental Features") %]</th>
126
				</tr>
127
				<tr>
128
					<th>[% LxERP.t8('Enable experimental features') %]</th>
129
					<td>[% L.yes_no_tag('defaults.feature_experimental', SELF.defaults.feature_experimental) %]</td>
130
					<td class="long-desc">[% LxERP.t8('Experimental features are:') %] [% LxERP.t8('new order controller') %], [% LxERP.t8('Assortment') %]</td>
131
				</tr>
132
			</tbody>
133
		</table>
134
		<table class="tbl-horizontal col">
135
			<caption>[% 'Customer Master Data' | $T8 %]</caption>
136
			<colgroup> <col class="wi-mediumsmall"><col class="wi-small"><col class="wi-wide"> </colgroup> 
137
			<tbody>
138
				<tr>
139
					<th>[% LxERP.t8('Representative') %]</th>
140
					<td>[% L.yes_no_tag('defaults.vertreter', SELF.defaults.vertreter) %]</td>
141
					<td class="long-desc">[% LxERP.t8('Representative for Customer') %]</td>
142
				</tr>
143
				<tr>
144
					<th>[% LxERP.t8('Normalize Customer / Vendor names') %]</th>
145
					<td> [% L.yes_no_tag('defaults.normalize_vc_names', SELF.defaults.normalize_vc_names) %]</td>
146
					<td class="long-desc">[% LxERP.t8('Automatic deletion of leading, trailing and excessive (repetitive) spaces in customer or vendor names') %]</td>
147
				</tr>
148
				<tr>
149
					<th>[% LxERP.t8('Hourly Rate') %]</th>
150
					<td>[% L.input_tag('defaults.customer_hourly_rate', LxERP.format_amount(SELF.defaults.customer_hourly_rate, 2), class='wi-small') %]</td>
151
					<td class="long-desc">[% LxERP.t8('Default hourly rate for new customers') %]</td>
152
				</tr>
153
				<tr>
154
					<th class="caption" colspan="3">[% LxERP.t8("Parts Master Data") %]</th>
155
				</tr>
156
				<tr>
157
					<th>[% LxERP.t8('Pictures for parts') %]</th>
158
					<td>[% L.yes_no_tag('defaults.parts_show_image', SELF.defaults.parts_show_image) %]</td>
159
					<td class="long-desc">[% LxERP.t8('Show the picture in the part form') %]</td>
160
				</tr>
161
				<tr>
162
					<th>[% LxERP.t8('Pictures for search parts') %]</th>
163
					<td>[% L.yes_no_tag('defaults.parts_listing_image', SELF.defaults.parts_listing_image) %]</td>
164
					<td class="long-desc">[% LxERP.t8('Show the pictures in the result for search parts') %]</td>
165
				</tr>
166
				<tr>
167
					<th>[% LxERP.t8('CSS style for pictures') %]</th>
168
					<td> [% L.input_tag('defaults.parts_image_css',SELF.defaults.parts_image_css, class='wi-mediumsmall') %]</td>
169
					<td class="long-desc">[% LxERP.t8('Style the picture with the following CSS code') %]</td>
170
				</tr>
171
				<tr>
172
					<th>[% LxERP.t8('If item not found, allow creation of new item') %]</th>
173
					<td>[% L.yes_no_tag('defaults.create_part_if_not_found', SELF.defaults.create_part_if_not_found) %]</td>
174
					<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>
175
				</tr>
176
				<tr>
177
					<th>[% LxERP.t8('Normalize part description and part notes') %]</th>
178
					<td> [% L.yes_no_tag('defaults.normalize_part_descriptions', SELF.defaults.normalize_part_descriptions) %]</td>
179
					<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>
180
				</tr>
181
				</tr>
182
				<tr>
183
					<th class="caption" colspan="3">[% LxERP.t8("Purchasing & Sales") %]</th>
184
				</tr>
185
				<tr>
186
					<th>[% LxERP.t8('Require a transaction description in purchase and sales records') %]</th>
187
					<td>[% L.yes_no_tag('defaults.require_transaction_description_ps', SELF.defaults.require_transaction_description_ps) %]</td>
188
					<td class="long-desc">[% LxERP.t8('If enabled purchase and sales records cannot be saved if no transaction description has been entered.') %]</td>
189
				</tr>
190
				<tr>
191
					<th>[% LxERP.t8("Only list customer's projects in sales records") %]</th>
192
					<td>[% L.yes_no_tag("defaults.customer_projects_only_in_sales", SELF.defaults.customer_projects_only_in_sales) %]</td>
193
					<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>
194
				</tr>
195
				<tr>
196
					<th>[% LxERP.t8('Allow conversion from sales quotations to sales invoices') %]</th>
197
					<td>[% L.yes_no_tag('defaults.allow_sales_invoice_from_sales_quotation', SELF.defaults.allow_sales_invoice_from_sales_quotation) %]</td>
198
					<td class="long-desc">[% LxERP.t8('If disabled sales quotations cannot be converted into sales invoices directly.') %]</td>
199
				</tr>
200
				<tr>
201
					<th>[% LxERP.t8('Allow conversion from sales orders to sales invoices') %]</th>
202
					<td>[% L.yes_no_tag('defaults.allow_sales_invoice_from_sales_order', SELF.defaults.allow_sales_invoice_from_sales_order) %]</td>
203
					<td class="long-desc">[% LxERP.t8('If disabled sales orders cannot be converted into sales invoices directly.') %]</td>
204
				</tr>
205
				<tr>
206
					<th>[% LxERP.t8('Allow direct creation of new purchase delivery orders') %]</th>
207
					<td>[% L.yes_no_tag('defaults.allow_new_purchase_delivery_order', SELF.defaults.allow_new_purchase_delivery_order) %]</td>
208
					<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>
209
				</tr>
210
				<tr>
211
					<th>[% LxERP.t8('Allow direct creation of new purchase invoices') %]</th>
212
					<td>[% L.yes_no_tag('defaults.allow_new_purchase_invoice', SELF.defaults.allow_new_purchase_invoice) %]</td>
213
					<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>
214
				</tr>
215
				<tr>
216
					<th>[% LxERP.t8("Show »not delivered qty/value« column in sales and purchase orders") %]</th>
217
					<td>[% L.yes_no_tag("defaults.sales_purchase_order_ship_missing_column", SELF.defaults.sales_purchase_order_ship_missing_column) %]</td>
218
					<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>
219
				</tr>
220
				<tr>
221
					<th>[% LxERP.t8("Warn before saving orders with duplicate parts (new controller only)") %]</th>
222
					<td>[% L.yes_no_tag("defaults.order_warn_duplicate_parts", SELF.defaults.order_warn_duplicate_parts) %]</td>
223
					<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>
224
				</tr>
225
				<tr>
226
					<th class="caption" colspan="3">[% LxERP.t8('Transport and service costs reminder') %]</th>
227
				</tr>
228
				<tr>
229
					<th>[% LxERP.t8('Default transport article number') %]</th>
230
					<td>[% L.part_picker('defaults.transport_cost_reminder_article_number_id', SELF.defaults.transport_cost_reminder_article_number_id, class='wi-mediumsmall') %]</td>
231
					<td class="long-desc">[% LxERP.t8('Before saving a sales order, this article will be checked and a warning is generated.') %]</td>
232
				</tr>
233
				<tr>
234
					<th class="caption" colspan="3">[% LxERP.t8("Requirement Specs") %]</th>
235
				</tr>
236
				<tr>
237
					<th>[% LxERP.t8('Default article for converting into quotations and orders') %]</th>
238
					<td> [% IF SELF.h_unit_name %] [% 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') %] [% ELSE %] [% LxERP.t8("Error: this feature requires that articles with a time-based unit (e.g. 'h' or 'min') exist.") %] [% END %] </td>
239
					<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>
240
				</tr>
241
				<tr>
242
					<th class="caption" colspan="3">[% LxERP.t8("Projects") %]</th>
243
				</tr>
244
				<tr>
245
					<th>[% 'Orders with projectnumber' | $T8 %]</th>
246
					<td>[% L.yes_no_tag('defaults.order_always_project', SELF.defaults.order_always_project) %]</td>
247
					<td class="long-desc">[% LxERP.t8('Always save orders with a projectnumber (create new projects)') %]</td>
248
				</tr>
249
				<tr>
250
					<th>[% LxERP.t8('Project type') %]</th>
251
					<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>
252
					<td class="long-desc"></td>
253
				</tr>
254
				<th>[% LxERP.t8('Project Status') %]</th>
255
				<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>
256
				<td class="long-desc"></td>
257
				</tr>
258
				<tr>
259
					<th class="caption" colspan="3">[% LxERP.t8("Select Mulit-Item Options") %]</th>
260
				</tr>
261
				<tr>
262
					<th>[% 'Long description' | $T8 %]</th>
263
					<td>[% L.yes_no_tag('defaults.show_longdescription_select_item', SELF.defaults.show_longdescription_select_item) %]</td>
264
					<td class="long-desc">[% LxERP.t8('Show parts longdescription (notes) in select list') %]</td>
265
				</tr>
266
			</tbody>
267
		</table>
268
	</div>
269
	<div class="cols">
270
		<table class="tbl-horizontal col">
271
			<caption>[% LxERP.t8("Disabled Price Sources") %]</caption>
272
			<colgroup> <col class="wi-normal"><col class="wi-verywide"><col class="wi-normal"> </colgroup> 
273
			<tbody>
274
				<tr>
275
					<th>[% 'Price Sources to be disabled in this client' | $T8 %]</th>
276
					<td colspan="2"> 
277
					<div>
278
						[% 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")) %] 
279
					</div>
280
					</td>
281
				</tr>
282
				<tr>
283
					<th class="caption" colspan="3">[% LxERP.t8("Enabled Quick Searched") %]</th>
284
				</tr>
285
				<tr>
286
					<th>[% 'Quick Searches that will be shown in the header in this client' | $T8 %]</th>
287
					<td colspan="2"> 
288
					<div>
289
						[% 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")) %] 
290
					</div>
291
					</td>
292
				</tr>
293
				<tr>
294
					<th class="caption" colspan="3">[% LxERP.t8("Shipped Quantity Algorithm") %]</th>
295
				</tr>
296
				<tr>
297
					<th>[% LxERP.t8('Require stock out to consider a delivery order position delivered?') %]</th>
298
					<td colspan="2" class="formelem-with-desc-float">[% L.yes_no_tag('defaults.shipped_qty_require_stock_out', SELF.defaults.shipped_qty_require_stock_out) %]<div class="description wi-verywide">
299
[% 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.') %]
300
</div></td>
301
				</tr>
302
				<tr>
303
					<th>[% LxERP.t8('Use fill up when calculating shipped quantities?') %]</th>
304
					<td colspan="2" class="formelem-with-desc-float">[% L.yes_no_tag('defaults.shipped_qty_fill_up', SELF.defaults.shipped_qty_fill_up) %]<div class="description wi-verywide">
305
[% 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.') %]
306
</div></td>
307
				</tr>
308
				<tr>
309
					<th>[% LxERP.t8('Position identity fields for fill up?') %]</th>
310
					<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">
311
[% 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.') %]
312
</div></td>
313
					<!-- <td class="longdesc"></td> -->
314
				</tr>
315
			</tbody>
316
		</table>
317
	</div>
318
</div>
297 319

  
298
  <tr><td class="listheading" colspan="4">[% LxERP.t8("Experimental Features") %]</td></tr>
299
  <tr>
300
   <td align="right">[% LxERP.t8('Enable experimental features') %]</td>
301
   <td>[% L.yes_no_tag('defaults.feature_experimental', SELF.defaults.feature_experimental) %]</td>
302
   <td>[% LxERP.t8('Experimental features are:') %] [% LxERP.t8('new order controller') %], [% LxERP.t8('Assortment') %]</td>
303
  </tr>
304 320

  
305
 <tr><td class="listheading" colspan="4">[% LxERP.t8("Shipped Quantity Algorithm") %]</td></tr>
306
 <tr>
307
  <td align="right">[% LxERP.t8('Require stock out to consider a delivery order position delivered?') %]</td>
308
  <td>[% L.yes_no_tag('defaults.shipped_qty_require_stock_out', SELF.defaults.shipped_qty_require_stock_out) %]</td>
309
  <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>
310
 </tr>
311
 <tr>
312
  <td align="right">[% LxERP.t8('Use fill up when calculating shipped quantities?') %]</td>
313
  <td>[% L.yes_no_tag('defaults.shipped_qty_fill_up', SELF.defaults.shipped_qty_fill_up) %]</td>
314
  <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>
315
 </tr>
316
 <tr>
317
  <td align="right">[% LxERP.t8('Position identity fields for fill up?') %]</td>
318
  <td>
319
    [% 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) %]
320
    [% L.multiselect2side("defaults_shipped_qty_item_identity_fields", labelsx=LxERP.t8("Available identity fields"), labeldx=LxERP.t8("Selected identity fields")) %]</td>
321
  <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>
322
 </tr>
323 321

  
324 322

  
325
</table>
326
</div>

Auch abrufbar als: Unified diff