From 993b250ffb1c49dc68a1b723b513008696726ce0 Mon Sep 17 00:00:00 2001 From: Chris Nighswonger Date: Mon, 21 Feb 2011 14:12:52 -0500 Subject: [PATCH] Revert "Partial fix for Bug 5745, Overdues with fines report not showing titles" This reverts commit 65e478ca51a5b20d4b26c31213571f1344c42fbf. Patch accidentally pushed which introduces string changes. Signed-off-by: Chris Nighswonger --- C4/Overdues.pm | 2 -- circ/branchoverdues.pl | 9 +------ .../prog/en/modules/circ/branchoverdues.tmpl | 27 ++++++++++++++----- 3 files changed, 21 insertions(+), 17 deletions(-) diff --git a/C4/Overdues.pm b/C4/Overdues.pm index adba9793b7..032ca938e1 100644 --- a/C4/Overdues.pm +++ b/C4/Overdues.pm @@ -1176,14 +1176,12 @@ sub GetOverduesForBranch { borrowers.phone, borrowers.email, biblio.title, - biblio.author, biblio.biblionumber, issues.date_due, issues.returndate, issues.branchcode, branches.branchname, items.barcode, - items.homebranch, items.itemcallnumber, items.location, items.itemnumber, diff --git a/circ/branchoverdues.pl b/circ/branchoverdues.pl index 5c1dcafea6..905af94396 100755 --- a/circ/branchoverdues.pl +++ b/circ/branchoverdues.pl @@ -27,7 +27,6 @@ use C4::Overdues; # AddNotifyLine use C4::Biblio; use C4::Koha; use C4::Debug; -use C4::Branch; =head1 branchoverdues.pl @@ -104,27 +103,21 @@ my ($tag,$subfield) = GetMarcFromKohaField('items.location',''); my $tagslib = &GetMarcStructure(1,''); if ($tagslib->{$tag}->{$subfield}->{authorised_value}) { my $values= GetAuthorisedValues($tagslib->{$tag}->{$subfield}->{authorised_value}); - for (@$values) { $_->{selected} = 1 if $location eq $_->{authorised_value} } $template->param(locationsloop => $values); } # now display infos foreach my $num (@getoverdues) { + my %overdueforbranch; - my $record = GetMarcBiblio($num->{biblionumber}); - if ($record){ - $overdueforbranch{'subtitle'} = GetRecordValue('subtitle',$record,'')->[0]->{subfield}; - } $overdueforbranch{'date_due'} = format_date( $num->{'date_due'} ); $overdueforbranch{'title'} = $num->{'title'}; $overdueforbranch{'description'} = $num->{'description'}; $overdueforbranch{'barcode'} = $num->{'barcode'}; $overdueforbranch{'biblionumber'} = $num->{'biblionumber'}; - $overdueforbranch{'author'} = $num->{'author'}; $overdueforbranch{'borrowersurname'} = $num->{'surname'}; $overdueforbranch{'borrowerfirstname'} = $num->{'firstname'}; $overdueforbranch{'borrowerphone'} = $num->{'phone'}; $overdueforbranch{'borroweremail'} = $num->{'email'}; - $overdueforbranch{'homebranch'} = GetBranchName($num->{'homebranch'}); $overdueforbranch{'itemcallnumber'} = $num->{'itemcallnumber'}; $overdueforbranch{'borrowernumber'} = $num->{'borrowernumber'}; $overdueforbranch{'itemnumber'} = $num->{'itemnumber'}; diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchoverdues.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchoverdues.tmpl index fb14577269..8458208a42 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchoverdues.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchoverdues.tmpl @@ -17,16 +17,29 @@

Circulation: Overdues at

+ + +

Location selected

+
+
    +
  • + You are working actually on the overdues for the location : + +
  • +
+
+
- + - +
+ @@ -43,12 +56,12 @@ @@ -96,7 +109,7 @@
- by - + +   ()
Barcode :
- ">,

+ ">  

?subject=Overdue: ">
-
There are no overdues for today at the selected location.
+
There are no overdues for today.
-- 2.39.5