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 <david@davidnind.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Katrin Fischer 2023-02-05 01:49:21 +00:00 committed by Tomas Cohen Arazi
parent 60e7c99165
commit 9cad332463
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -67,7 +67,7 @@ $(document).ready(function() {
error = checkOrderBudgets(); error = checkOrderBudgets();
if ( error > 0 ) { if ( error > 0 ) {
alert( __("Some budgets are not defined in item records") ); alert( __("Some funds are not defined in item records") );
return false; return false;
} }