View | Details | Raw Unified | Return to bug 27428
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref (-9 / +9 lines)
Lines 123-128 Searching: Link Here
123
            - "<pre>ccode: [REF,ARC]</pre><br/>  - would mark all REF and ARC collections (Reference and Archives) items as unavailable in Z3950 results.<br/><br/>"
123
            - "<pre>ccode: [REF,ARC]</pre><br/>  - would mark all REF and ARC collections (Reference and Archives) items as unavailable in Z3950 results.<br/><br/>"
124
            - "You can define multiple keys and values, items meeting ANY of the criteria will be marked unavailable:<br/><br/>"
124
            - "You can define multiple keys and values, items meeting ANY of the criteria will be marked unavailable:<br/><br/>"
125
            - "<pre>itype: [REF]<br/>holdingbranch: [REPAIR]</pre><br/>  - would mark all reference items AND items at the REPAIR branch as unavailable."
125
            - "<pre>itype: [REF]<br/>holdingbranch: [REPAIR]</pre><br/>  - would mark all reference items AND items at the REPAIR branch as unavailable."
126
        -
127
            - pref: OPACDisplayRecordCount
128
              type: boolean
129
              default: 0
130
              choices:
131
                  1: Show
132
                  0: "Don't show"
133
            - the number of records next to search links in the bibliographic record detail page in the OPAC.
126
    Search form:
134
    Search form:
127
        -
135
        -
128
            - pref: LoadSearchHistoryToTheFirstLoggedUser
136
            - pref: LoadSearchHistoryToTheFirstLoggedUser
Lines 398-409 Searching: Link Here
398
              choices:
406
              choices:
399
                  1: Show
407
                  1: Show
400
                  0: "Don't show"
408
                  0: "Don't show"
401
            - search suggestions in the staff interface when using Elasticsearch.
409
            - search suggestions in the staff interface when using Elasticsearch.
402
        -
403
            - pref: OPACDisplayRecordCount
404
              type: boolean
405
              default: 0
406
              choices:
407
                  1: Show
408
                  0: "Don't show"
409
            - the number of records next to search links in the bibliographic record detail page in the OPAC.
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/opac-display-record-count.js (-3 / +4 lines)
Lines 7-13 var es_builder = { Link Here
7
    'Provider' : 'provider',
7
    'Provider' : 'provider',
8
    'se,phr' : 'title-series',
8
    'se,phr' : 'title-series',
9
    'au' : 'author',
9
    'au' : 'author',
10
    'su,complete-subfield' : 'subject'
10
    'su,complete-subfield' : 'subject',
11
    'su' : 'subject',
12
    'copydate': 'copydate',
11
}
13
}
12
var not_symbols = {
14
var not_symbols = {
13
    '\'':'%27',
15
    '\'':'%27',
Lines 63-69 function NumberResultsRecord(){ Link Here
63
    url: url_request + JSON.stringify(json_data) + '&key=' + key_display,
65
    url: url_request + JSON.stringify(json_data) + '&key=' + key_display,
64
    success: function (data) {
66
    success: function (data) {
65
        jQuery.each( all_link, function( i, val ) {
67
        jQuery.each( all_link, function( i, val ) {
66
            $(val).after("&nbsp;<span style=\"color:black\"><b>["+data[i]+"]</b></span>");
68
            $(val).after("&nbsp;<span style=\"color:black\"><b>["+data[i].value+"]</b></span>");
67
        });
69
        });
68
    },
70
    },
69
    error: function (data) {
71
    error: function (data) {
70
- 

Return to bug 27428