Bug 13388: (follow-up) Inlcude OpacNav
[koha.git] / course_reserves / add_items.pl
blob3e98570f33046e6195f2750b2049c0b927f313e0
1 #!/usr/bin/perl
4 # Copyright 2012 Bywater Solutions
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 use Modern::Perl;
23 use CGI qw ( -utf8 );
25 use C4::Auth;
26 use C4::Output;
27 use C4::Koha;
28 use C4::Biblio;
29 use Koha::Items;
31 use C4::CourseReserves qw(GetCourse GetCourseItem GetCourseReserve ModCourseItem ModCourseReserve);
33 use Koha::Items;
34 use Koha::ItemTypes;
36 my $cgi = new CGI;
38 my $action = $cgi->param('action') || '';
39 my $course_id = $cgi->param('course_id') || '';
40 my $barcode = $cgi->param('barcode') || '';
41 my $return = $cgi->param('return') || '';
42 my $itemnumber = $cgi->param('itemnumber') || '';
43 my $is_edit = $cgi->param('is_edit') || '';
45 my $item = Koha::Items->find( { ( $itemnumber ? ( itemnumber => $itemnumber ) : ( barcode => $barcode ) ) } );
46 $itemnumber = $item->id if $item;
48 my $title = ($item) ? $item->biblio->title : undef;
50 my $step = ( $action eq 'lookup' && $item ) ? '2' : '1';
52 my $tmpl = ($course_id) ? "add_items-step$step.tt" : "invalid-course.tt";
53 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
54 { template_name => "course_reserves/$tmpl",
55 query => $cgi,
56 type => "intranet",
57 authnotrequired => 0,
58 flagsrequired => { coursereserves => 'add_reserves' },
62 if ( !$item && $action eq 'lookup' ){
63 $template->param( ERROR_ITEM_NOT_FOUND => 1 );
64 $template->param( UNKNOWN_BARCODE => $barcode ) if $barcode;
67 $template->param( course => GetCourse($course_id) );
69 if ( $action eq 'lookup' and $item ) {
70 my $course_item = Koha::Course::Items->find({ itemnumber => $item->id });
71 my $course_reserve =
72 ($course_item)
73 ? GetCourseReserve(
74 course_id => $course_id,
75 ci_id => $course_item->ci_id,
77 : undef;
79 my $itemtypes = Koha::ItemTypes->search;
80 $template->param(
81 item => $item,
82 biblio => $item->biblio,
83 course_item => $course_item,
84 course_reserve => $course_reserve,
85 is_edit => $is_edit,
87 ccodes => GetAuthorisedValues('CCODE'),
88 locations => GetAuthorisedValues('LOC'),
89 itypes => $itemtypes, # FIXME We certainly want to display the translated_description in the template
90 return => $return,
93 } elsif ( $action eq 'add' ) {
94 my $itype = scalar $cgi->param('itype');
95 my $ccode = scalar $cgi->param('ccode');
96 my $homebranch = $cgi->param('homebranch');
97 my $holdingbranch = scalar $cgi->param('holdingbranch');
98 my $location = scalar $cgi->param('location');
100 my $itype_enabled = scalar $cgi->param('itype_enabled') ? 1 : 0;
101 my $ccode_enabled = scalar $cgi->param('ccode_enabled') ? 1 : 0;
102 my $homebranch_enabled = $cgi->param('homebranch_enabled') ? 1 : 0;
103 my $holdingbranch_enabled = scalar $cgi->param('holdingbranch_enabled') ? 1 : 0;
104 my $location_enabled = scalar $cgi->param('location_enabled') ? 1 : 0;
106 my $ci_id = ModCourseItem(
107 itemnumber => $itemnumber,
108 itype => $itype,
109 ccode => $ccode,
110 homebranch => $homebranch,
111 holdingbranch => $holdingbranch,
112 location => $location,
113 itype_enabled => $itype_enabled,
114 ccode_enabled => $ccode_enabled,
115 homebranch_enabled => $homebranch_enabled,
116 holdingbranch_enabled => $holdingbranch_enabled,
117 location_enabled => $location_enabled,
120 my $cr_id = ModCourseReserve(
121 course_id => $course_id,
122 ci_id => $ci_id,
123 staff_note => scalar $cgi->param('staff_note'),
124 public_note => scalar $cgi->param('public_note'),
127 if ( $return ) {
128 print $cgi->redirect("/cgi-bin/koha/course_reserves/course-details.pl?course_id=$return");
129 exit;
133 output_html_with_http_headers $cgi, $cookie, $template->output;