2 # Copyright 2009 SARL BibLibre
3 # Copyright 2017 Koha Development Team
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>.
26 use Koha
::BiblioFrameworks
;
27 use Koha
::FieldMappings
;
31 my $frameworkcode = $query->param('framework') || "";
32 my $field = $query->param('fieldname');
33 my $fieldcode = $query->param('marcfield');
34 my $subfieldcode = $query->param('marcsubfield');
35 my $op = $query->param('op') || q{};
36 my $id = $query->param('id');
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
40 template_name
=> "admin/fieldmapping.tt",
44 flagsrequired
=> { parameters
=> 'manage_keywords2marc_mappings' },
49 # FIXME Add exceptions
50 if ( $op eq "delete" and $id ) {
51 Koha
::FieldMappings
->find($id)->delete;
52 } elsif ( $field and $fieldcode ) {
53 my $params = { frameworkcode
=> $frameworkcode, field
=> $field, fieldcode
=> $fieldcode, subfieldcode
=> $subfieldcode };
54 my $exists = Koha
::FieldMappings
->search( $params )->count;;
56 Koha
::FieldMapping
->new( $params )->store;
60 my $fields = Koha
::FieldMappings
->search({ frameworkcode
=> $frameworkcode });
62 my $frameworks = Koha
::BiblioFrameworks
->search({}, { order_by
=> ['frameworktext'] });
63 my $framework = $frameworks->search( { frameworkcode
=> $frameworkcode } )->next;
65 frameworks
=> $frameworks,
66 framework
=> $framework,
70 output_html_with_http_headers
$query, $cookie, $template->output;