X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Fclient_config%2Fform.html;h=f0d26214b1643191d775cacdd6681985b0818ff2;hb=3af1ae3c0e590feebb2f4c0f1fc0a5bd6dfbd4a2;hp=0f85512b3a14820a691b2d36d8a212ebc5ae63bf;hpb=83381f25d171ab6b6a085d1f82851c8e31c1527f;p=kivitendo-erp.git diff --git a/templates/webpages/client_config/form.html b/templates/webpages/client_config/form.html index 0f85512b3..f0d26214b 100644 --- a/templates/webpages/client_config/form.html +++ b/templates/webpages/client_config/form.html @@ -38,30 +38,61 @@ function enable_template_controls() { $('#new_templates,#new_master_templates').prop('disabled', existing); } +function verifyMBSize(elem) { + var fsize = parseInt($('#doc_max_filesize_MB').val()); + $('#defaults_doc_max_filesize').val(fsize*1000000.0); + $('#doc_max_filesize_MB').val(fsize); +} + +function verifyRootPath(elem) { + if ( elem.value == "" ) { + elem.value="./documents"; + } +} + +function checkavailable_filebackend(elem) { + var selval = elem.value; + if ( selval == 'Webdav' && $("#defaults_doc_webdav").val() == 0 ) { + elem.value = 'Filesystem'; + } + if ( elem.value == 'Filesystem' && $("#defaults_doc_files").val() == 0 ) { + elem.value = 'None'; + } + return false; +} + $(function() { warehouse_selected([% SELF.defaults.warehouse_id || -1 %], [% SELF.defaults.bin_id || -1 %], 'bin_id'); warehouse_selected([% SELF.defaults.warehouse_id_ignore_onhand || -1 %], [% SELF.defaults.bin_id_ignore_onhand || -1 %], 'bin_id_ignore_onhand'); + warehouse_selected([% SELF.defaults.stocktaking_warehouse_id || -1 %], [% SELF.defaults.stocktaking_bin_id || -1 %], 'stocktaking_bin_id'); enable_template_controls(); + $('#doc_max_filesize_MB').val(parseInt($('#defaults_doc_max_filesize').val())/1000000.0); $('#use_templates_existing,#use_templates_new').change(enable_template_controls); }) -->

[% title | html %]

-[% PROCESS 'common/flash.html' %] +[% INCLUDE 'common/flash.html' %] -
+
[% PROCESS 'client_config/_ranges_of_numbers.html' %] @@ -69,13 +100,12 @@ $(function() { [% PROCESS 'client_config/_posting_configuration.html' %] [% PROCESS 'client_config/_datev_check_configuration.html' %] [% PROCESS 'client_config/_orders_deleteable.html' %] +[%- IF INSTANCE_CONF.get_doc_storage %] +[% PROCESS 'client_config/_attachments.html' %] +[%- END %] [% PROCESS 'client_config/_warehouse.html' %] [% PROCESS 'client_config/_features.html' %] +[% PROCESS 'client_config/_stocktaking.html' %] [% PROCESS 'client_config/_miscellaneous.html' %] - -
- [%- L.hidden_tag('action', 'ClientConfig/dispatch') %] - [%- L.submit_tag('action_save', LxERP.t8('Save')) %]
-