4 # Copyright 2009 BibLibre
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #use warnings; FIXME - Bug 2505
31 my @biblionumber = $input->param('biblionumber');
32 my $merge = $input->param('merge');
36 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
38 template_name => "cataloguing/merge.tmpl",
42 flagsrequired => { editcatalogue => 'edit_catalogue' },
46 #------------------------
48 #------------------------
51 my @params = $input->param();
52 my $dbh = C4::Context->dbh;
55 # Creating a new record from the html code
56 my $record = TransformHtmlToMarc( \@params , $input );
57 my $tobiblio = $input->param('biblio1');
58 my $frombiblio = $input->param('biblio2');
60 # Rewriting the leader
61 $record->leader(GetMarcBiblio($tobiblio)->leader());
63 my $frameworkcode = &GetFrameworkCode($tobiblio);
66 # Modifying the reference record
67 ModBiblio($record, $tobiblio, $frameworkcode);
69 # Moving items from the other record to the reference record
70 my $itemnumbers = get_itemnumbers_of($frombiblio);
71 foreach my $itloop ($itemnumbers->{$frombiblio}) {
72 foreach my $itemnumber (@$itloop) {
73 my $res = MoveItemFromBiblio($itemnumber, $frombiblio, $tobiblio);
74 if (not defined $res) {
75 push @notmoveditems, $itemnumber;
79 # If some items could not be moved :
80 if (scalar(@notmoveditems) > 0) {
81 my $itemlist = join(' ',@notmoveditems);
82 push @errors, "The following items could not be moved from the old record to the new one: $itemlist";
85 # Moving subscriptions from the other record to the reference record
86 my $subcount = CountSubscriptionFromBiblionumber($frombiblio);
88 $sth = $dbh->prepare("UPDATE subscription SET biblionumber = ? WHERE biblionumber = ?");
89 $sth->execute($tobiblio, $frombiblio);
91 $sth = $dbh->prepare("UPDATE subscriptionhistory SET biblionumber = ? WHERE biblionumber = ?");
92 $sth->execute($tobiblio, $frombiblio);
97 $sth = $dbh->prepare("UPDATE serial SET biblionumber = ? WHERE biblionumber = ?");
98 $sth->execute($tobiblio, $frombiblio);
100 # TODO : Moving reserves
102 # Deleting the other record
103 if (scalar(@errors) == 0) {
104 my $error = DelBiblio($frombiblio);
105 push @errors, $error if ($error);
109 my @errors_loop = map{{error => $_}}@errors;
113 errors => \@errors_loop,
115 biblio1 => $input->param('biblio1')
119 #-------------------------
120 # Show records to merge
121 #-------------------------
124 my $mergereference = $input->param('mergereference');
125 my $biblionumber = $input->param('biblionumber');
127 my $data1 = GetBiblioData($biblionumber[0]);
128 my $data2 = GetBiblioData($biblionumber[1]);
130 # Ask the user to choose which record will be the kept
131 if (not $mergereference) {
133 choosereference => 1,
134 biblio1 => $biblionumber[0],
135 biblio2 => $biblionumber[1],
136 title1 => $data1->{'title'},
137 title2 => $data2->{'title'}
141 if (scalar(@biblionumber) != 2) {
142 push @errors, "An unexpected number of records was provided for merging. Currently only two records at a time can be merged.";
145 # Checks if both records use the same framework
146 my $frameworkcode1 = &GetFrameworkCode($biblionumber[0]);
147 my $frameworkcode2 = &GetFrameworkCode($biblionumber[1]);
149 if ($frameworkcode1 ne $frameworkcode2) {
150 push @errors, "The records selected for merging are using different frameworks. Currently merging is only available for records using the same framework.";
152 $framework = $frameworkcode1;
155 # Getting MARC Structure
156 my $tagslib = GetMarcStructure(1, $framework);
158 my $notreference = ($biblionumber[0] == $mergereference) ? $biblionumber[1] : $biblionumber[0];
160 # Creating a loop for display
161 my @record1 = _createMarcHash(GetMarcBiblio($mergereference), $tagslib);
162 my @record2 = _createMarcHash(GetMarcBiblio($notreference), $tagslib);
165 my @errors_loop = map{{error => $_}}@errors;
169 errors => \@errors_loop,
170 biblio1 => $mergereference,
171 biblio2 => $notreference,
172 mergereference => $mergereference,
175 framework => $framework
179 output_html_with_http_headers $input, $cookie, $template->output;
183 # ------------------------
185 # ------------------------
186 sub _createMarcHash {
190 my @fields = $record->fields();
193 foreach my $field (@fields) {
194 my $fieldtag = $field->tag();
195 if ($fieldtag < 10) {
196 if ($tagslib->{$fieldtag}->{'@'}->{'tab'} >= 0) {
202 value => $field->data(),
208 my @subfields = $field->subfields();
210 foreach my $subfield (@subfields) {
211 if ($tagslib->{$fieldtag}->{@$subfield[0]}->{'tab'} >= 0) {
212 push @subfield_array, {
213 subtag => @$subfield[0],
214 subkey => createKey(),
215 value => @$subfield[1],
221 if ($tagslib->{$fieldtag}->{'tab'} >= 0 && $fieldtag ne '995') {
227 indicator1 => $field->indicator(1),
228 indicator2 => $field->indicator(2),
229 subfield => [@subfield_array],
243 Create a random value to set it into the input name
248 return int(rand(1000000));