3 # Copyright 2011 BibLibre SARL
4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25 Define mappings for a given set.
26 Mappings are conditions that define which biblio is included in which set.
27 A condition is in the form 200$a = 'abc'.
28 Multiple conditions can be defined for a given set. In this case,
29 the OR operator will be applied.
43 my ($template, $loggedinuser, $cookie, $flags) = get_template_and_user
( {
44 template_name
=> 'admin/oai_set_mappings.tt',
47 flagsrequired
=> { 'parameters' => 'manage_oai_sets' },
51 my $id = $input->param('id');
52 my $op = $input->param('op');
54 if($op && $op eq "save") {
55 my @marcfields = $input->multi_param('marcfield');
56 my @marcsubfields = $input->multi_param('marcsubfield');
57 my @operators = $input->multi_param('operator');
58 my @marcvalues = $input->multi_param('marcvalue');
59 my @ruleoperators = $input->multi_param('rule_operator');
60 my @ruleorders = $input->multi_param('rule_order');
64 while($i < @marcfields and $i < @marcsubfields and $i < @marcvalues) {
65 if($marcfields[$i] and $marcsubfields[$i]) {
67 marcfield
=> $marcfields[$i],
68 marcsubfield
=> $marcsubfields[$i],
69 operator
=> $operators[$i],
70 marcvalue
=> $marcvalues[$i],
71 rule_operator
=> $ruleoperators[$i],
77 $mappings[0]{'rule_operator'} = undef if (@mappings);
78 ModOAISetMappings
($id, \
@mappings);
79 $template->param(mappings_saved
=> 1);
82 my $set = GetOAISet
($id);
83 my $mappings = GetOAISetMappings
($id);
87 setName
=> $set->{'name'},
88 setSpec
=> $set->{'spec'},
89 mappings
=> $mappings,
92 output_html_with_http_headers
$input, $cookie, $template->output;