3 # This file is part of Koha.
5 # Copyright 2013 BibLibre
7 # Koha is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as
9 # published by the Free Software Foundation; either version 3
10 # of the License, or (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General
18 # Public License along with Koha; if not, see
19 # <http://www.gnu.org/licenses>
24 use List
::MoreUtils
qw( uniq );
28 use C4
::AuthoritiesMarc
;
30 use Koha
::Virtualshelves
;
32 use Koha
::Authorities
;
37 my $op = $input->param('op') // q
|form
|;
38 my $recordtype = $input->param('recordtype') // 'biblio';
40 my ($template, $loggedinuser, $cookie) = get_template_and_user
({
41 template_name
=> 'tools/batch_delete_records.tt',
45 flagsrequired
=> { tools
=> 'records_batchdel' },
48 $template->param( lists
=> scalar Koha
::Virtualshelves
->search([{ category
=> 1, owner
=> $loggedinuser }, { category
=> 2 }]) );
52 if ( $op eq 'form' ) {
54 $template->param( op
=> 'form' );
55 } elsif ( $op eq 'list' ) {
56 # List all records to process
58 if ( my $bib_list = $input->param('bib_list') ) {
59 # Come from the basket
60 @record_ids = split /\//, $bib_list;
61 $recordtype = 'biblio';
62 } elsif ( my $uploadfile = $input->param('uploadfile') ) {
63 # A file of id is given
64 binmode $uploadfile, ':encoding(UTF-8)';
65 while ( my $content = <$uploadfile> ) {
67 $content =~ s/[\r\n]*$//;
68 push @record_ids, $content if $content;
70 } elsif ( my $shelf_number = $input->param('shelf_number') ) {
71 my $shelf = Koha
::Virtualshelves
->find($shelf_number);
72 my $contents = $shelf->get_contents;
73 while ( my $content = $contents->next ) {
74 my $biblionumber = $content->biblionumber;
75 push @record_ids, $biblionumber;
78 # The user enters manually the list of id
79 push @record_ids, split( /\s\n/, $input->param('recordnumber_list') );
82 for my $record_id ( uniq
@record_ids ) {
83 if ( $recordtype eq 'biblio' ) {
84 # Retrieve biblio information
85 my $biblio = Koha
::Biblios
->find( $record_id );
89 code
=> 'biblio_not_exists',
90 biblionumber
=> $record_id,
94 my $holds_count = $biblio->holds->count;
95 $biblio = $biblio->unblessed;
96 my $record = &GetMarcBiblio
({ biblionumber
=> $record_id });
97 $biblio->{itemnumbers
} = [Koha
::Items
->search({ biblionumber
=> $record_id })->get_column('itemnumber')];
98 $biblio->{holds_count
} = $holds_count;
99 $biblio->{issues_count
} = C4
::Biblio
::CountItemsIssued
( $record_id );
100 push @records, $biblio;
102 # Retrieve authority information
103 my $authority = C4
::AuthoritiesMarc
::GetAuthority
( $record_id );
104 unless ( $authority ) {
107 code
=> 'authority_not_exists',
108 authid
=> $record_id,
114 authid
=> $record_id,
115 summary
=> C4
::AuthoritiesMarc
::BuildSummary
( $authority, $record_id ),
116 count_usage
=> Koha
::Authorities
->get_usage_count({ authid
=> $record_id }),
118 push @records, $authority;
122 records
=> \
@records,
125 } elsif ( $op eq 'delete' ) {
126 # We want to delete selected records!
127 my @record_ids = $input->multi_param('record_id');
128 my $schema = Koha
::Database
->new->schema;
135 RECORD_IDS
: for my $record_id ( sort { $a <=> $b } @record_ids ) {
136 $report->{total_records
}++;
137 next unless $record_id;
138 $schema->storage->txn_begin;
140 if ( $recordtype eq 'biblio' ) {
142 my $biblionumber = $record_id;
143 # First, checking if issues exist.
144 # If yes, nothing to do
145 my $biblio = Koha
::Biblios
->find( $biblionumber );
147 # TODO Replace with $biblio->get_issues->count
148 if ( C4
::Biblio
::CountItemsIssued
( $biblionumber ) ) {
151 code
=> 'item_issued',
152 biblionumber
=> $biblionumber,
154 $schema->storage->txn_rollback;
159 my $holds = $biblio->holds;
160 while ( my $hold = $holds->next ) {
167 code
=> 'reserve_not_cancelled',
168 biblionumber
=> $biblionumber,
169 reserve_id
=> $hold->reserve_id,
172 $schema->storage->txn_rollback;
178 my @itemnumbers = Koha
::Items
->search({ biblionumber
=> $biblionumber })->get_column('itemnumber');
179 ITEMNUMBER
: for my $itemnumber ( @itemnumbers ) {
180 my $error = eval { C4
::Items
::DelItemCheck
( $biblionumber, $itemnumber ) };
181 if ( $error != 1 or $@
) {
184 code
=> 'item_not_deleted',
185 biblionumber
=> $biblionumber,
186 itemnumber
=> $itemnumber,
187 error
=> ($@ ?
$@
: $error),
189 $schema->storage->txn_rollback;
194 # Finally, delete the biblio
196 C4
::Biblio
::DelBiblio
( $biblionumber );
198 if ( $error or $@
) {
201 code
=> 'biblio_not_deleted',
202 biblionumber
=> $biblionumber,
203 error
=> ($@ ?
$@
: $error),
205 $schema->storage->txn_rollback;
211 code
=> 'biblio_deleted',
212 biblionumber
=> $biblionumber,
214 $report->{total_success
}++;
215 $schema->storage->txn_commit;
218 my $authid = $record_id;
219 eval { C4
::AuthoritiesMarc
::DelAuthority
({ authid
=> $authid }) };
223 code
=> 'authority_not_deleted',
225 error
=> ($@ ?
$@
: 0),
227 $schema->storage->txn_rollback;
232 code
=> 'authority_deleted',
235 $report->{total_success
}++;
236 $schema->storage->txn_commit;
247 messages
=> \
@messages,
248 recordtype
=> $recordtype,
251 output_html_with_http_headers
$input, $cookie, $template->output;