Koha/course_reserves/batch_add_items.pl
Julian Maurice 0ef02cea4a
Bug 22970: Allow to change homebranch in batch add course reserves
Test plan:
1. Create a course (disabled)
2. Add multiple reserves to this course using 'batch add' and set
   a homebranch different from the items homebranch
3. Enable the course
4. Verify that the items homebranch have changed
5. Disable the course
6. Verify that the items homebranch were reset to their initial value

Depends on bug 22630

Signed-off-by: Liz Rea <wizzyrea@gmail.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
2020-05-12 11:40:54 +01:00

120 lines
3.9 KiB
Perl
Executable file

#!/usr/bin/perl
#
# Copyright 2018 Bywater Solutions
#
# 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 3 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, see <http://www.gnu.org/licenses>.
use Modern::Perl;
use CGI qw( -utf8 );
use List::MoreUtils qw( uniq );
use C4::Auth;
use C4::Output;
use C4::CourseReserves qw(ModCourseItem ModCourseReserve GetCourse);
use Koha::Items;
my $cgi = new CGI;
my $action = $cgi->param('action') || q{};
my $course_id = $cgi->param('course_id') || q{};
my $barcodes = $cgi->param('barcodes') || q{};
my $itype = $cgi->param('itype');
my $ccode = $cgi->param('ccode');
my $homebranch = $cgi->param('homebranch');
my $holdingbranch = $cgi->param('holdingbranch');
my $location = $cgi->param('location');
my $staff_note = $cgi->param('staff_note');
my $public_note = $cgi->param('public_note');
my $itype_enabled = scalar $cgi->param('itype_enabled') ? 1 : 0;
my $ccode_enabled = scalar $cgi->param('ccode_enabled') ? 1 : 0;
my $homebranch_enabled = scalar $cgi->param('homebranch_enabled') ? 1 : 0;
my $holdingbranch_enabled = scalar $cgi->param('holdingbranch_enabled') ? 1 : 0;
my $location_enabled = scalar $cgi->param('location_enabled') ? 1 : 0;
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
{
template_name => "course_reserves/batch_add_items.tt",
query => $cgi,
type => "intranet",
authnotrequired => 0,
flagsrequired => { coursereserves => 'add_reserves' },
}
);
my $course = GetCourse($course_id);
if ( $course_id && $course ) {
$template->param( course => $course );
if ( !$action ) {
$template->param( action => 'display_form' );
}
elsif ( $action eq 'add' ) {
my @barcodes = uniq( split( /\s\n/, $barcodes ) );
my @items;
my @invalid_barcodes;
for my $b (@barcodes) {
my $item = Koha::Items->find( { barcode => $b } );
if ($item) {
push( @items, $item );
}
else {
push( @invalid_barcodes, $b );
}
}
foreach my $item (@items) {
my $ci_id = ModCourseItem(
itemnumber => $item->id,
itype => $itype,
ccode => $ccode,
holdingbranch => $holdingbranch,
homebranch => $homebranch,
location => $location,
itype_enabled => $itype_enabled,
ccode_enabled => $ccode_enabled,
holdingbranch_enabled => $holdingbranch_enabled,
homebranch_enabled => $homebranch_enabled,
location_enabled => $location_enabled,
);
my $cr_id = ModCourseReserve(
course_id => $course_id,
ci_id => $ci_id,
staff_note => $staff_note,
public_note => $public_note,
);
}
$template->param(
action => 'display_results',
items_added => \@items,
invalid_barcodes => \@invalid_barcodes,
course_id => $course_id,
);
}
} else {
$template->param( action => 'invalid_course' );
}
output_html_with_http_headers $cgi, $cookie, $template->output;