Bug 18309: UNIMARC update from IFLA - authority (fr) (SAUT)
[koha.git] / cataloguing / addbiblio.pl
blob00b250190a9190542e0aa99d64d2f2fabdacd5bd
1 #!/usr/bin/perl
4 # Copyright 2000-2002 Katipo Communications
5 # Copyright 2004-2010 BibLibre
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use Modern::Perl;
24 use CGI q(-utf8);
25 use C4::Output;
26 use C4::Auth;
27 use C4::Biblio;
28 use C4::Search;
29 use C4::AuthoritiesMarc;
30 use C4::Context;
31 use MARC::Record;
32 use C4::Log;
33 use C4::Koha;
34 use C4::ClassSource;
35 use C4::ImportBatch;
36 use C4::Charset;
37 use Koha::BiblioFrameworks;
38 use Koha::DateUtils;
40 use Koha::ItemTypes;
41 use Koha::Libraries;
43 use Koha::BiblioFrameworks;
45 use Date::Calc qw(Today);
46 use MARC::File::USMARC;
47 use MARC::File::XML;
48 use URI::Escape;
50 if ( C4::Context->preference('marcflavour') eq 'UNIMARC' ) {
51 MARC::File::XML->default_record_format('UNIMARC');
54 our($tagslib,$authorised_values_sth,$is_a_modif,$usedTagsLib,$mandatory_z3950);
56 =head1 FUNCTIONS
58 =head2 MARCfindbreeding
60 $record = MARCfindbreeding($breedingid);
62 Look up the import record repository for the record with
63 record with id $breedingid. If found, returns the decoded
64 MARC::Record; otherwise, -1 is returned (FIXME).
65 Returns as second parameter the character encoding.
67 =cut
69 sub MARCfindbreeding {
70 my ( $id ) = @_;
71 my ($marc, $encoding) = GetImportRecordMarc($id);
72 # remove the - in isbn, koha store isbn without any -
73 if ($marc) {
74 my $record = MARC::Record->new_from_usmarc($marc);
75 my ($isbnfield,$isbnsubfield) = GetMarcFromKohaField( 'biblioitems.isbn' );
76 if ( $record->field($isbnfield) ) {
77 foreach my $field ( $record->field($isbnfield) ) {
78 foreach my $subfield ( $field->subfield($isbnsubfield) ) {
79 my $newisbn = $field->subfield($isbnsubfield);
80 $newisbn =~ s/-//g;
81 $field->update( $isbnsubfield => $newisbn );
85 # fix the unimarc 100 coded field (with unicode information)
86 if (C4::Context->preference('marcflavour') eq 'UNIMARC' && $record->subfield(100,'a')) {
87 my $f100a=$record->subfield(100,'a');
88 my $f100 = $record->field(100);
89 my $f100temp = $f100->as_string;
90 $record->delete_field($f100);
91 if ( length($f100temp) > 28 ) {
92 substr( $f100temp, 26, 2, "50" );
93 $f100->update( 'a' => $f100temp );
94 my $f100 = MARC::Field->new( '100', '', '', 'a' => $f100temp );
95 $record->insert_fields_ordered($f100);
99 if ( !defined(ref($record)) ) {
100 return -1;
102 else {
103 # normalize author : UNIMARC specific...
104 if ( C4::Context->preference("z3950NormalizeAuthor")
105 and C4::Context->preference("z3950AuthorAuthFields")
106 and C4::Context->preference("marcflavour") eq 'UNIMARC' )
108 my ( $tag, $subfield ) = GetMarcFromKohaField( "biblio.author" );
110 my $auth_fields =
111 C4::Context->preference("z3950AuthorAuthFields");
112 my @auth_fields = split /,/, $auth_fields;
113 my $field;
115 if ( $record->field($tag) ) {
116 foreach my $tmpfield ( $record->field($tag)->subfields ) {
118 my $subfieldcode = shift @$tmpfield;
119 my $subfieldvalue = shift @$tmpfield;
120 if ($field) {
121 $field->add_subfields(
122 "$subfieldcode" => $subfieldvalue )
123 if ( $subfieldcode ne $subfield );
125 else {
126 $field =
127 MARC::Field->new( $tag, "", "",
128 $subfieldcode => $subfieldvalue )
129 if ( $subfieldcode ne $subfield );
133 $record->delete_field( $record->field($tag) );
134 foreach my $fieldtag (@auth_fields) {
135 next unless ( $record->field($fieldtag) );
136 my $lastname = $record->field($fieldtag)->subfield('a');
137 my $firstname = $record->field($fieldtag)->subfield('b');
138 my $title = $record->field($fieldtag)->subfield('c');
139 my $number = $record->field($fieldtag)->subfield('d');
140 if ($title) {
141 $field->add_subfields(
142 "$subfield" => ucfirst($title) . " "
143 . ucfirst($firstname) . " "
144 . $number );
146 else {
147 $field->add_subfields(
148 "$subfield" => ucfirst($firstname) . ", "
149 . ucfirst($lastname) );
152 $record->insert_fields_ordered($field);
154 return $record, $encoding;
157 return -1;
160 =head2 build_authorized_values_list
162 =cut
164 sub build_authorized_values_list {
165 my ( $tag, $subfield, $value, $dbh, $authorised_values_sth,$index_tag,$index_subfield ) = @_;
167 my @authorised_values;
168 my %authorised_lib;
170 # builds list, depending on authorised value...
172 #---- branch
173 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
174 my $libraries = Koha::Libraries->search_filtered({}, {order_by => ['branchname']});
175 while ( my $l = $libraries->next ) {
176 push @authorised_values, $l->branchcode;;
177 $authorised_lib{$l->branchcode} = $l->branchname;
180 elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value} eq "itemtypes" ) {
181 push @authorised_values, "";
183 my $itemtype;
184 my $itemtypes = Koha::ItemTypes->search_with_localization;
185 while ( $itemtype = $itemtypes->next ) {
186 push @authorised_values, $itemtype->itemtype;
187 $authorised_lib{$itemtype->itemtype} = $itemtype->translated_description;
189 $value = $itemtype unless ($value);
191 elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value} eq "cn_source" ) {
192 push @authorised_values, "";
194 my $class_sources = GetClassSources();
196 my $default_source = C4::Context->preference("DefaultClassificationSource");
198 foreach my $class_source (sort keys %$class_sources) {
199 next unless $class_sources->{$class_source}->{'used'} or
200 ($value and $class_source eq $value) or
201 ($class_source eq $default_source);
202 push @authorised_values, $class_source;
203 $authorised_lib{$class_source} = $class_sources->{$class_source}->{'description'};
205 $value = $default_source unless $value;
207 else {
208 my $branch_limit = C4::Context->userenv ? C4::Context->userenv->{"branch"} : "";
209 $authorised_values_sth->execute(
210 $tagslib->{$tag}->{$subfield}->{authorised_value},
211 $branch_limit ? $branch_limit : (),
214 push @authorised_values, "";
216 while ( my ( $value, $lib ) = $authorised_values_sth->fetchrow_array ) {
217 push @authorised_values, $value;
218 $authorised_lib{$value} = $lib;
221 $authorised_values_sth->finish;
222 return {
223 type => 'select',
224 id => "tag_".$tag."_subfield_".$subfield."_".$index_tag."_".$index_subfield,
225 name => "tag_".$tag."_subfield_".$subfield."_".$index_tag."_".$index_subfield,
226 default => $value,
227 values => \@authorised_values,
228 labels => \%authorised_lib,
233 =head2 CreateKey
235 Create a random value to set it into the input name
237 =cut
239 sub CreateKey {
240 return int(rand(1000000));
243 =head2 GetMandatoryFieldZ3950
245 This function returns a hashref which contains all mandatory field
246 to search with z3950 server.
248 =cut
250 sub GetMandatoryFieldZ3950 {
251 my $frameworkcode = shift;
252 my @isbn = GetMarcFromKohaField( 'biblioitems.isbn' );
253 my @title = GetMarcFromKohaField( 'biblio.title' );
254 my @author = GetMarcFromKohaField( 'biblio.author' );
255 my @issn = GetMarcFromKohaField( 'biblioitems.issn' );
256 my @lccn = GetMarcFromKohaField( 'biblioitems.lccn' );
258 return {
259 $isbn[0].$isbn[1] => 'isbn',
260 $title[0].$title[1] => 'title',
261 $author[0].$author[1] => 'author',
262 $issn[0].$issn[1] => 'issn',
263 $lccn[0].$lccn[1] => 'lccn',
267 =head2 create_input
269 builds the <input ...> entry for a subfield.
271 =cut
273 sub create_input {
274 my ( $tag, $subfield, $value, $index_tag, $tabloop, $rec, $authorised_values_sth,$cgi ) = @_;
276 my $index_subfield = CreateKey(); # create a specifique key for each subfield
278 # if there is no value provided but a default value in parameters, get it
279 if ( $value eq '' ) {
280 $value = $tagslib->{$tag}->{$subfield}->{defaultvalue} // q{};
282 # get today date & replace <<YYYY>>, <<MM>>, <<DD>> if provided in the default value
283 my $today_dt = dt_from_string;
284 my $year = $today_dt->strftime('%Y');
285 my $month = $today_dt->strftime('%m');
286 my $day = $today_dt->strftime('%d');
287 $value =~ s/<<YYYY>>/$year/g;
288 $value =~ s/<<MM>>/$month/g;
289 $value =~ s/<<DD>>/$day/g;
290 # And <<USER>> with surname (?)
291 my $username=(C4::Context->userenv?C4::Context->userenv->{'surname'}:"superlibrarian");
292 $value=~s/<<USER>>/$username/g;
295 my $dbh = C4::Context->dbh;
297 # map '@' as "subfield" label for fixed fields
298 # to something that's allowed in a div id.
299 my $id_subfield = $subfield;
300 $id_subfield = "00" if $id_subfield eq "@";
302 my %subfield_data = (
303 tag => $tag,
304 subfield => $id_subfield,
305 marc_lib => $tagslib->{$tag}->{$subfield}->{lib},
306 tag_mandatory => $tagslib->{$tag}->{mandatory},
307 mandatory => $tagslib->{$tag}->{$subfield}->{mandatory},
308 repeatable => $tagslib->{$tag}->{$subfield}->{repeatable},
309 kohafield => $tagslib->{$tag}->{$subfield}->{kohafield},
310 index => $index_tag,
311 id => "tag_".$tag."_subfield_".$id_subfield."_".$index_tag."_".$index_subfield,
312 value => $value,
313 maxlength => $tagslib->{$tag}->{$subfield}->{maxlength},
314 random => CreateKey(),
317 if(exists $mandatory_z3950->{$tag.$subfield}){
318 $subfield_data{z3950_mandatory} = $mandatory_z3950->{$tag.$subfield};
320 # Subfield is hidden depending of hidden and mandatory flag, and is always
321 # shown if it contains anything or if its field is mandatory.
322 my $tdef = $tagslib->{$tag};
323 $subfield_data{visibility} = "display:none;"
324 if $tdef->{$subfield}->{hidden} % 2 == 1 &&
325 $value eq '' &&
326 !$tdef->{$subfield}->{mandatory} &&
327 !$tdef->{mandatory};
328 # expand all subfields of 773 if there is a host item provided in the input
329 $subfield_data{visibility} ="" if ($tag eq 773 and $cgi->param('hostitemnumber'));
332 # it's an authorised field
333 if ( $tagslib->{$tag}->{$subfield}->{authorised_value} ) {
334 $subfield_data{marc_value} =
335 build_authorized_values_list( $tag, $subfield, $value, $dbh,
336 $authorised_values_sth,$index_tag,$index_subfield );
338 # it's a subfield $9 linking to an authority record - see bug 2206
340 elsif ($subfield eq "9" and
341 exists($tagslib->{$tag}->{'a'}->{authtypecode}) and
342 defined($tagslib->{$tag}->{'a'}->{authtypecode}) and
343 $tagslib->{$tag}->{'a'}->{authtypecode} ne '') {
345 $subfield_data{marc_value} = {
346 type => 'text',
347 id => $subfield_data{id},
348 name => $subfield_data{id},
349 value => $value,
350 size => 5,
351 maxlength => $subfield_data{maxlength},
352 readonly => 1,
355 # it's a thesaurus / authority field
357 elsif ( $tagslib->{$tag}->{$subfield}->{authtypecode} ) {
358 # when authorities auto-creation is allowed, do not set readonly
359 my $is_readonly = !C4::Context->preference("BiblioAddsAuthorities");
361 $subfield_data{marc_value} = {
362 type => 'text',
363 id => $subfield_data{id},
364 name => $subfield_data{id},
365 value => $value,
366 size => 67,
367 maxlength => $subfield_data{maxlength},
368 readonly => ($is_readonly) ? 1 : 0,
369 authtype => $tagslib->{$tag}->{$subfield}->{authtypecode},
372 # it's a plugin field
373 } elsif ( $tagslib->{$tag}->{$subfield}->{'value_builder'} ) {
374 require Koha::FrameworkPlugin;
375 my $plugin = Koha::FrameworkPlugin->new( {
376 name => $tagslib->{$tag}->{$subfield}->{'value_builder'},
378 my $pars= { dbh => $dbh, record => $rec, tagslib => $tagslib,
379 id => $subfield_data{id}, tabloop => $tabloop };
380 $plugin->build( $pars );
381 if( !$plugin->errstr ) {
382 $subfield_data{marc_value} = {
383 type => 'text_complex',
384 id => $subfield_data{id},
385 name => $subfield_data{id},
386 value => $value,
387 size => 67,
388 maxlength => $subfield_data{maxlength},
389 javascript => $plugin->javascript,
390 noclick => $plugin->noclick,
392 } else {
393 warn $plugin->errstr;
394 # supply default input form
395 $subfield_data{marc_value} = {
396 type => 'text',
397 id => $subfield_data{id},
398 name => $subfield_data{id},
399 value => $value,
400 size => 67,
401 maxlength => $subfield_data{maxlength},
402 readonly => 0,
406 # it's an hidden field
407 } elsif ( $tag eq '' ) {
408 $subfield_data{marc_value} = {
409 type => 'hidden',
410 id => $subfield_data{id},
411 name => $subfield_data{id},
412 value => $value,
413 size => 67,
414 maxlength => $subfield_data{maxlength},
418 else {
419 # it's a standard field
420 if (
421 length($value) > 100
423 ( C4::Context->preference("marcflavour") eq "UNIMARC" && $tag >= 300
424 and $tag < 400 && $subfield eq 'a' )
425 or ( $tag >= 500
426 and $tag < 600
427 && C4::Context->preference("marcflavour") eq "MARC21" )
430 $subfield_data{marc_value} = {
431 type => 'textarea',
432 id => $subfield_data{id},
433 name => $subfield_data{id},
434 value => $value,
438 else {
439 $subfield_data{marc_value} = {
440 type => 'text',
441 id => $subfield_data{id},
442 name => $subfield_data{id},
443 value => $value,
444 size => 67,
445 maxlength => $subfield_data{maxlength},
446 readonly => 0,
451 $subfield_data{'index_subfield'} = $index_subfield;
452 return \%subfield_data;
456 =head2 format_indicator
458 Translate indicator value for output form - specifically, map
459 indicator = ' ' to ''. This is for the convenience of a cataloger
460 using a mouse to select an indicator input.
462 =cut
464 sub format_indicator {
465 my $ind_value = shift;
466 return '' if not defined $ind_value;
467 return '' if $ind_value eq ' ';
468 return $ind_value;
471 sub build_tabs {
472 my ( $template, $record, $dbh, $encoding,$input ) = @_;
474 # fill arrays
475 my @loop_data = ();
476 my $tag;
478 my $branch_limit = C4::Context->userenv ? C4::Context->userenv->{"branch"} : "";
479 my $query = "SELECT authorised_value, lib
480 FROM authorised_values";
481 $query .= qq{ LEFT JOIN authorised_values_branches ON ( id = av_id )} if $branch_limit;
482 $query .= " WHERE category = ?";
483 $query .= " AND ( branchcode = ? OR branchcode IS NULL )" if $branch_limit;
484 $query .= " GROUP BY lib ORDER BY lib, lib_opac";
485 my $authorised_values_sth = $dbh->prepare( $query );
487 # in this array, we will push all the 10 tabs
488 # to avoid having 10 tabs in the template : they will all be in the same BIG_LOOP
489 my @BIG_LOOP;
490 my %seen;
491 my @tab_data; # all tags to display
493 my $max_num_tab=-1;
494 my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField( "items.itemnumber" );
495 foreach my $used ( @$usedTagsLib ){
497 push @tab_data,$used->{tagfield} if not $seen{$used->{tagfield}};
498 $seen{$used->{tagfield}}++;
500 if ( $used->{tab} > -1
501 && $used->{tab} >= $max_num_tab
502 && $used->{tagfield} ne $itemtag )
504 $max_num_tab = $used->{tab};
507 if($max_num_tab >= 9){
508 $max_num_tab = 9;
510 # loop through each tab 0 through 9
511 for ( my $tabloop = 0 ; $tabloop <= $max_num_tab ; $tabloop++ ) {
512 my @loop_data = (); #innerloop in the template.
513 my $i = 0;
514 foreach my $tag (@tab_data) {
515 $i++;
516 next if ! $tag;
517 my ($indicator1, $indicator2);
518 my $index_tag = CreateKey;
520 # if MARC::Record is not empty =>use it as master loop, then add missing subfields that should be in the tab.
521 # if MARC::Record is empty => use tab as master loop.
522 if ( $record ne -1 && ( $record->field($tag) || $tag eq '000' ) ) {
523 my @fields;
524 if ( $tag ne '000' ) {
525 @fields = $record->field($tag);
527 else {
528 push @fields, $record->leader(); # if tag == 000
530 # loop through each field
531 foreach my $field (@fields) {
533 my @subfields_data;
534 if ( $tag < 10 ) {
535 my ( $value, $subfield );
536 if ( $tag ne '000' ) {
537 $value = $field->data();
538 $subfield = "@";
540 else {
541 $value = $field;
542 $subfield = '@';
544 next if ( $tagslib->{$tag}->{$subfield}->{tab} ne $tabloop );
545 next
546 if ( $tagslib->{$tag}->{$subfield}->{kohafield} eq
547 'biblio.biblionumber' );
548 push(
549 @subfields_data,
550 &create_input(
551 $tag, $subfield, $value, $index_tag, $tabloop, $record,
552 $authorised_values_sth,$input
556 else {
557 my @subfields = $field->subfields();
558 foreach my $subfieldcount ( 0 .. $#subfields ) {
559 my $subfield = $subfields[$subfieldcount][0];
560 my $value = $subfields[$subfieldcount][1];
561 next if ( length $subfield != 1 );
562 next if ( $tagslib->{$tag}->{$subfield}->{tab} ne $tabloop );
563 push(
564 @subfields_data,
565 &create_input(
566 $tag, $subfield, $value, $index_tag, $tabloop,
567 $record, $authorised_values_sth,$input
573 # now, loop again to add parameter subfield that are not in the MARC::Record
574 foreach my $subfield ( sort( keys %{ $tagslib->{$tag} } ) )
576 next if ( length $subfield != 1 );
577 next if ( $tagslib->{$tag}->{$subfield}->{tab} ne $tabloop );
578 next if ( $tag < 10 );
579 next
580 if ( ( $tagslib->{$tag}->{$subfield}->{hidden} <= -4 )
581 or ( $tagslib->{$tag}->{$subfield}->{hidden} >= 5 ) )
582 and not ( $subfield eq "9" and
583 exists($tagslib->{$tag}->{'a'}->{authtypecode}) and
584 defined($tagslib->{$tag}->{'a'}->{authtypecode}) and
585 $tagslib->{$tag}->{'a'}->{authtypecode} ne ""
587 ; #check for visibility flag
588 # if subfield is $9 in a field whose $a is authority-controlled,
589 # always include in the form regardless of the hidden setting - bug 2206
590 next if ( defined( $field->subfield($subfield) ) );
591 push(
592 @subfields_data,
593 &create_input(
594 $tag, $subfield, '', $index_tag, $tabloop, $record,
595 $authorised_values_sth,$input
599 if ( $#subfields_data >= 0 ) {
600 # build the tag entry.
601 # note that the random() field is mandatory. Otherwise, on repeated fields, you'll
602 # have twice the same "name" value, and cgi->param() will return only one, making
603 # all subfields to be merged in a single field.
604 my %tag_data = (
605 tag => $tag,
606 index => $index_tag,
607 tag_lib => $tagslib->{$tag}->{lib},
608 repeatable => $tagslib->{$tag}->{repeatable},
609 mandatory => $tagslib->{$tag}->{mandatory},
610 subfield_loop => \@subfields_data,
611 fixedfield => $tag < 10?1:0,
612 random => CreateKey,
614 if ($tag >= 10){ # no indicator for 00x tags
615 $tag_data{indicator1} = format_indicator($field->indicator(1)),
616 $tag_data{indicator2} = format_indicator($field->indicator(2)),
618 push( @loop_data, \%tag_data );
620 } # foreach $field end
622 # if breeding is empty
624 else {
625 my @subfields_data;
626 foreach my $subfield ( sort( keys %{ $tagslib->{$tag} } ) ) {
627 next if ( length $subfield != 1 );
628 next
629 if ( ( $tagslib->{$tag}->{$subfield}->{hidden} <= -4 )
630 or ( $tagslib->{$tag}->{$subfield}->{hidden} >= 5 ) )
631 and not ( $subfield eq "9" and
632 exists($tagslib->{$tag}->{'a'}->{authtypecode}) and
633 defined($tagslib->{$tag}->{'a'}->{authtypecode}) and
634 $tagslib->{$tag}->{'a'}->{authtypecode} ne ""
636 ; #check for visibility flag
637 # if subfield is $9 in a field whose $a is authority-controlled,
638 # always include in the form regardless of the hidden setting - bug 2206
639 next
640 if ( $tagslib->{$tag}->{$subfield}->{tab} ne $tabloop );
641 push(
642 @subfields_data,
643 &create_input(
644 $tag, $subfield, '', $index_tag, $tabloop, $record,
645 $authorised_values_sth,$input
649 if ( $#subfields_data >= 0 ) {
650 my %tag_data = (
651 tag => $tag,
652 index => $index_tag,
653 tag_lib => $tagslib->{$tag}->{lib},
654 repeatable => $tagslib->{$tag}->{repeatable},
655 mandatory => $tagslib->{$tag}->{mandatory},
656 indicator1 => ( $indicator1 || $tagslib->{$tag}->{ind1_defaultvalue} ), #if not set, try to load the default value
657 indicator2 => ( $indicator2 || $tagslib->{$tag}->{ind2_defaultvalue} ), #use short-circuit operator for efficiency
658 subfield_loop => \@subfields_data,
659 tagfirstsubfield => $subfields_data[0],
660 fixedfield => $tag < 10?1:0,
663 push @loop_data, \%tag_data ;
667 if ( $#loop_data >= 0 ) {
668 push @BIG_LOOP, {
669 number => $tabloop,
670 innerloop => \@loop_data,
674 $authorised_values_sth->finish;
675 $template->param( BIG_LOOP => \@BIG_LOOP );
678 # ========================
679 # MAIN
680 #=========================
681 my $input = new CGI;
682 my $error = $input->param('error');
683 my $biblionumber = $input->param('biblionumber'); # if biblionumber exists, it's a modif, not a new biblio.
684 my $parentbiblio = $input->param('parentbiblionumber');
685 my $breedingid = $input->param('breedingid');
686 my $z3950 = $input->param('z3950');
687 my $op = $input->param('op') // q{};
688 my $mode = $input->param('mode');
689 my $frameworkcode = $input->param('frameworkcode');
690 my $redirect = $input->param('redirect');
691 my $searchid = $input->param('searchid');
692 my $dbh = C4::Context->dbh;
693 my $hostbiblionumber = $input->param('hostbiblionumber');
694 my $hostitemnumber = $input->param('hostitemnumber');
695 # fast cataloguing datas in transit
696 my $fa_circborrowernumber = $input->param('circborrowernumber');
697 my $fa_barcode = $input->param('barcode');
698 my $fa_branch = $input->param('branch');
699 my $fa_stickyduedate = $input->param('stickyduedate');
700 my $fa_duedatespec = $input->param('duedatespec');
702 my $userflags = 'edit_catalogue';
704 my $changed_framework = $input->param('changed_framework') // q{};
705 $frameworkcode = &GetFrameworkCode($biblionumber)
706 if ( $biblionumber and not( defined $frameworkcode) and $op ne 'addbiblio' );
708 if ($frameworkcode eq 'FA'){
709 $userflags = 'fast_cataloging';
712 $frameworkcode = '' if ( $frameworkcode eq 'Default' );
713 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
715 template_name => "cataloguing/addbiblio.tt",
716 query => $input,
717 type => "intranet",
718 authnotrequired => 0,
719 flagsrequired => { editcatalogue => $userflags },
723 if ($biblionumber){
724 my $does_bib_exist = Koha::Biblios->find($biblionumber);
725 if (!defined $does_bib_exist){
726 $biblionumber = undef;
727 $template->param( bib_doesnt_exist => 1 );
731 if ($frameworkcode eq 'FA'){
732 # We need to grab and set some variables in the template for use on the additems screen
733 $template->param(
734 'circborrowernumber' => $fa_circborrowernumber,
735 'barcode' => $fa_barcode,
736 'branch' => $fa_branch,
737 'stickyduedate' => $fa_stickyduedate,
738 'duedatespec' => $fa_duedatespec,
740 } elsif ( $op ne "delete" &&
741 C4::Context->preference('EnableAdvancedCatalogingEditor') &&
742 C4::Auth::haspermission(C4::Context->userenv->{id},{'editcatalogue'=>'advanced_editor'}) &&
743 $input->cookie( 'catalogue_editor_' . $loggedinuser ) eq 'advanced' &&
744 !$breedingid ) {
745 # Only use the advanced editor for non-fast-cataloging.
746 # breedingid is not handled because those would only come off a Z39.50
747 # search initiated by the basic editor.
748 print $input->redirect( '/cgi-bin/koha/cataloguing/editor.pl' . ( $biblionumber ? ( ($op eq 'duplicate'?'#duplicate/':'#catalog/') . $biblionumber ) : '' ) );
749 exit;
752 my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
753 $template->param(
754 frameworks => $frameworks,
755 breedingid => $breedingid,
758 # ++ Global
759 $tagslib = &GetMarcStructure( 1, $frameworkcode );
760 $usedTagsLib = &GetUsedMarcStructure( $frameworkcode );
761 $mandatory_z3950 = GetMandatoryFieldZ3950($frameworkcode);
762 # -- Global
764 my $record = -1;
765 my $encoding = "";
766 my (
767 $biblionumbertagfield,
768 $biblionumbertagsubfield,
769 $biblioitemnumtagfield,
770 $biblioitemnumtagsubfield,
771 $biblioitemnumber
774 if (($biblionumber) && !($breedingid)){
775 $record = GetMarcBiblio({ biblionumber => $biblionumber });
777 if ($breedingid) {
778 ( $record, $encoding ) = MARCfindbreeding( $breedingid ) ;
781 #populate hostfield if hostbiblionumber is available
782 if ($hostbiblionumber) {
783 my $marcflavour = C4::Context->preference("marcflavour");
784 $record = MARC::Record->new();
785 $record->leader('');
786 my $field =
787 PrepHostMarcField( $hostbiblionumber, $hostitemnumber, $marcflavour );
788 $record->append_fields($field);
791 # This is a child record
792 if ($parentbiblio) {
793 my $marcflavour = C4::Context->preference('marcflavour');
794 $record = MARC::Record->new();
795 SetMarcUnicodeFlag($record, $marcflavour);
796 my $hostfield = prepare_host_field($parentbiblio,$marcflavour);
797 if ($hostfield) {
798 $record->append_fields($hostfield);
802 $is_a_modif = 0;
804 if ($biblionumber) {
805 $is_a_modif = 1;
806 my $title = C4::Context->preference('marcflavour') eq "UNIMARC" ? $record->subfield('200', 'a') : $record->title;
807 $template->param( title => $title );
809 # if it's a modif, retrieve bibli and biblioitem numbers for the future modification of old-DB.
810 ( $biblionumbertagfield, $biblionumbertagsubfield ) =
811 &GetMarcFromKohaField( "biblio.biblionumber" );
812 ( $biblioitemnumtagfield, $biblioitemnumtagsubfield ) =
813 &GetMarcFromKohaField( "biblioitems.biblioitemnumber" );
815 # search biblioitems value
816 my $sth = $dbh->prepare("select biblioitemnumber from biblioitems where biblionumber=?");
817 $sth->execute($biblionumber);
818 ($biblioitemnumber) = $sth->fetchrow;
821 #-------------------------------------------------------------------------------------
822 if ( $op eq "addbiblio" ) {
823 #-------------------------------------------------------------------------------------
824 $template->param(
825 biblionumberdata => $biblionumber,
827 # getting html input
828 my @params = $input->multi_param();
829 $record = TransformHtmlToMarc( $input, 1 );
830 # check for a duplicate
831 my ( $duplicatebiblionumber, $duplicatetitle );
832 if ( !$is_a_modif ) {
833 ( $duplicatebiblionumber, $duplicatetitle ) = FindDuplicate($record);
835 my $confirm_not_duplicate = $input->param('confirm_not_duplicate');
836 # it is not a duplicate (determined either by Koha itself or by user checking it's not a duplicate)
837 if ( !$duplicatebiblionumber or $confirm_not_duplicate ) {
838 my $oldbibitemnum;
839 if ( $is_a_modif ) {
840 ModBiblio( $record, $biblionumber, $frameworkcode );
842 else {
843 ( $biblionumber, $oldbibitemnum ) = AddBiblio( $record, $frameworkcode );
845 if ($redirect eq "items" || ($mode ne "popup" && !$is_a_modif && $redirect ne "view" && $redirect ne "just_save")){
846 if ($frameworkcode eq 'FA'){
847 print $input->redirect(
848 '/cgi-bin/koha/cataloguing/additem.pl?'
849 .'biblionumber='.$biblionumber
850 .'&frameworkcode='.$frameworkcode
851 .'&circborrowernumber='.$fa_circborrowernumber
852 .'&branch='.$fa_branch
853 .'&barcode='.uri_escape_utf8($fa_barcode)
854 .'&stickyduedate='.$fa_stickyduedate
855 .'&duedatespec='.$fa_duedatespec
857 exit;
859 else {
860 print $input->redirect(
861 "/cgi-bin/koha/cataloguing/additem.pl?biblionumber=$biblionumber&frameworkcode=$frameworkcode&searchid=$searchid"
863 exit;
866 elsif(($is_a_modif || $redirect eq "view") && $redirect ne "just_save"){
867 my $defaultview = C4::Context->preference('IntranetBiblioDefaultView');
868 my $views = { C4::Search::enabled_staff_search_views };
869 if ($defaultview eq 'isbd' && $views->{can_view_ISBD}) {
870 print $input->redirect("/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=$biblionumber&searchid=$searchid");
871 } elsif ($defaultview eq 'marc' && $views->{can_view_MARC}) {
872 print $input->redirect("/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=$biblionumber&frameworkcode=$frameworkcode&searchid=$searchid");
873 } elsif ($defaultview eq 'labeled_marc' && $views->{can_view_labeledMARC}) {
874 print $input->redirect("/cgi-bin/koha/catalogue/labeledMARCdetail.pl?biblionumber=$biblionumber&searchid=$searchid");
875 } else {
876 print $input->redirect("/cgi-bin/koha/catalogue/detail.pl?biblionumber=$biblionumber&searchid=$searchid");
878 exit;
881 elsif ($redirect eq "just_save"){
882 my $tab = $input->param('current_tab');
883 print $input->redirect("/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=$biblionumber&framework=$frameworkcode&tab=$tab&searchid=$searchid");
885 else {
886 $template->param(
887 biblionumber => $biblionumber,
888 done =>1,
889 popup =>1
891 if ( $record ne '-1' ) {
892 my $title = C4::Context->preference('marcflavour') eq "UNIMARC" ? $record->subfield('200', 'a') : $record->title;
893 $template->param( title => $title );
895 $template->param(
896 popup => $mode,
897 itemtype => $frameworkcode,
899 output_html_with_http_headers $input, $cookie, $template->output;
900 exit;
902 } else {
903 # it may be a duplicate, warn the user and do nothing
904 build_tabs ($template, $record, $dbh,$encoding,$input);
905 $template->param(
906 biblionumber => $biblionumber,
907 biblioitemnumber => $biblioitemnumber,
908 duplicatebiblionumber => $duplicatebiblionumber,
909 duplicatebibid => $duplicatebiblionumber,
910 duplicatetitle => $duplicatetitle,
914 elsif ( $op eq "delete" ) {
916 my $error = &DelBiblio($biblionumber);
917 if ($error) {
918 warn "ERROR when DELETING BIBLIO $biblionumber : $error";
919 print "Content-Type: text/html\n\n<html><body><h1>ERROR when DELETING BIBLIO $biblionumber : $error</h1></body></html>";
920 exit;
923 print $input->redirect('/cgi-bin/koha/catalogue/search.pl');
924 exit;
926 } else {
927 #----------------------------------------------------------------------------
928 # If we're in a duplication case, we have to set to "" the biblionumber
929 # as we'll save the biblio as a new one.
930 $template->param(
931 biblionumberdata => $biblionumber,
932 op => $op,
934 if ( $op eq "duplicate" ) {
935 $biblionumber = "";
938 if($changed_framework eq "changed"){
939 $record = TransformHtmlToMarc( $input, 1 );
941 elsif( $record ne -1 ) {
942 #FIXME: it's kind of silly to go from MARC::Record to MARC::File::XML and then back again just to fix the encoding
943 eval {
944 my $uxml = $record->as_xml;
945 MARC::Record::default_record_format("UNIMARC")
946 if ( C4::Context->preference("marcflavour") eq "UNIMARC" );
947 my $urecord = MARC::Record::new_from_xml( $uxml, 'UTF-8' );
948 $record = $urecord;
951 build_tabs( $template, $record, $dbh, $encoding,$input );
952 $template->param(
953 biblionumber => $biblionumber,
954 biblionumbertagfield => $biblionumbertagfield,
955 biblionumbertagsubfield => $biblionumbertagsubfield,
956 biblioitemnumtagfield => $biblioitemnumtagfield,
957 biblioitemnumtagsubfield => $biblioitemnumtagsubfield,
958 biblioitemnumber => $biblioitemnumber,
959 hostbiblionumber => $hostbiblionumber,
960 hostitemnumber => $hostitemnumber
964 if ( $record ne '-1' ) {
965 my $title = C4::Context->preference('marcflavour') eq "UNIMARC" ? $record->subfield('200', 'a') : $record->title;
966 $template->param( title => $title );
968 $template->param(
969 popup => $mode,
970 frameworkcode => $frameworkcode,
971 itemtype => $frameworkcode,
972 borrowernumber => $loggedinuser,
973 tab => scalar $input->param('tab')
975 $template->{'VARS'}->{'searchid'} = $searchid;
977 output_html_with_http_headers $input, $cookie, $template->output;