Bugzilla – Attachment 77637 Details for
Bug 20450
Add collection to list of items when placing hold on specific copy
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20450: Add collection to item table when placing a hold on a specific copy (Intranet)
Bug-20450-Add-collection-to-item-table-when-placin.patch (text/plain), 3.47 KB, created by
Katrin Fischer
on 2018-08-09 22:15:00 UTC
(
hide
)
Description:
Bug 20450: Add collection to item table when placing a hold on a specific copy (Intranet)
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2018-08-09 22:15:00 UTC
Size:
3.47 KB
patch
obsolete
>From db834b974bf457c719a1ab4e81ec482b5991132f Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Thu, 9 Aug 2018 21:28:30 +0000 >Subject: [PATCH] Bug 20450: Add collection to item table when placing a hold > on a specific copy (Intranet) > >This patch adds a new collection column to the item table when selecting >a specific item for a hold. The column will only appear if at least >one item has a collection set. > >To test, in staff: >- Place a specific hold on > - a record with one or more items with collections > - a record with one or more items without collections >- Verify the collections display correctly when they exist >- Verify the table still works as expected >--- > koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 9 +++++++++ > reserve/request.pl | 6 ++++++ > 2 files changed, 15 insertions(+) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >index 2b435d2..6b8b385 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >@@ -4,6 +4,7 @@ > [% USE Branches %] > [% USE Categories %] > [% USE ItemTypes %] >+[% USE AuthorisedValues %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] > [% UNLESS ( multi_hold ) %] >@@ -291,6 +292,9 @@ > <th>Barcode</th> > <th>Home library</th> > <th>Last location</th> >+ [% IF itemdata_ccode %] >+ <th>Collection</th> >+ [% END %] > <th>Call no.</th> > <th>Copy number</th> > [% IF itemdata_enumchron %] >@@ -358,6 +362,11 @@ > <td> > [% Branches.GetName( itemloo.holdingbranch ) %] > </td> >+ [% IF itemdata_ccode %] >+ <td> >+ [% IF ( itemloo.ccode ) %][% AuthorisedValues.GetByCode( 'CCODE', itemloo.ccode ) %][% END %] >+ </td> >+ [% END %] > <td> > [% itemloo.itemcallnumber %] > </td> >diff --git a/reserve/request.pl b/reserve/request.pl >index 2902de0..7f3b422 100755 >--- a/reserve/request.pl >+++ b/reserve/request.pl >@@ -199,6 +199,7 @@ my $patron = Koha::Patrons->find( $borrowernumber_hold ); > my $logged_in_patron = Koha::Patrons->find( $borrowernumber ); > > my $itemdata_enumchron = 0; >+my $itemdata_ccode = 0; > my @biblioloop = (); > foreach my $biblionumber (@biblionumbers) { > next unless $biblionumber =~ m|^\d+$|; >@@ -492,6 +493,10 @@ foreach my $biblionumber (@biblionumbers) { > if ($item->{enumchron}) { > $itemdata_enumchron = 1; > } >+ # Show collection when needed >+ if ($item->{ccode}) { >+ $itemdata_ccode = 1; >+ } > } > > push @{ $biblioitem->{itemloop} }, $item; >@@ -602,6 +607,7 @@ foreach my $biblionumber (@biblionumbers) { > optionloop => \@optionloop, > bibitemloop => \@bibitemloop, > itemdata_enumchron => $itemdata_enumchron, >+ itemdata_ccode => $itemdata_ccode, > date => $date, > biblionumber => $biblionumber, > findborrower => $findborrower, >-- >2.1.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 20450
:
77637
|
77638
|
78888
|
78923
|
78924
|
79532
|
79533
|
79604
|
79605
|
79606
|
79658
|
80516
|
80517
|
80518