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

(-)a/members/memberentry.pl (-1 / +1 lines)
Lines 753-759 $template->param( csrf_token => Link Here
753
753
754
# HouseboundModule data
754
# HouseboundModule data
755
$template->param(
755
$template->param(
756
    housebound_role  => Koha::Patron::HouseboundRoles->find($borrowernumber),
756
    housebound_role  => scalar Koha::Patron::HouseboundRoles->find($borrowernumber),
757
);
757
);
758
758
759
if(defined($data{'flags'})){
759
if(defined($data{'flags'})){
(-)a/members/moremember.pl (-1 / +1 lines)
Lines 347-353 $template->param( Link Here
347
    is_child        => ($category_type eq 'C'),
347
    is_child        => ($category_type eq 'C'),
348
    samebranch      => $samebranch,
348
    samebranch      => $samebranch,
349
    quickslip       => $quickslip,
349
    quickslip       => $quickslip,
350
    housebound_role => $patron->housebound_role,
350
    housebound_role => scalar $patron->housebound_role,
351
    privacy_guarantor_checkouts => $data->{'privacy_guarantor_checkouts'},
351
    privacy_guarantor_checkouts => $data->{'privacy_guarantor_checkouts'},
352
    AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
352
    AutoResumeSuspendedHolds => C4::Context->preference('AutoResumeSuspendedHolds'),
353
    SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
353
    SuspendHoldsIntranet => C4::Context->preference('SuspendHoldsIntranet'),
(-)a/members/pay.pl (-2 / +2 lines)
Lines 94-100 if ($writeoff_all) { Link Here
94
    Koha::Account->new( { patron_id => $borrowernumber } )->pay(
94
    Koha::Account->new( { patron_id => $borrowernumber } )->pay(
95
        {
95
        {
96
            amount     => $amount,
96
            amount     => $amount,
97
            lines      => [Koha::Account::Lines->find($accountlines_id)],
97
            lines      => [ scalar Koha::Account::Lines->find($accountlines_id) ],
98
            type       => 'writeoff',
98
            type       => 'writeoff',
99
            note       => $payment_note,
99
            note       => $payment_note,
100
            library_id => $branch,
100
            library_id => $branch,
Lines 208-214 sub writeoff_all { Link Here
208
            Koha::Account->new( { patron_id => $borrowernumber } )->pay(
208
            Koha::Account->new( { patron_id => $borrowernumber } )->pay(
209
                {
209
                {
210
                    amount => $amount,
210
                    amount => $amount,
211
                    lines  => [ Koha::Account::Lines->find($accountlines_id) ],
211
                    lines  => [ scalar Koha::Account::Lines->find($accountlines_id) ],
212
                    type   => 'writeoff',
212
                    type   => 'writeoff',
213
                    note   => $payment_note,
213
                    note   => $payment_note,
214
                    library_id => $branch,
214
                    library_id => $branch,
(-)a/opac/opac-user.pl (-2 / +1 lines)
Lines 343-349 if ( C4::Context->preference('AllowPatronToSetCheckoutsVisibilityForGuarantor' Link Here
343
}
343
}
344
344
345
$template->param(
345
$template->param(
346
    borrower                 => Koha::Patrons->find($borrowernumber),
346
    borrower                 => scalar Koha::Patrons->find($borrowernumber),
347
    patron_messages          => $patron_messages,
347
    patron_messages          => $patron_messages,
348
    opacnote                 => $borr->{opacnote},
348
    opacnote                 => $borr->{opacnote},
349
    patronupdate             => $patronupdate,
349
    patronupdate             => $patronupdate,
350
- 

Return to bug 18179