Bugzilla – Attachment 65425 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]
[SIGNED-OFF] Bug 19022 - inventory location and author display
SIGNED-OFF-Bug-19022---inventory-location-and-auth.patch (text/plain), 1.98 KB, created by
Owen Leonard
on 2017-08-02 13:40:54 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 19022 - inventory location and author display
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2017-08-02 13:40:54 UTC
Size:
1.98 KB
patch
obsolete
>From 5e4ee1d828930694a15fb52aabe9246b9cc23231 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] [SIGNED-OFF] 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> >--- > 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.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 19022
:
65414
|
65415
|
65425
|
68741