From: Moritz Bunkus Date: Wed, 17 Jul 2019 13:48:13 +0000 (+0200) Subject: Einkauf/Verkauf: keine Validierung bei Update-Button X-Git-Tag: release-3.5.4~31 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=11ebc43998f6b3ebd708402fc0fdb5ce9a1a8ec5;p=kivitendo-erp.git Einkauf/Verkauf: keine Validierung bei Update-Button Andernfalls wird z.B. erzwungen, dass die Vorgangsbezeichnung eingegeben ist, bevor der Update-Button betätigt wird. Das betrifft auch den Kundenwechsel, der ein automatisches Update triggert, was wiederum die Validierung triggert. Wichtig bzgl. Validierung ist letztlich nur, dass die Werte zum Zeitpunkt des Speicherns gültig sind, egal ob explizites (»Speicher«, »Als neu speicher«) oder implizites Speichern (»Drucken«, »E-Mail« etc.). --- diff --git a/bin/mozilla/do.pl b/bin/mozilla/do.pl index ff902172d..c21cff9e6 100644 --- a/bin/mozilla/do.pl +++ b/bin/mozilla/do.pl @@ -1,3 +1,4 @@ + #===================================================================== # LX-Office ERP # Copyright (C) 2004 @@ -247,7 +248,6 @@ sub setup_do_action_bar { [ t8('Update'), submit => [ '#form', { action => "update" } ], id => 'update_button', - checks => [ 'kivi.validate_form' ], accesskey => 'enter', ], diff --git a/bin/mozilla/ir.pl b/bin/mozilla/ir.pl index c550d5d64..f41e8087a 100644 --- a/bin/mozilla/ir.pl +++ b/bin/mozilla/ir.pl @@ -262,7 +262,6 @@ sub setup_ir_action_bar { action => [ t8('Update'), submit => [ '#form', { action => "update" } ], - checks => [ 'kivi.validate_form' ], id => 'update_button', accesskey => 'enter', disabled => !$may_edit_create ? t8('You must not change this invoice.') : undef, diff --git a/bin/mozilla/is.pl b/bin/mozilla/is.pl index 2c50d7ee9..9b8fc2a12 100644 --- a/bin/mozilla/is.pl +++ b/bin/mozilla/is.pl @@ -296,7 +296,6 @@ sub setup_is_action_bar { : $form->{locked} ? t8('The billing period has already been locked.') : undef, id => 'update_button', - checks => [ 'kivi.validate_form' ], accesskey => 'enter', ], diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index b5f3eb6b6..ad0cbf348 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -331,7 +331,6 @@ sub setup_oe_action_bar { t8('Update'), submit => [ '#form', { action => "update" } ], id => 'update_button', - checks => [ 'kivi.validate_form' ], accesskey => 'enter', ],