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

(-)a/Koha/Account.pm (+1 lines)
Lines 254-259 sub add_credit { Link Here
254
                        type           => lc($credit_type),
254
                        type           => lc($credit_type),
255
                        amount         => $amount,
255
                        amount         => $amount,
256
                        borrowernumber => $self->{patron_id},
256
                        borrowernumber => $self->{patron_id},
257
                        interface      => $interface,
257
                    }
258
                    }
258
                ) if grep { $credit_type eq $_ } ( 'PAYMENT', 'WRITEOFF' );
259
                ) if grep { $credit_type eq $_ } ( 'PAYMENT', 'WRITEOFF' );
259
260
(-)a/Koha/Recalls.pm (-2 / +2 lines)
Lines 173-179 sub add_recall { Link Here
173
                borrowernumber => $recall->patron_id,
173
                borrowernumber => $recall->patron_id,
174
                itemtype       => $item->effective_itemtype,
174
                itemtype       => $item->effective_itemtype,
175
                ccode          => $item->ccode,
175
                ccode          => $item->ccode,
176
                categorycode   => $checkout->patron->categorycode
176
                categorycode   => $checkout->patron->categorycode,
177
                interface      => $interface,
177
            }
178
            }
178
        );
179
        );
179
180
180
- 

Return to bug 30928