@@ -, +, @@ not retained; price calculations not working - Budget/fund stored in suggestion record (if any) is not retained - If there was a price given to, and stored within suggestion record, --- acqui/neworderempty.pl | 1 + koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt | 1 + 2 files changed, 2 insertions(+) --- a/acqui/neworderempty.pl +++ a/acqui/neworderempty.pl @@ -182,6 +182,7 @@ if ( $ordernumber eq '' ) { # create order # otherwise, retrieve suggestion information. if ($suggestionid) { $data = ($biblionumber) ? GetBiblioData($biblionumber) : GetSuggestion($suggestionid); + $budget_id ||= $data->{'budgetid'} // 0; } } else { #modify order --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt @@ -101,6 +101,7 @@ $(document).ready(function() cloneItemBlock(0, '[% UniqueItemFields %]'); [% END %] + [% IF ( suggestionid ) %]updateCosts();[% END %] $("#quantity").change(function() { updateCosts(); }); --