From 33797c9adc545b9a745215b782c6b34d058e5021 Mon Sep 17 00:00:00 2001 From: Fridolyn SOMERS Date: Wed, 24 Jul 2013 12:39:59 +0200 Subject: [PATCH] Bug 10544 - add Number-local-acquisition in QueryParser config Content-Type: text/plain; charset=utf-8 This patch adds the Number-local-acquisition into QueryParser configuration file. Like in ccl.properties, "Number-local-acquisition" is the main index name and "stocknumber" and "inv" are aliases. Test plan : Enable QueryParser : - Enable UseQueryParser syspref - Edit your koha-conf.xml - Add to "config" node : [your path]/etc/searchengine/queryparser.yaml, adapt [your patch] to your install configuration folder - If needed copy from sources "etc/searchengine/queryparser.yaml" into your install configuration folder Test search : - Add Number-local-acquisition on an existing subfield in records.abs. For example on item barcode field - Reindex Zebra database - Choose a value of this field that will match some results. For example : "0*" will match all barcodes beginning with zero - In intranet, enter this URL : /cgi-bin/koha/catalogue/search.pl?idx=stocknumber&q=0*&sort_by=relevance => You get some results - In intranet, enter this URL : /cgi-bin/koha/catalogue/search.pl?idx=inv&q=0*&sort_by=relevance => You get the same results - In intranet, enter this URL : /cgi-bin/koha/catalogue/search.pl?idx=number-local-acquisition&q=0*&sort_by=relevance => You get the same results Signed-off-by: Marcel de Rooy Comments on case sensitivity of index names in QueryParser, see Bugzilla. --- etc/searchengine/queryparser.yaml | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/etc/searchengine/queryparser.yaml b/etc/searchengine/queryparser.yaml index 832643a..6236580 100644 --- a/etc/searchengine/queryparser.yaml +++ b/etc/searchengine/queryparser.yaml @@ -956,16 +956,17 @@ field_mappings: aliases: - stock-number label: Stock-number - stocknumber: + number-local-acquisition: bib1_mapping: biblioserver: 1: 1062 enabled: 1 - index: stocknumber + index: number-local-acquisition aliases: + - number-local-acquisition - stocknumber - inv - label: Stocknumber + label: Number-local-acquisition summary: bib1_mapping: biblioserver: -- 1.7.7.6