Bugzilla – Attachment 35134 Details for
Bug 13549
Add cardnumber to overdue circulation report overdue.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13549: Add cardnumber to overdue circulation report overdue.pl
Bug-13549-Add-cardnumber-to-overdue-circulation-re.patch (text/plain), 2.80 KB, created by
Justin Vos
on 2015-01-13 03:33:21 UTC
(
hide
)
Description:
Bug 13549: Add cardnumber to overdue circulation report overdue.pl
Filename:
MIME Type:
Creator:
Justin Vos
Created:
2015-01-13 03:33:21 UTC
Size:
2.80 KB
patch
obsolete
>From 82bd8da0da380dbfe2f41fed7734b4711a8a45b4 Mon Sep 17 00:00:00 2001 >From: Justin <justinvos@live.com> >Date: Wed, 14 Jan 2015 03:28:07 +0000 >Subject: [PATCH] Bug 13549: Add cardnumber to overdue circulation report > overdue.pl > >Test Plan: > - 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. > >Signed-off-by: Justin <justinvos@live.com> >--- > circ/overdue.pl | 2 ++ > koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt | 2 +- > 2 files changed, 3 insertions(+), 1 deletion(-) > >diff --git a/circ/overdue.pl b/circ/overdue.pl >index c2a0db1..925d953 100755 >--- a/circ/overdue.pl >+++ b/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}, >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt >index fe2a4bd..553bcf8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt >@@ -109,7 +109,7 @@ overdue as of [% todaysdate %][% IF ( isfiltered ) %] <span style="font-size:70% > <tbody>[% FOREACH overdueloo IN overdueloop %] > <tr> > <td>[% overdueloo.duedate %]</td> >- <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% overdueloo.borrowernumber %]">[% overdueloo.surname %][% IF (overdueloo.firstname) %], [% overdueloo.firstname %][% END %]</a> >+ <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% overdueloo.borrowernumber %]">[% overdueloo.surname %][% IF (overdueloo.firstname) %], [% overdueloo.firstname %][% END %] ([% overdueloo.cardnumber %])</a> > [% IF ( overdueloo.email ) %][<a href="mailto:[% overdueloo.email %]?subject=Overdue: [% overdueloo.title |html %]">email</a>][% END %] > [% IF ( overdueloo.phone ) %]([% overdueloo.phone %])[% ELSIF ( overdueloo.mobile ) %]([% overdueloo.mobile %])[% ELSIF ( overdueloo.phonepro ) %]([% overdueloo.phonepro %])[% END %]</td> > <td>[% overdueloo.branchcode %]</td> >-- >1.7.10.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 13549
:
35096
|
35134
|
35141
|
35291