Merge remote-tracking branch 'origin/new/bug_7729'
[koha.git] / acqui / check_uniqueness.pl
1 #!/usr/bin/perl
2
3 # Copyright 2011 BibLibre SARL
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
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'] }
31
32 use Modern::Perl;
33
34 use CGI;
35 use JSON;
36 use C4::Output;
37 use C4::Items;
38
39 my $input = new CGI;
40 my @field = $input->param('field');
41 my @value = $input->param('value');
42
43 my $r = {};
44 my $i = 0;
45 for ( my $i=0; $i<@field; $i++ ) {
46     my $items = C4::Items::SearchItems($field[$i], $value[$i]);
47
48     if ( @$items ) {
49         push @{ $r->{$field[$i]} }, $value[$i];
50     }
51 }
52
53 output_with_http_headers $input, undef, to_json($r), 'json';