acd3d67c5172e93532fd172183cf34a3479c19a3
[koha.git] / acqui / basketheader.pl
1 #!/usr/bin/perl
2
3 #script to add basket and edit header options (name, notes and contractnumber)
4 #written by john.soros@biblibre.com 15/09/2008
5
6 # Copyright 2008 - 2009 BibLibre SARL
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22
23 =head1 NAME
24
25 basketheader.pl
26
27 =head1 DESCRIPTION
28
29 This script is used to edit the basket's "header", or add a new basket, the header contains the supplier ID,
30 notes to the supplier, local notes, and the contractnumber, which identifies the basket to a specific contract.
31
32 =head1 CGI PARAMETERS
33
34 =over 4
35
36 =item booksellerid
37
38 C<$booksellerid> is the id of the supplier we add the basket to.
39
40 =item basketid
41
42 If it exists, C<$basketno> is the basket we edit
43
44 =back
45
46 =cut
47
48 use Modern::Perl;
49 use CGI qw ( -utf8 );
50 use C4::Context;
51 use C4::Auth;
52 use C4::Output;
53 use C4::Acquisition qw/GetBasket NewBasket ModBasketHeader/;
54 use C4::Contract qw/GetContracts/;
55
56 use Koha::Acquisition::Booksellers;
57 use Koha::AdditionalField;
58
59 my $input = new CGI;
60 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
61     {
62         template_name   => "acqui/basketheader.tt",
63         query           => $input,
64         type            => "intranet",
65         authnotrequired => 0,
66        flagsrequired   => { acquisition => 'order_manage' },
67         debug           => 1,
68     }
69 );
70
71 #parameters:
72 my $booksellerid = $input->param('booksellerid');
73 my $basketno = $input->param('basketno');
74 my $basket;
75 my $op = $input->param('op');
76 my $is_an_edit = $input->param('is_an_edit');
77
78 $template->param( available_additional_fields => scalar Koha::AdditionalField->all( { tablename => 'aqbasket' } ) );
79
80 if ( $op eq 'add_form' ) {
81     my @contractloop;
82     if ( $basketno ) {
83     #this is an edit
84         $basket = GetBasket($basketno);
85         if (! $booksellerid) {
86             $booksellerid=$basket->{'booksellerid'};
87         }
88         my $contracts = GetContracts({
89             booksellerid => $booksellerid,
90             activeonly => 1,
91         });
92
93         @contractloop = @$contracts;
94         for (@contractloop) {
95             if ( $basket->{'contractnumber'} eq $_->{'contractnumber'} ) {
96                 $_->{'selected'} = 1;
97             }
98         }
99         $template->param( is_an_edit => 1);
100         $template->param(
101             additional_field_values => Koha::AdditionalField->fetch_all_values( {
102                 tablename => 'aqbasket',
103                 record_id => $basketno,
104             } )->{$basketno},
105         );
106     } else {
107     #new basket
108         my $basket;
109         my $contracts = GetContracts({
110             booksellerid => $booksellerid,
111             activeonly => 1,
112         });
113         push(@contractloop, @$contracts);
114     }
115     my $bookseller = Koha::Acquisition::Booksellers->find( $booksellerid );
116     my $count = scalar @contractloop;
117     if ( $count > 0) {
118         $template->param(contractloop => \@contractloop,
119                          basketcontractnumber => $basket->{'contractnumber'});
120     }
121     my @booksellers = Koha::Acquisition::Booksellers->search(
122                         undef,
123                         { order_by => { -asc => 'name' } } );
124
125     $template->param( add_form => 1,
126                     basketname => $basket->{'basketname'},
127                     basketnote => $basket->{'note'},
128                     basketbooksellernote => $basket->{'booksellernote'},
129                     booksellername => $bookseller->name,
130                     booksellerid => $booksellerid,
131                     basketno => $basketno,
132                     booksellers => \@booksellers,
133                     is_standing => $basket->{is_standing},
134     );
135
136     my $billingplace = $basket->{'billingplace'} || C4::Context->userenv->{"branch"};
137     my $deliveryplace = $basket->{'deliveryplace'} || C4::Context->userenv->{"branch"};
138
139     $template->param( billingplace => $billingplace );
140     $template->param( deliveryplace => $deliveryplace );
141
142 #End Edit
143 } elsif ( $op eq 'add_validate' ) {
144 #we are confirming the changes, save the basket
145     if ( $is_an_edit ) {
146         ModBasketHeader(
147             $basketno,
148             scalar $input->param('basketname'),
149             scalar $input->param('basketnote'),
150             scalar $input->param('basketbooksellernote'),
151             scalar $input->param('basketcontractnumber') || undef,
152             scalar $input->param('basketbooksellerid'),
153             scalar $input->param('deliveryplace'),
154             scalar $input->param('billingplace'),
155             scalar $input->param('is_standing') ? 1 : undef,
156             scalar $input->param('create_items')
157         );
158     } else { #New basket
159         $basketno = NewBasket(
160             $booksellerid,
161             $loggedinuser,
162             scalar $input->param('basketname'),
163             scalar $input->param('basketnote'),
164             scalar $input->param('basketbooksellernote'),
165             scalar $input->param('basketcontractnumber') || undef,
166             scalar $input->param('deliveryplace'),
167             scalar $input->param('billingplace'),
168             scalar $input->param('is_standing') ? 1 : undef,
169             scalar $input->param('create_items')
170         );
171     }
172
173     Koha::AdditionalField->update_fields_from_query( {
174         tablename => 'aqbasket',
175         record_id => $basketno,
176         query => $input,
177     } );
178
179     print $input->redirect('basket.pl?basketno='.$basketno);
180     exit 0;
181 }
182 output_html_with_http_headers $input, $cookie, $template->output;