From 11ebc43998f6b3ebd708402fc0fdb5ce9a1a8ec5 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Wed, 17 Jul 2019 15:48:13 +0200 Subject: [PATCH] Einkauf/Verkauf: keine Validierung bei Update-Button MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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.). --- bin/mozilla/do.pl | 2 +- bin/mozilla/ir.pl | 1 - bin/mozilla/is.pl | 1 - bin/mozilla/oe.pl | 1 - 4 files changed, 1 insertion(+), 4 deletions(-) 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', ], -- 2.20.1