4 # Copyright 2000-2002 Katipo Communications
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>.
23 use Date
::Calc
qw( Today );
25 use Koha
::Util
::FrameworkPlugin
qw(wrapper);
32 sub plugin_javascript
{
33 my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
35 <script type='text/javascript'>
36 function Clic$field_number(i) {
39 defaultvalue = document.getElementById(i).value;
41 alert('error when getting '+i);
44 window.open(\"/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_100.pl&index=\"+i+\"&result=\"+defaultvalue,\"unimarc_field_100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
49 return ( $field_number, $res );
55 my $index = $input->param('index');
56 my $result = $input->param('result');
58 my $dbh = C4
::Context
->dbh;
60 my $defaultlanguage = C4
::Context
->preference("UNIMARCField100Language");
61 $defaultlanguage = "fre" if (!$defaultlanguage || length($defaultlanguage) != 3);
63 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
65 template_name
=> "cataloguing/value_builder/unimarc_field_100.tt",
68 flagsrequired
=> { editcatalogue
=> '*' },
72 $result = " d u y0".$defaultlanguage."y50 ba" unless $result;
73 my $f1 = substr( $result, 0, 8 );
75 my @today = Date
::Calc
::Today
();
76 $f1 = $today[0] . sprintf('%02s',$today[1]) . sprintf('%02s',$today[2]);
78 my $f2 = substr( $result, 8, 1 ); $f2 = wrapper
( $f2 ) if $f2;
79 my $f3 = substr( $result, 9, 4 );
80 $f3='' if $f3 eq ' '; # empty publication year if only spaces, otherwise it's hard to fill the field
81 my $f4 = substr( $result, 13, 4 );
83 my $f5 = substr( $result, 17, 1 ); $f5 = wrapper
( $f5 ) if $f5;
84 my $f6 = substr( $result, 18, 1 ); $f6 = wrapper
( $f6 ) if $f6;
85 my $f7 = substr( $result, 19, 1 ); $f7 = wrapper
( $f7 ) if $f7;
86 my $f8 = substr( $result, 20, 1 );
87 my $f9 = substr( $result, 21, 1 );
88 my $f10 = substr( $result, 22, 3 );
89 my $f11 = substr( $result, 25, 1 );
90 my $f12 = substr( $result, 26, 2 );
91 my $f13 = substr( $result, 28, 2 );
92 my $f14 = substr( $result, 30, 4 );
93 my $f15 = substr( $result, 34, 2 ); $f15 = wrapper
( $f15 ) if $f15;
113 output_html_with_http_headers
$input, $cookie, $template->output;