From: Liz Rea Date: December 14, 2010 10:54:17 AM CST To: koha-patches@lists.koha-community.org Subject: [Koha-patches] [PATCH] Potential fix for 5143, now with IE debug removed Need to set up keyword to marc mappings for subtitle, parts, numbers for this to work From: Chris Cormack Squashed commit of the following: commit 555e8a872408371ca9e730b41a61d4fdbb897d51 Author: Chris Cormack Date:   Wed Aug 18 21:52:32 2010 +1200    Removing IE debug commit 11df1c363af3fe660e25fb1b18885d205137adb4 Author: Chris Cormack Date:   Wed Aug 18 09:52:31 2010 +1200    Final fix for this bug 5143 commit efbb69d898c07332404d6ca906f801ad7ae89707 Author: Chris Cormack Date:   Wed Aug 18 09:40:09 2010 +1200    Typo fix commit 0b9423ab3910138e561d73e63190a2a51c7bb603 Author: Chris Cormack Date:   Wed Aug 18 09:36:47 2010 +1200    Bug 5143, adding subtile, parts and numbers to the holdsqueue report [Bug 5143] Subtitles not showing on view-holdsqueue.pl Seeking sign off. adds: - the subtitles into the title link (originally Chris Cormack) - barcodes for every listed hold - denoted which items were only item and which could be filled by any item on that bib. - added id's to every column for ease of jquery suppression of data (example: publication data or patron column could be suppressed) [bug 5143] Fixing whitespace errors. More whitespace corrections --- circ/view_holdsqueue.pl                            |    8 +++- .../prog/en/modules/circ/view_holdsqueue.tmpl      |   54 ++++++++++---------- 2 files changed, 34 insertions(+), 28 deletions(-) diff --git a/circ/view_holdsqueue.pl b/circ/view_holdsqueue.pl index 668bdd1..3023cdf 100755 --- a/circ/view_holdsqueue.pl +++ b/circ/view_holdsqueue.pl @@ -96,7 +96,13 @@ sub GetHoldsQueueItems { $sth->execute(@bind_params); my $items = [];     while ( my $row = $sth->fetchrow_hashref ){ - $row->{reservedate} = format_date($row->{reservedate}); + $row->{reservedate} = format_date($row->{reservedate}); + my $record = GetMarcBiblio($row->{biblionumber}); +    if ($record){ +        $row->{subtitle} = GetRecordValue('subtitle',$record,'')->[0]->{subfield}; +    $row->{parts} = GetRecordValue('parts',$record,'')->[0]->{subfield}; +    $row->{numbers} = GetRecordValue('numbers',$record,'')->[0]->{subfield}; + }         push @$items, $row;     }     return $items; diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tmpl index 52ddd85..a9d737e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tmpl @@ -14,7 +14,7 @@
-    +    
@@ -29,48 +29,48 @@              
No items found.
     -      -         -         -         -         - -         -         +         +         +         +         + +         +                             -             -             -             -             +             +             - -             -             + +             +                               
TitleCollectionCall NumberBarcodePatronSend ToDateTitleCollectionCall NumberBarcodePatronSend ToDate

">

-

- - , - , -                                        : -                                         ISBN:

+            

">

+                         

+                       

  +                                                                                 , +                                                                                 , +                                         : +                                          ISBN:

+
+                              -                     + Only Item:                  -                    Any available copy +                    
or Any available                              

#reserves">, ()

#reserves">, ()

- - + +
@@ -84,7 +84,7 @@                           - -- 1.5.6.5 _______________________________________________ Koha-patches mailing list Koha-patches@lists.koha-community.org http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/