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>.
28 use Koha
::BiblioFrameworks
;
30 use Koha
::MarcSubfieldStructures
;
34 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
36 template_name
=> "admin/koha2marclinks.tt",
40 flagsrequired
=> { parameters
=> 'parameters_remaining_permissions' },
45 my $schema = Koha
::Database
->new->schema;
46 my $cache = Koha
::Caches
->get_instance();
48 # Update data before showing the form
51 if( $input->param('add_field') && $input->request_method eq 'POST' ) {
52 # add a mapping to all frameworks
53 my ($kohafield, $tag, $sub) = split /,/, $input->param('add_field'), 3;
54 my $rs = Koha
::MarcSubfieldStructures
->search({ tagfield
=> $tag, tagsubfield
=> $sub });
56 $rs->update({ kohafield
=> $kohafield });
58 $template->param( error_add
=> 1, error_info
=> "$tag, $sub" );
61 } elsif( $input->param('remove_field') && $input->request_method eq 'POST' ) {
62 # remove a mapping from all frameworks
63 my ($tag, $sub) = split /,/, $input->param('remove_field'), 2;
64 Koha
::MarcSubfieldStructures
->search({ tagfield
=> $tag, tagsubfield
=> $sub })->update({ kohafield
=> undef });
70 # Clear the cache when needed
72 for( qw
| default_value_for_mod_marc
- MarcSubfieldStructure
- | ) {
73 $cache->clear_from_cache($_);
79 # Koha to MARC mappings are found in only three tables
81 biblioitems
=> 'Biblioitem',
85 foreach my $tbl ( sort keys %{$dbix_map} ) {
87 map { "$tbl.$_" } $schema->source( $dbix_map->{$tbl} )->columns;
89 my $kohafields = Koha
::MarcSubfieldStructures
->search({
91 kohafield
=> { '>', '' },
94 foreach my $col ( @cols ) {
96 my $readonly = $col =~ /\.(biblio|biblioitem|item)number$/;
97 foreach my $row ( $kohafields->search({ kohafield
=> $col }) ) {
101 tagfield
=> $row->tagfield,
102 tagsubfield
=> $row->tagsubfield,
103 liblibrarian
=> $row->liblibrarian,
104 readonly
=> $readonly,
109 readonly
=> $readonly,
117 output_html_with_http_headers
$input, $cookie, $template->output;