@@ -, +, @@ overdue.pl - Create an overdue item. - Navigate to overdue circulation report (Home -> Circulation -> Overdues) - Notice there is no card number showing in the Patron column. - Apply patch. - Refresh page. - Notice there is a card number showing in the Patron column. --- circ/overdue.pl | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) --- a/circ/overdue.pl +++ a/circ/overdue.pl @@ -264,6 +264,7 @@ if ($noreport) { borrowers.country, borrowers.phone, borrowers.email, + borrowers.cardnumber, issues.itemnumber, issues.issuedate, items.barcode, @@ -345,6 +346,7 @@ if ($noreport) { duedate => output_pref($dt), borrowernumber => $data->{borrowernumber}, barcode => $data->{barcode}, + cardnumber => $data->{cardnumber}, itemnum => $data->{itemnumber}, issuedate => format_date($data->{issuedate}), borrowertitle => $data->{borrowertitle}, --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt @@ -109,7 +109,7 @@ overdue as of [% todaysdate %][% IF ( isfiltered ) %] [% overdueloo.surname %][% IF (overdueloo.firstname) %], [% overdueloo.firstname %][% END %] + [% overdueloo.surname %][% IF (overdueloo.firstname) %], [% overdueloo.firstname %][% END %] ([% overdueloo.cardnumber %]) [% IF ( overdueloo.email ) %][email][% END %] [% IF ( overdueloo.phone ) %]([% overdueloo.phone %])[% ELSIF ( overdueloo.mobile ) %]([% overdueloo.mobile %])[% ELSIF ( overdueloo.phonepro ) %]([% overdueloo.phonepro %])[% END %] [% overdueloo.branchcode %] --