@@ -, +, @@ typo --- acqui/finishreceive.pl | 2 +- acqui/invoice.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/acqui/finishreceive.pl +++ a/acqui/finishreceive.pl @@ -195,7 +195,7 @@ if ($suggestion_id) { if (C4::Context->preference("AcquisitionLog")) { my $infos = { quantityrec => $quantityrec, - bookfund => $bookfund, + bookfund => $bookfund || 'unchanged', tax_rate => $input->param("tax_rate"), replacementprice => $replacementprice, unitprice => $unitprice --- a/acqui/invoice.pl +++ a/acqui/invoice.pl @@ -190,7 +190,7 @@ elsif ( $op && $op eq 'mod_adj' ) { note => $note[$i], budget_id => $budget_id[$i] || undef, encumber_open => defined $e_open{ $adjustment_id[$i] } ? 1 : 0, - }); + }; my $new_adj = Koha::Acquisition::Invoice::Adjustment->new($adj); $new_adj->store(); # Log this addition --