Bugzilla – Attachment 15588 Details for
Bug 9685
Allow sort baskets by number
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch
0001-Bug-9685-Allow-sort-baskets-by-number.patch (text/plain), 2.17 KB, created by
Fridolin Somers
on 2013-02-21 14:56:58 UTC
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Fridolin Somers
Created:
2013-02-21 14:56:58 UTC
Size:
2.17 KB
patch
obsolete
>From d2c3e778de8ce3cafdd31c920469c20e4b561be5 Mon Sep 17 00:00:00 2001 >From: Fridolyn SOMERS <fridolyn.somers@biblibre.com> >Date: Thu, 21 Feb 2013 15:55:11 +0100 >Subject: [PATCH] Bug 9685: Allow sort baskets by number >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >In acqui/booksellers.pl, first column of baskets tables is "name (#number)". >This allows to sort by name but not by numnber. > >This patch splits acutal first column into 2 columns number and name to allow sorting on number. > >Test plan: >Look at page and use sorting on name and n° columns. >--- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >index 4077b5d..ae0b44e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >@@ -87,7 +87,8 @@ $(document).ready(function() { > <table class="baskets"> > <thead> > <tr> >- <th>Basket (#)</th> >+ <th>N°</th> >+ <th>Name</th> > <th>Item count</th> > <th>Biblio count</th> > <th>Items expected</th> >@@ -103,7 +104,8 @@ $(document).ready(function() { > [% ELSE %] > <tr> > [% END %] >- <td>[% basket.basketname %] (#[% basket.basketno %])</td> >+ <td>[% basket.basketno %]</td> >+ <td>[% basket.basketname %]</td> > <td>[% basket.total_items %]</td> > <td>[% basket.total_biblios %]</td> > <td>[% basket.expected_items %]</td> >-- >1.7.10.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 9685
:
15588
|
15684
|
15766
|
15926
|
15979
|
16029
|
17055