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:
parent
60e7c99165
commit
9cad332463
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue