Bug 24157: New permission - delete_baskets
[koha.git] / course_reserves / add_items.pl
1 #!/usr/bin/perl
2
3 #
4 # Copyright 2012 Bywater Solutions
5 #
6 # This file is part of Koha.
7 #
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.
12 #
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.
17 #
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>.
20
21 use Modern::Perl;
22
23 use CGI qw ( -utf8 );
24
25 use C4::Auth;
26 use C4::Output;
27 use C4::Koha;
28 use C4::Biblio;
29 use Koha::Items;
30
31 use C4::CourseReserves qw(GetCourse GetCourseItem GetCourseReserve ModCourseItem ModCourseReserve);
32
33 use Koha::Items;
34 use Koha::ItemTypes;
35
36 my $cgi = new CGI;
37
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')      || '';
44
45 $barcode =~ s/^\s*|\s*$//g; #remove leading/trailing whitespace
46
47 my $item = Koha::Items->find( { ( $itemnumber ? ( itemnumber => $itemnumber ) : ( barcode => $barcode ) ) } );
48 $itemnumber = $item->id if $item;
49
50 my $title = ($item) ? $item->biblio->title : undef;
51
52 my $step = ( $action eq 'lookup' && $item ) ? '2' : '1';
53
54 my $tmpl = ($course_id) ? "add_items-step$step.tt" : "invalid-course.tt";
55 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
56     {   template_name   => "course_reserves/$tmpl",
57         query           => $cgi,
58         type            => "intranet",
59         authnotrequired => 0,
60         flagsrequired   => { coursereserves => 'add_reserves' },
61     }
62 );
63
64 if ( !$item && $action eq 'lookup' ){
65     $template->param( ERROR_ITEM_NOT_FOUND => 1 );
66     $template->param( UNKNOWN_BARCODE => $barcode ) if $barcode;
67 }
68
69 $template->param( course => GetCourse($course_id) );
70
71 if ( $action eq 'lookup' and $item ) {
72     my $course_item = Koha::Course::Items->find({ itemnumber => $item->id });
73     my $course_reserve =
74       ($course_item)
75       ? GetCourseReserve(
76         course_id => $course_id,
77         ci_id     => $course_item->ci_id,
78       )
79       : undef;
80
81     my $itemtypes = Koha::ItemTypes->search;
82     $template->param(
83         item           => $item,
84         biblio         => $item->biblio,
85         course_item    => $course_item,
86         course_reserve => $course_reserve,
87         is_edit        => $is_edit,
88
89         ccodes    => GetAuthorisedValues('CCODE'),
90         locations => GetAuthorisedValues('LOC'),
91         itypes    => $itemtypes, # FIXME We certainly want to display the translated_description in the template
92         return    => $return,
93     );
94
95 } elsif ( $action eq 'add' ) {
96     my $itype         = scalar $cgi->param('itype');
97     my $ccode         = scalar $cgi->param('ccode');
98     my $homebranch    = $cgi->param('homebranch');
99     my $holdingbranch = scalar $cgi->param('holdingbranch');
100     my $location      = scalar $cgi->param('location');
101
102     my $itype_enabled         = scalar $cgi->param('itype_enabled') ? 1 : 0;
103     my $ccode_enabled         = scalar $cgi->param('ccode_enabled') ? 1 : 0;
104     my $homebranch_enabled    = $cgi->param('homebranch_enabled') ? 1 : 0;
105     my $holdingbranch_enabled = scalar $cgi->param('holdingbranch_enabled') ? 1 : 0;
106     my $location_enabled      = scalar $cgi->param('location_enabled') ? 1 : 0;
107
108     my $ci_id = ModCourseItem(
109             itemnumber    => $itemnumber,
110             itype         => $itype,
111             ccode         => $ccode,
112             homebranch    => $homebranch,
113             holdingbranch => $holdingbranch,
114             location      => $location,
115             itype_enabled         => $itype_enabled,
116             ccode_enabled         => $ccode_enabled,
117             homebranch_enabled    => $homebranch_enabled,
118             holdingbranch_enabled => $holdingbranch_enabled,
119             location_enabled      => $location_enabled,
120     );
121
122     my $cr_id = ModCourseReserve(
123         course_id   => $course_id,
124         ci_id       => $ci_id,
125         staff_note  => scalar $cgi->param('staff_note'),
126         public_note => scalar $cgi->param('public_note'),
127     );
128
129     if ( $return ) {
130         print $cgi->redirect("/cgi-bin/koha/course_reserves/course-details.pl?course_id=$return");
131         exit;
132     }
133 }
134
135 output_html_with_http_headers $cgi, $cookie, $template->output;