From 4b95ee62394d1e31dfda3fdb2d027fc67482c349 Mon Sep 17 00:00:00 2001
From: Kyle M Hall
Date: Wed, 23 Jan 2013 09:05:20 -0500
Subject: [PATCH] Bug 9458 - Add sorting to lists
Test Plan:
1) Apply patch
2) View list in staff interface, try sorting by title, then author
3) Repeat 2 with same list in OPAC
Signed-off-by: Delaye Stephane
Signed-off-by: Jonathan Druart
Signed-off-by: Jared Camins-Esakov
---
C4/VirtualShelves.pm | 4 +--
C4/VirtualShelves/Page.pm | 8 +++--
.../prog/en/modules/virtualshelves/shelves.tt | 35 +++++++++++++++++--
.../opac-tmpl/prog/en/modules/opac-shelves.tt | 34 ++++++++++++++++++
4 files changed, 74 insertions(+), 7 deletions(-)
diff --git a/C4/VirtualShelves.pm b/C4/VirtualShelves.pm
index 0bb4b56ec1..f63241604b 100644
--- a/C4/VirtualShelves.pm
+++ b/C4/VirtualShelves.pm
@@ -255,7 +255,7 @@ from C4::Circulation.
=cut
sub GetShelfContents {
- my ($shelfnumber, $row_count, $offset, $sortfield) = @_;
+ my ($shelfnumber, $row_count, $offset, $sortfield, $sort_direction ) = @_;
my $dbh=C4::Context->dbh();
my $sth1 = $dbh->prepare("SELECT count(*) FROM virtualshelfcontents WHERE shelfnumber = ?");
$sth1->execute($shelfnumber);
@@ -277,7 +277,7 @@ sub GetShelfContents {
my @params = ($shelfnumber);
if($sortfield) {
$query .= " ORDER BY " . $sortfield;
- $query .= " DESC " if ($sortfield eq 'copyrightdate');
+ $query .= " DESC " if ( ( $sortfield eq 'copyrightdate' ) || ( $sort_direction eq 'desc' ) );
}
if($row_count){
$query .= " LIMIT ?, ? ";
diff --git a/C4/VirtualShelves/Page.pm b/C4/VirtualShelves/Page.pm
index 586384d18b..ab807da6b5 100644
--- a/C4/VirtualShelves/Page.pm
+++ b/C4/VirtualShelves/Page.pm
@@ -249,7 +249,9 @@ sub shelfpage {
my $items;
my $tag_quantity;
my $sortfield = ( $sorton ? $sorton : 'title' );
- ( $items, $totitems ) = GetShelfContents( $shelfnumber, $shelflimit, $shelfoffset, $sortfield );
+ $sortfield = $query->param('sort') || $sortfield; ## Passed in sorting overrides default sorting
+ my $direction = $query->param('direction');
+ ( $items, $totitems ) = GetShelfContents( $shelfnumber, $shelflimit, $shelfoffset, $sortfield, $direction );
for my $this_item (@$items) {
my $biblionumber = $this_item->{'biblionumber'};
my $record = GetMarcBiblio($biblionumber);
@@ -419,7 +421,7 @@ sub shelfpage {
my $url = $type eq 'opac' ? "/cgi-bin/koha/opac-shelves.pl" : "/cgi-bin/koha/virtualshelves/shelves.pl";
my %qhash = ();
- foreach (qw(display viewshelf sortfield)) {
+ foreach (qw(display viewshelf sortfield sort direction)) {
$qhash{$_} = $query->param($_) if $query->param($_);
}
( scalar keys %qhash ) and $url .= '?' . join '&', map { "$_=$qhash{$_}" } keys %qhash;
@@ -459,6 +461,8 @@ sub shelfpage {
barshelvesloop => $barshelves,
pubshelves => $total->{pubtotal},
pubshelvesloop => $pubshelves,
+ sort => $query->param('sort'),
+ direction => $query->param('direction'),
);
output_html_with_http_headers $query, $cookie, $template->output;
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt
index 1eda7c94cc..e9f399468d 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt
@@ -204,15 +204,44 @@ function placeHold () {
[% END %]
+ [% IF direction == 'asc' %][% direction = 'desc' %][% ELSE %][% direction = 'asc' %][% END %]
[% pagination_bar %]
[% IF ( itemsloop ) %] | [% END %]
+
[% UNLESS ( item_level_itypes ) %]Item type | [% END %]
- Title |
- Author |
+
+ Title
+ [% IF sort == 'title' %]
+ [% IF direction == 'asc' %]
+
+ [% ELSIF direction == 'desc' %]
+
+ [% END %]
+ [% END %]
+ |
+
+ Author
+ [% IF sort == 'author' %]
+ [% IF direction == 'asc' %]
+
+ [% ELSIF direction == 'desc' %]
+
+ [% END %]
+ [% END %]
+ |
Date added |
- Call number |
+
+ Call number
+ [% IF sort == 'itemcallnumber' %]
+ [% IF direction == 'asc' %]
+
+ [% ELSIF direction == 'desc' %]
+
+ [% END %]
+ [% END %]
+ |
|
[% FOREACH itemsloo IN itemsloop %]
diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-shelves.tt b/koha-tmpl/opac-tmpl/prog/en/modules/opac-shelves.tt
index d6c1ed5234..59bedc7af4 100644
--- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-shelves.tt
+++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-shelves.tt
@@ -188,6 +188,11 @@ $(function() {
alert(alertString2);
}
}
+
+$(document).ready(function() {
+ $('#sort-submit').hide();
+});
+
//]]>
@@ -287,6 +292,35 @@ $(function() {
Print list
+
+
[% IF ( manageshelf ) %] |
--
2.39.5