Bugzilla – Attachment 119770 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.48 KB, created by
Kyle M Hall (khall)
on 2021-04-16 17:13:15 UTC
(
hide
)
Description:
Bug 18912: (follow-up) Add even more information
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2021-04-16 17:13:15 UTC
Size:
5.48 KB
patch
obsolete
>From 1d61acee2ab60b3da29d548eacfdd8594a108400 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> >Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.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 0d4d4d82c9..a8806e9edf 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -480,16 +480,39 @@ > </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) %] >@@ -508,6 +531,7 @@ > </td> > </tr> > [% END %] >+ </tbody> > </table> > </div> <!-- /.modal-body --> > <div class="modal-footer"> >-- >2.24.3 (Apple Git-128)
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