Bugzilla – Attachment 68741 Details for
Bug 19022
Improve location and author display in inventory tool
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19022 - inventory location and author display
Bug-19022---inventory-location-and-author-display.patch (text/plain), 2.02 KB, created by
Kyle M Hall (khall)
on 2017-10-27 14:53:19 UTC
(
hide
)
Description:
Bug 19022 - inventory location and author display
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2017-10-27 14:53:19 UTC
Size:
2.02 KB
patch
obsolete
>From 1cc713cc07a6221594ee366b638f1826c478b07d Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Wed, 2 Aug 2017 10:43:44 +0200 >Subject: [PATCH] Bug 19022 - inventory location and author display > >In inventory result page : >Location is displayed after branch without any difference. >Author is displayed into a paragraph making row hight. > >This patch adds for location a span with class like in catalogue detail page, and changes author to be on same line in order to have a more compact display for this table that may be huge. > >Test plan : >- Perform inventory with a barcode file >- Look at result >=> you see localtion in a new line after library and in italic >=> you see author after title on same line with "by" separator > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >index 6fcbff8..13359ad 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >@@ -303,11 +303,13 @@ $(document).ready(function(){ > <td>[% result.itemcallnumber | html %]</td> > <td> > [% Branches.GetName( result.homebranch ) %] >- [% result.location | html %] >+ <span class="shelvingloc">[% result.location | html %]</span> > </td> > <td> > <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% result.biblionumber %]" class="openWin">[% result.title | html %]</a> >- <p>[% result.author | html %]</p> >+ [% IF ( result.author ) %] >+ by <span class="author">[% result.author | html %]</span> >+ [% END %] > </td> > <td> > [% result.notforloan | html %] >-- >2.10.2
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 19022
:
65414
|
65415
|
65425
| 68741