From 20d1b49486b33a1a244df32b19896ed3ed390382 Mon Sep 17 00:00:00 2001 From: Olivier Crouzet Date: Mon, 11 Mar 2019 15:00:23 +0100 Subject: [PATCH] Bug 20830: Make sure a fund is selected when ordering from a stage file --- .../intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt index f6e08fc..3549bc8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt @@ -76,6 +76,20 @@ } + if (! $("#all_budget_id").val() ) { + // If there is no default fund + var error = 0; + $(".selected [name='budget_id']").each(function(){ + if (!$(this).val()) { + error++; + } + }); + if ( error > 0 ) { + alert(_("Some budgets are not defined in item records")); + return false; + } + } + return disableUnchecked($(this)); }); $('#tabs').tabs(); -- 2.1.4