X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fcommon.js;h=cabc6507ed0a49beccb02f6a92692a76f2c62473;hb=41b9f5c7c8067d67326c83e2d26df0898bc279ca;hp=86b869c3c878c6de9150b93243d5535834843933;hpb=3c2e635c3d0f16fc53c49fd7a4fa91ab7e92796b;p=kivitendo-erp.git diff --git a/js/common.js b/js/common.js index 86b869c3c..cabc6507e 100644 --- a/js/common.js +++ b/js/common.js @@ -45,30 +45,30 @@ function set_longdescription_window(input_name) { } function check_right_number_format(input_name) { - if(decpoint == thpoint) { + if(decpoint && thpoint && thpoint == decpoint) { return show_alert_and_focus(input_name, wrongNumberFormat); } - if(decpoint == ',') { - var decnumbers = input_name.value.split(','); + var test_val = input_name.value; + if(thpoint && thpoint == ','){ + test_val = test_val.replace(/,/g, ''); } - else { - var decnumbers = input_name.value.split('.'); - } - if(decnumbers.length == 2) { - if(decnumbers[1].length > 2) { - /* return show_alert_and_focus(input_name, wrongNumberFormat); */ - } + if(thpoint && thpoint == '.'){ + test_val = test_val.replace(/\./g, ''); } - else { - if(decnumbers.length > 2) { - return show_alert_and_focus(input_name, wrongNumberFormat); - } - if(!thpoint) { - if(decnumbers[0].match(/\D/)) { - return show_alert_and_focus(input_name, wrongNumberFormat); - } - } + if(decpoint && decpoint == ','){ + test_val = test_val.replace(/,/g, '.'); } + var forbidden = test_val.match(/[^\s\d\(\)\-\+\*\/\.]/g); + if (forbidden && forbidden.length > 0 ){ + return show_alert_and_focus(input_name, wrongNumberFormat); + } + + try{ + eval(test_val); + }catch(err){ + return show_alert_and_focus(input_name, wrongNumberFormat); + } + } function check_right_date_format(input_name) { @@ -166,7 +166,6 @@ $(document).ready(function () { }); // legacy. sone forms install these if (typeof fokus == 'function') { fokus(); return; } - if (focus_by_name('fokus')) return; if (focus_by_name('cursor_fokus')) return; set_cursor_to_first_element(); });