Bugzilla – Attachment 12124 Details for
Bug 8598
No patron image or home library on Files & Statistics tabs
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[Signed off] Bug-8598-No-patron-image-or-home-library-on-Files-St.patch
0001-Bug-8598-No-patron-image-or-home-library-on-Files-St.patch (text/plain), 3.08 KB, created by
Melia Meggs
on 2012-09-10 22:55:15 UTC
(
hide
)
Description:
[Signed off] Bug-8598-No-patron-image-or-home-library-on-Files-St.patch
Filename:
MIME Type:
Creator:
Melia Meggs
Created:
2012-09-10 22:55:15 UTC
Size:
3.08 KB
patch
obsolete
>From 7d3285d2de67985967285cd91bb90e478cc64f6a Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Fri, 7 Sep 2012 12:12:03 -0400 >Subject: [PATCH] Bug 8598 - No patron image or home library on Files & Statistics tabs > >Adding the necessary code for patron image, patron >home library, patron category description, and patron >extended attributes to show in the left-hand sidebar. > >Signed-off-by: Melia Meggs <melia@test.bywatersolutions.com> >--- > members/files.pl | 18 ++++++++++++++++++ > members/statistics.pl | 17 ++++++++++++++++- > 2 files changed, 34 insertions(+), 1 deletions(-) > >diff --git a/members/files.pl b/members/files.pl >index f011c77..84bc41e 100755 >--- a/members/files.pl >+++ b/members/files.pl >@@ -23,8 +23,10 @@ use warnings; > use CGI; > > use C4::Auth; >+use C4::Branch; > use C4::Output; > use C4::Members; >+use C4::Members::Attributes qw(GetBorrowerAttributes); > use C4::Debug; > > use Koha::DateUtils; >@@ -100,6 +102,22 @@ else { > } > > $template->param( >+ categoryname => $data->{'description'}, >+ branchname => GetBranchName($data->{'branchcode'}), >+ ); >+ >+ if (C4::Context->preference('ExtendedPatronAttributes')) { >+ my $attributes = GetBorrowerAttributes($borrowernumber); >+ $template->param( >+ ExtendedPatronAttributes => 1, >+ extendedattributes => $attributes >+ ); >+ } >+ >+ my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'}); >+ $template->param( picture => 1 ) if $picture; >+ >+ $template->param( > files => Koha::Borrower::Files->new( borrowernumber => $borrowernumber ) > ->GetFilesInfo(), > >diff --git a/members/statistics.pl b/members/statistics.pl >index 7125560..d48cdde 100755 >--- a/members/statistics.pl >+++ b/members/statistics.pl >@@ -29,6 +29,7 @@ use C4::Branch; > use C4::Context; > use C4::Members; > use C4::Members::Statistics; >+use C4::Members::Attributes qw(GetBorrowerAttributes); > use C4::Output; > > my $input = new CGI; >@@ -56,7 +57,10 @@ if ( not defined $borrower ) { > foreach my $key ( keys %$borrower ) { > $template->param( $key => $borrower->{$key} ); > } >- >+$template->param( >+ categoryname => $borrower->{'description'}, >+ branchname => GetBranchName($borrower->{'branchcode'}), >+); > # Construct column names > my $fields = C4::Members::Statistics::get_fields(); > our @statistic_column_names = split '\|', $fields; >@@ -80,6 +84,17 @@ my $count_total_issues = $total->{count_total_issues_today} || 0; > my $count_total_issues_returned = $total->{count_total_issues_returned_today} || 0; > my $count_total_actual_state = ($count_total_precedent_state - $count_total_issues_returned + $count_total_issues); > >+if (C4::Context->preference('ExtendedPatronAttributes')) { >+ my $attributes = GetBorrowerAttributes($borrowernumber); >+ $template->param( >+ ExtendedPatronAttributes => 1, >+ extendedattributes => $attributes >+ ); >+} >+ >+my ($picture, $dberror) = GetPatronImage($borrower->{'cardnumber'}); >+$template->param( picture => 1 ) if $picture; >+ > $template->param( > statisticsview => 1, > datas => $datas, >-- >1.7.2.5 >
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 8598
:
11451
|
11452
|
12058
| 12124