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

(-)a/members/mancredit.pl (+1 lines)
Lines 109-114 if (C4::Context->preference('ExtendedPatronAttributes')) { Link Here
109
		    is_child        => ($data->{'category_type'} eq 'C'),
109
		    is_child        => ($data->{'category_type'} eq 'C'),
110
			activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
110
			activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
111
            RoutingSerials => C4::Context->preference('RoutingSerials'),
111
            RoutingSerials => C4::Context->preference('RoutingSerials'),
112
            finesview => 1,
112
        );
113
        );
113
    output_html_with_http_headers $input, $cookie, $template->output;
114
    output_html_with_http_headers $input, $cookie, $template->output;
114
}
115
}
(-)a/members/maninvoice.pl (-1 / +1 lines)
Lines 39-45 my $flagsrequired = { borrowers => 1 }; Link Here
39
39
40
my $borrowernumber=$input->param('borrowernumber');
40
my $borrowernumber=$input->param('borrowernumber');
41
41
42
43
# get borrower details
42
# get borrower details
44
my $data=GetMember('borrowernumber'=>$borrowernumber);
43
my $data=GetMember('borrowernumber'=>$borrowernumber);
45
my $add=$input->param('add');
44
my $add=$input->param('add');
Lines 136-141 if (C4::Context->preference('ExtendedPatronAttributes')) { Link Here
136
		is_child        => ($data->{'category_type'} eq 'C'),
135
		is_child        => ($data->{'category_type'} eq 'C'),
137
		activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
136
		activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
138
        RoutingSerials => C4::Context->preference('RoutingSerials'),
137
        RoutingSerials => C4::Context->preference('RoutingSerials'),
138
        finesview => 1,
139
    );
139
    );
140
    output_html_with_http_headers $input, $cookie, $template->output;
140
    output_html_with_http_headers $input, $cookie, $template->output;
141
}
141
}
(-)a/members/pay.pl (-1 / +1 lines)
Lines 106-111 for (@names) { Link Here
106
$template->param(
106
$template->param(
107
    activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
107
    activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
108
    RoutingSerials => C4::Context->preference('RoutingSerials'),
108
    RoutingSerials => C4::Context->preference('RoutingSerials'),
109
    finesview => 1,
109
);
110
);
110
111
111
add_accounts_to_template();
112
add_accounts_to_template();
112
- 

Return to bug 12447