@@ -, +, @@ --- C4/Biblio.pm | 21 ++++++ cataloguing/value_builder/marc21_field_001.pl | 69 ++++++++++++++++++++ installer/data/mysql/sysprefs.sql | 2 + installer/data/mysql/updatedatabase.pl | 25 +++++++ .../en/modules/admin/preferences/cataloguing.pref | 13 ++++ 5 files changed, 130 insertions(+), 0 deletions(-) create mode 100755 cataloguing/value_builder/marc21_field_001.pl --- a/C4/Biblio.pm +++ a/C4/Biblio.pm @@ -271,6 +271,27 @@ sub AddBiblio { # update MARC subfield that stores biblioitems.cn_sort _koha_marc_update_biblioitem_cn_sort( $record, $olddata, $frameworkcode ); + # update the control number (001) in MARC + if(C4::Context->preference('autoControlNumber') eq 'biblionumber'){ + unless($record->field('001')){ + $record->insert_fields_ordered(MARC::Field->new('001', $biblionumber)); + }elsif($record->field('001')->data() eq 'biblionumber'){ + $record->field('001')->update($biblionumber); + } + }elsif(C4::Context->preference('autoControlNumber') eq 'incremental'){ + if(!defined($record->field('001')) or (defined($record->field('001')) and $record->field('001')->data() eq 'incremental')){ + my $incrementalCN=C4::Context->preference('incrementalControlNumber'); + my $sth = $dbh->prepare(q{UPDATE systempreferences SET value = ? WHERE variable = 'incrementalControlNumber'}); + $sth->execute($incrementalCN+1); + $sth->finish(); + unless($record->field('001')){ + $record->insert_fields_ordered(MARC::Field->new('001', $incrementalCN)); + }else{ + $record->field('001')->update($incrementalCN); + } + } + } + # now add the record ModBiblioMarc( $record, $biblionumber, $frameworkcode ) unless $defer_marc_save; --- a/cataloguing/value_builder/marc21_field_001.pl +++ a/cataloguing/value_builder/marc21_field_001.pl @@ -0,0 +1,69 @@ +#!/usr/bin/perl + +# Copyright 2013 Spanish Ministry of Education, Culture and Sport +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 2 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use C4::Context; + +# This is a new style cataloging plugin, using $building_plugin + +our $building_plugin; +if(defined $building_plugin) { + marc21_field001_plugin_javascript(); +} +else { #nothing to do (no popup) +} + +#------------------------------------------------------------------------------- + +sub marc21_field001_plugin_javascript { + my $field_number= $building_plugin->{subfieldid}; + my $function_name= $field_number; + + #depending on preference, adjust Focus function + my $autoControlNumber = C4::Context->preference('autoControlNumber'); + my $focusline=''; + if( $autoControlNumber ne 'OFF' ) { + $focusline= "document.getElementById(\"$field_number\").value='$autoControlNumber';\n"; + } + $focusline.='return 1;'; + + #build the actual javascript + my $res = " + +"; + + #return to caller via global hash + $building_plugin->{function}= $function_name; + $building_plugin->{javascript}= $res; +} + +1; --- a/installer/data/mysql/sysprefs.sql +++ a/installer/data/mysql/sysprefs.sql @@ -427,3 +427,5 @@ INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES(' INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES('UseCourseReserves', '0', 'Enable the course reserves feature.', NULL, 'YesNo'); INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES('OpacHoldNotes',0,'Show hold notes on OPAC','','YesNo'); INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('CalculateFinesOnReturn','1','Switch to control if overdue fines are calculated on return or not', '', 'YesNo'); +INSERT INTO systempreferences (variable, value, options, explanation, type) VALUES ('autoControlNumber','OFF','incremental|biblionumber|OFF','Used to autogenerate a Control Number: incremental will be of the form 1, 2, 3; biblionumber will be as biblionumber;','Choice'); +INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('incrementalControlNumber', '1', 'Set the number (controlnumber) of the next bibliographic record.',NULL,''); --- a/installer/data/mysql/updatedatabase.pl +++ a/installer/data/mysql/updatedatabase.pl @@ -7010,6 +7010,31 @@ CREATE TABLE IF NOT EXISTS borrower_files ( SetVersion($DBversion); } +$DBversion = "3.13.00.XXX"; +if ( CheckVersion($DBversion) ) { + $dbh->do( + q{ +INSERT INTO systempreferences (variable, value, options, explanation, type) VALUES ('autoControlNumber','OFF','incremental|biblionumber|OFF','Used to autogenerate a Control Number: incremental will be of the form 1, 2, 3; biblionumber will be as biblionumber;','Choice'); +} + ); + $dbh->do( + q{ +INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('incrementalControlNumber', '1', 'Set the number (controlnumber) of the next bibliographic record.',NULL,''); +} + ); + if (C4::Context->preference("marcflavour") eq 'MARC21') { + $dbh->do( + q{ +UPDATE marc_subfield_structure SET value_builder = 'marc21_field_001.pl' WHERE tagfield = '001' AND tagsubfield = '@' +AND (value_builder = '' OR value_builder IS NULL); + } + ); + } + print +"Upgrade to $DBversion done (Bug 9921 - Make it possible to force 001 = biblionumber)\n"; + SetVersion($DBversion); +} + =head1 FUNCTIONS =head2 TableExists($table) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/cataloguing.pref @@ -109,6 +109,19 @@ Cataloging: - pref: UNIMARCField100Language class: short - as default language in the UNIMARC field 100 when creating a new record or in the field plugin. + - + - Control Number (001) is + - pref: autoControlNumber + choices: + biblionumber: generated as biblionumber. + incremental: generated in the form 1, 2, 3. + "OFF": not generated automatically. + - (You should fill in a value in incrementalControlNumber preference.) + - + - Use Control Number (001) + - pref: incrementalControlNumber + class: integer + - as incremental number. (This requires generated in the form 1, 2, 3 in autoControlNumber preference.) Display: - - 'Separate multiple displayed authors, series or subjects with ' --