3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2017 Rijksmuseum
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25 use C4::Auth qw( get_template_and_user );
26 use C4::Output qw( output_html_with_http_headers );
27 use Koha::BiblioFrameworks;
29 use Koha::MarcSubfieldStructures;
33 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
35 template_name => "admin/koha2marclinks.tt",
38 flagsrequired => { parameters => 'manage_marc_frameworks' },
42 my $schema = Koha::Database->new->schema;
43 my $cache = Koha::Caches->get_instance();
45 # Update data before showing the form
48 if( $input->param('add_field') && $input->request_method eq 'POST' ) {
49 # add a mapping to all frameworks
50 my ($kohafield, $tag, $sub) = split /,/, $input->param('add_field'), 3;
51 my $rs = Koha::MarcSubfieldStructures->search({ tagfield => $tag, tagsubfield => $sub });
53 $rs->update({ kohafield => $kohafield });
55 $template->param( error_add => 1, error_info => "$tag, $sub" );
58 } elsif( $input->param('remove_field') && $input->request_method eq 'POST' ) {
59 # remove a mapping from all frameworks
60 my ($tag, $sub) = split /,/, $input->param('remove_field'), 2;
61 Koha::MarcSubfieldStructures->search({ tagfield => $tag, tagsubfield => $sub })->update({ kohafield => undef });
67 # Clear the cache when needed
69 for( qw| default_value_for_mod_marc- MarcSubfieldStructure- | ) {
70 $cache->clear_from_cache($_);
76 # Koha to MARC mappings are found in only three tables
78 biblioitems => 'Biblioitem',
82 foreach my $tbl ( sort keys %{$dbix_map} ) {
84 map { "$tbl.$_" } $schema->source( $dbix_map->{$tbl} )->columns;
86 my $kohafields = Koha::MarcSubfieldStructures->search({
88 kohafield => { '>', '' },
91 foreach my $col ( @cols ) {
93 my $readonly = $col =~ /\.(biblio|biblioitem|item)number$/;
94 foreach my $row ( $kohafields->search({ kohafield => $col })->as_list ) {
98 tagfield => $row->tagfield,
99 tagsubfield => $row->tagsubfield,
100 liblibrarian => $row->liblibrarian,
101 readonly => $readonly,
106 readonly => $readonly,
114 output_html_with_http_headers $input, $cookie, $template->output;