Bugzilla – Attachment 117111 Details for
Bug 18912
Show more item information when using itemBarcodeFallbackSearch
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18912: (follow-up) Add even more information
Bug-18912-follow-up-Add-even-more-information.patch (text/plain), 5.43 KB, created by
David Nind
on 2021-02-20 02:35:16 UTC
(
hide
)
Description:
Bug 18912: (follow-up) Add even more information
Filename:
MIME Type:
Creator:
David Nind
Created:
2021-02-20 02:35:16 UTC
Size:
5.43 KB
patch
obsolete
>From c1d180ff47bf91d3affc6779ce9c771a419c9ed6 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Thu, 18 Feb 2021 11:47:44 +0000 >Subject: [PATCH] Bug 18912: (follow-up) Add even more information > >This follow-up proposes that we add even more information (collection >code, item type) and puts the new information in to table columns. > >Signed-off-by: David Nind <david@davidnind.com> >--- > .../prog/en/modules/circ/circulation.tt | 32 +++++++++++++++++++--- > 1 file changed, 28 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index c5907e34ae..5425b6a4f8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -446,17 +446,40 @@ > </div> > <div class="modal-body"> > <table class="table_borrowers"> >+ <thead> >+ <tr> >+ <th>Title</th> >+ <th>Barcode</th> >+ <th>Call number</th> >+ <th>Collection</th> >+ [% IF ( item_level_itypes ) %]<th>Item type</th>[% END %] >+ <th> </th> >+ </tr> >+ </thead> >+ <tbody> > [% FOREACH item IN options %] > <tr> > <td> > <a target="_blank" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item.biblionumber | html %]">[% item.biblio.title | html %] <i class="fa fa-window-restore"></i></a> >+ </td> >+ <td> > [% item.barcode | html %] >- [% IF item.itemcallnumber %]Callnumber: [% item.itemcallnumber %][% END %] >- [% IF item.copynumber %]Copy number: [% item.copynumber %][% END %] >- [% IF item.stocknumber %]Inventory number: [% item.stocknumber %][% END %] >- [% IF item.enumchron %]Serial enumeration: [% item.enumchron %][% END %] > </td> > <td> >+ [% IF item.itemcallnumber %][% item.itemcallnumber | html %][% END %] >+ [% IF item.copynumber %]<br /> Copy number: [% item.copynumber | html %][% END %] >+ [% IF item.stocknumber %]<br /> Inventory number: [% item.stocknumber | html %][% END %] >+ [% IF item.enumchron %]<br /> Serial enumeration: [% item.enumchron | html %][% END %] >+ </td> >+ <td> >+ [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => item.ccode ) | html %] >+ </td> >+ [% IF ( item_level_itypes ) %] >+ <td> >+ [% ItemTypes.GetDescription( item.itype ) | html %] >+ </td> >+ [% END %] >+ <td> > <form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off"> > [% IF (forceallow) %] > <input type="hidden" name="forceallow" value="1"> >@@ -474,6 +497,7 @@ > </td> > </tr> > [% END %] >+ </tbody> > </table> > </div> <!-- /.modal-body --> > <div class="modal-footer"> >-- >2.11.0
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 18912
:
116930
|
116987
|
116988
|
117110
|
117111
|
119075
|
119076
|
119319
|
119420
|
119769
|
119770
|
119771