Bug 12478: fix issues caused by rebasing
authorRobin Sheat <robin@catalyst.net.nz>
Wed, 25 Mar 2015 04:29:14 +0000 (17:29 +1300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Tue, 26 Apr 2016 12:57:06 +0000 (09:57 -0300)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Jesse Weaver <jweaver@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Koha/SearchEngine/Zebra/QueryBuilder.pm [new file with mode: 0644]
Koha/Template/Plugin/Price.pm

diff --git a/Koha/SearchEngine/Zebra/QueryBuilder.pm b/Koha/SearchEngine/Zebra/QueryBuilder.pm
new file mode 100644 (file)
index 0000000..7913eb9
--- /dev/null
@@ -0,0 +1,56 @@
+package Koha::SearchEngine::Zebra::QueryBuilder;
+
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
+
+use base qw(Class::Accessor);
+use Modern::Perl;
+use Moose::Role;
+use C4::Search;
+use C4::AuthoritiesMarc;
+
+sub build_query {
+    shift;
+    C4::Search::buildQuery @_;
+}
+
+sub build_query_compat {
+    # Because this passes directly on to C4::Search, we have no trouble being
+    # compatible.
+    build_query(@_);
+}
+
+sub build_authorities_query {
+    shift;
+    C4::AuthoritiesMarc::SearchAuthorities(@_);
+    return {
+        marclist     => $_[0],
+        and_or       => $_[1],
+        excluding    => $_[2],
+        operator     => $_[3],
+        value        => $_[4],
+        authtypecode => $_[5],
+        orderby      => $_[6],
+    };
+}
+
+sub build_authorities_query_compat {
+    # Pass straight through as well
+    build_authorities_query(@_);
+}
+
+1;
index 73b6871..44f7cd8 100644 (file)
@@ -17,7 +17,6 @@ package Koha::Template::Plugin::Price;
 # You should have received a copy of the GNU General Public License
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 
-use base qw(Class::Accessor);
 use Modern::Perl;
 
 use Template::Plugin::Filter;
@@ -35,10 +34,4 @@ sub filter {
         : Koha::Number::Price->new( $value )->format;
 }
 
-sub build_query_compat {
-    # Because this passes directly on to C4::Search, we have no trouble being
-    # compatible.
-    build_query(@_);
-}
-
 1;