From 2706c168ca160924876ec19b1307443a7895f6d5 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 5 Feb 2023 01:49:21 +0000 Subject: [PATCH] Bug 32293: Fix terminology in warning when creating orders from staged file When you are ordering from a staged file and the fund is missing, there is a warning: Some budgets are not defined in item records Budgets shoudl be funds here. To test: * Add a new basket * Add an order from a staged file or from a file * Leave the fund values of some selected items empty * Make sure default fund entry is also empty * Warning message should be triggered on saving * Apply patch, repeat, verify it is correct now. Signed-off-by: David Nind Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js b/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js index ba53f0b767a..850eb02929f 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js +++ b/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js @@ -67,7 +67,7 @@ $(document).ready(function() { error = checkOrderBudgets(); if ( error > 0 ) { - alert( __("Some budgets are not defined in item records") ); + alert( __("Some funds are not defined in item records") ); return false; } -- 2.25.1