View | Details | Raw Unified | Return to bug 24190
Collapse All | Expand All

(-)a/acqui/finishreceive.pl (-1 / +1 lines)
Lines 195-201 if ($suggestion_id) { Link Here
195
if (C4::Context->preference("AcquisitionLog")) {
195
if (C4::Context->preference("AcquisitionLog")) {
196
    my $infos = {
196
    my $infos = {
197
        quantityrec      => $quantityrec,
197
        quantityrec      => $quantityrec,
198
        bookfund         => $bookfund,
198
        bookfund         => $bookfund || 'unchanged',
199
        tax_rate         => $input->param("tax_rate"),
199
        tax_rate         => $input->param("tax_rate"),
200
        replacementprice => $replacementprice,
200
        replacementprice => $replacementprice,
201
        unitprice        => $unitprice
201
        unitprice        => $unitprice
(-)a/acqui/invoice.pl (-2 / +1 lines)
Lines 190-196 elsif ( $op && $op eq 'mod_adj' ) { Link Here
190
                note => $note[$i],
190
                note => $note[$i],
191
                budget_id => $budget_id[$i] || undef,
191
                budget_id => $budget_id[$i] || undef,
192
                encumber_open => defined $e_open{ $adjustment_id[$i] } ? 1 : 0,
192
                encumber_open => defined $e_open{ $adjustment_id[$i] } ? 1 : 0,
193
            });
193
            };
194
            my $new_adj = Koha::Acquisition::Invoice::Adjustment->new($adj);
194
            my $new_adj = Koha::Acquisition::Invoice::Adjustment->new($adj);
195
            $new_adj->store();
195
            $new_adj->store();
196
            # Log this addition
196
            # Log this addition
197
- 

Return to bug 24190