Bug 9302: Use patron-title.inc
[koha.git] / acqui / check_uniqueness.pl
blob70d95ddd7b4ec57ae603f2c153a441e60b7b48ac
1 #!/usr/bin/perl
3 # Copyright 2011 BibLibre SARL
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 # This script search in items table if a value for a given field exists.
21 # It is used in check_additem (additem.js)
22 # Parameters are a list of 'field', which must be field names in items table
23 # and a list of 'value', which are the corresponding value to check
24 # Eg. @field = ('barcode', 'barcode', 'stocknumber')
25 # @value = ('1234', '1235', 'ABC')
26 # The script will check if there is already an item with barcode '1234',
27 # then an item with barcode '1235', and finally check if there is an item
28 # with stocknumber 'ABC'
29 # It returns a JSON string which contains what have been found
30 # Eg. { barcode: ['1234', '1235'], stocknumber: ['ABC'] }
32 use Modern::Perl;
34 use CGI qw ( -utf8 );
35 use JSON;
36 use C4::Output;
37 use C4::Items;
39 my $input = new CGI;
40 my @field = $input->multi_param('field[]');
41 my @value = $input->multi_param('value[]');
43 my $r = {};
44 my $i = 0;
45 for ( my $i=0; $i<@field; $i++ ) {
46 my $items = C4::Items::SearchItemsByField($field[$i], $value[$i]);
48 if ( @$items ) {
49 push @{ $r->{$field[$i]} }, $value[$i];
53 output_with_http_headers $input, undef, to_json($r), 'json';