X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Fclient_config%2Fform.html;h=e1caf47df75451f0e3e81660a636fdf34683e4f8;hb=0aa885f4f0bb531a7691a641f954ff296ffa04a5;hp=0f85512b3a14820a691b2d36d8a212ebc5ae63bf;hpb=54006a889326c54c68cfe55142dc44b55c2a3bd1;p=kivitendo-erp.git diff --git a/templates/webpages/client_config/form.html b/templates/webpages/client_config/form.html index 0f85512b3..e1caf47df 100644 --- a/templates/webpages/client_config/form.html +++ b/templates/webpages/client_config/form.html @@ -38,28 +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'; + } else if ( selval == 'ExtDMS' ) { + elem.value = 'Filesystem'; + } if ( selval == 'DB' && $("#defaults_doc_database").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'); 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' %] -
+
@@ -69,13 +102,11 @@ $(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/_miscellaneous.html' %] - -
- [%- L.hidden_tag('action', 'ClientConfig/dispatch') %] - [%- L.submit_tag('action_save', LxERP.t8('Save')) %]
-