From df2cad62b0bdd0ec778dadf62904785bf1bf6b9c Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 16 Oct 2023 12:08:25 +0200 Subject: [PATCH] Bug 35062: Add class plugin-blocks-submit in addbiblio Adding this condition in Check() allows you to prevent form submittal during e.g. an ajax call in a framework plugin. The plugin adds and removes the class on the corresponding html element during processing. Test plan: Since we do not have a plugin using this class yet, nothing changes now. Verify that you can still click Save in addbiblio while using standard plugins. In other words: no change in behavior. Signed-off-by: Marcel de Rooy Signed-off-by: David Nind Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer --- .../intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt index 57bee4b9b1..e0b71fc940 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt @@ -744,7 +744,10 @@ $(document).ready(function(){ function Check(){ var StrAlert = AreFieldsNotOk(); var StrWarning = AreFieldsNotOk( false ); - if( !StrAlert && StrWarning ){ + if ( $('.plugin-blocks-submit').length > 0 ) { + // This class can be set by framework plugins to block submittal temporarily (e.g. during ajax call) + return false; + } else if( !StrAlert && StrWarning ) { // Check important fields $("#check_errors").html( StrWarning ); $('html, body').animate({ scrollTop: 0 }, 'fast'); -- 2.39.5