Bug 4083 subroutine HasItems needs to be exported
[koha.git] / acqui / basket.pl
blob9687b88f83b203130baecc1a4bb0f88a1a3a1512
1 #!/usr/bin/perl
3 #script to show display basket of orders
5 # Copyright 2000 - 2004 Katipo
6 # Copyright 2008 - 2009 BibLibre SARL
8 # This file is part of Koha.
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License along with
20 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
21 # Suite 330, Boston, MA 02111-1307 USA
23 use strict;
24 use warnings;
25 use C4::Auth;
26 use C4::Koha;
27 use C4::Output;
28 use CGI;
29 use C4::Acquisition;
30 use C4::Budgets;
32 use C4::Bookseller;
33 use C4::Dates qw/format_date/;
34 use C4::Debug;
36 use C4::Members qw/GetMember/; #needed for permissions checking for changing basketgroup of a basket
37 =head1 NAME
39 basket.pl
41 =head1 DESCRIPTION
43 This script display all informations about basket for the supplier given
44 on input arg. Moreover, it allows us to add a new order for this supplier from
45 an existing record, a suggestion or a new record.
47 =head1 CGI PARAMETERS
49 =over 4
51 =item $basketno
53 The basket number.
55 =item supplierid
57 the supplier this script have to display the basket.
59 =item order
61 =back
63 =cut
65 my $query = new CGI;
66 my $basketno = $query->param('basketno');
67 my $booksellerid = $query->param('supplierid');
69 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
71 template_name => "acqui/basket.tmpl",
72 query => $query,
73 type => "intranet",
74 authnotrequired => 0,
75 flagsrequired => { acquisition => 'order_manage' },
76 debug => 1,
80 my $basket = GetBasket($basketno);
82 # FIXME : what about the "discount" percentage?
83 # FIXME : the query->param('supplierid') below is probably useless. The bookseller is always known from the basket
84 # if no booksellerid in parameter, get it from basket
85 # warn "=>".$basket->{booksellerid};
86 $booksellerid = $basket->{booksellerid} unless $booksellerid;
87 my ($bookseller) = GetBookSellerFromId($booksellerid);
88 my $op = $query->param('op');
90 if ( $op eq 'delete_confirm' ) {
91 my $basketno = $query->param('basketno');
92 DelBasket($basketno);
93 $template->param( delete_confirmed => 1 );
94 } elsif ( !$bookseller ) {
95 $template->param( NO_BOOKSELLER => 1 );
96 } elsif ( $op eq 'del_basket') {
97 $template->param( delete_confirm => 1 );
98 if ( C4::Context->preference("IndependantBranches") ) {
99 my $userenv = C4::Context->userenv;
100 unless ( $userenv->{flags} == 1 ) {
101 my $validtest = ( $basket->{creationdate} eq '' )
102 || ( $userenv->{branch} eq $basket->{branch} )
103 || ( $userenv->{branch} eq '' )
104 || ( $basket->{branch} eq '' );
105 unless ($validtest) {
106 print $query->redirect("../mainpage.pl");
107 exit 1;
111 $basket->{creationdate} = "" unless ( $basket->{creationdate} );
112 $basket->{authorisedby} = $loggedinuser unless ( $basket->{authorisedby} );
113 my $contract = &GetContract($basket->{contractnumber});
114 my $count = scalar GetOrders( $basketno);
115 $template->param(
116 basketno => $basketno,
117 basketname => $basket->{'basketname'},
118 basketnote => $basket->{note},
119 basketbooksellernote => $basket->{booksellernote},
120 basketcontractno => $basket->{contractnumber},
121 basketcontractname => $contract->{contractname},
122 creationdate => format_date( $basket->{creationdate} ),
123 authorisedby => $basket->{authorisedby},
124 authorisedbyname => $basket->{authorisedbyname},
125 closedate => format_date( $basket->{closedate} ),
126 active => $bookseller->{'active'},
127 booksellerid => $bookseller->{'id'},
128 name => $bookseller->{'name'},
129 address1 => $bookseller->{'address1'},
130 address2 => $bookseller->{'address2'},
131 address3 => $bookseller->{'address3'},
132 address4 => $bookseller->{'address4'},
133 count => $count,
135 } elsif ($op eq 'attachbasket' && $template->{'param_map'}->{'CAN_user_acquisition_group_manage'} == 1) {
136 print $query->redirect('/cgi-bin/koha/acqui/basketgroup.pl?basketno=' . $basket->{'basketno'} . '&op=attachbasket&booksellerid=' . $booksellerid);
137 # check if we have to "close" a basket before building page
138 } elsif ($op eq 'export') {
139 print $query->header(
140 -type => 'text/csv',
141 -attachment => 'basket' . $basket->{'basketno'} . '.csv',
143 print GetBasketAsCSV($query->param('basketno'));
144 exit;
145 } elsif ($op eq 'close') {
146 my $confirm = $query->param('confirm');
147 if ($confirm) {
148 my $basketno = $query->param('basketno');
149 my $booksellerid = $query->param('booksellerid');
150 $basketno =~ /^\d+$/ and CloseBasket($basketno);
151 # if requested, create basket group, close it and attach the basket
152 if ($query->param('createbasketgroup')) {
153 my $basketgroupid = NewBasketgroup( { name => $basket->{basketname},
154 booksellerid => $booksellerid,
155 closed => 1,
157 ModBasket( { basketno => $basketno,
158 basketgroupid => $basketgroupid } );
159 print $query->redirect('/cgi-bin/koha/acqui/basketgroup.pl?booksellerid='.$booksellerid);
160 } else {
161 print $query->redirect('/cgi-bin/koha/acqui/basketgroup.pl?basketno='.$basketno.'&op=attachbasket&booksellerid=' . $booksellerid);
163 exit;
164 } else {
165 $template->param(confirm_close => "1",
166 booksellerid => $booksellerid,
167 basketno => $basket->{'basketno'},
168 basketname => $basket->{'basketname'},
169 basketgroupname => $basket->{'basketname'});
172 } elsif ($query->param('op') eq 'reopen') {
173 my $basket;
174 $basket->{basketno} = $query->param('basketno');
175 $basket->{closedate} = undef;
176 ModBasket($basket);
177 print $query->redirect('/cgi-bin/koha/acqui/basket.pl?basketno='.$basket->{'basketno'})
178 } else {
179 # get librarian branch...
180 if ( C4::Context->preference("IndependantBranches") ) {
181 my $userenv = C4::Context->userenv;
182 unless ( $userenv->{flags} == 1 ) {
183 my $validtest = ( $basket->{creationdate} eq '' )
184 || ( $userenv->{branch} eq $basket->{branch} )
185 || ( $userenv->{branch} eq '' )
186 || ( $basket->{branch} eq '' );
187 unless ($validtest) {
188 print $query->redirect("../mainpage.pl");
189 exit 1;
193 #if the basket is closed,and the user has the permission to edit basketgroups, display a list of basketgroups
194 my $basketgroups;
195 my $member = GetMember($loggedinuser, "borrowernumber");
196 if ($basket->{closedate} && haspermission({ flagsrequired => { acquisition => 'group_manage'} })) {
197 $basketgroups = GetBasketgroups($basket->{booksellerid});
198 for (my $i=0; $i < scalar(@$basketgroups); $i++) {
199 if ($basket->{basketgroupid} == @$basketgroups[$i]->{id}){
200 @$basketgroups[$i]->{default} = 1;
203 my %emptygroup = ( id => undef,
204 name => "No group");
205 if ( ! $basket->{basketgroupid} ) {
206 $emptygroup{default} = 1;
208 unshift( @$basketgroups, \%emptygroup );
210 # if new basket, pre-fill infos
211 $basket->{creationdate} = "" unless ( $basket->{creationdate} );
212 $basket->{authorisedby} = $loggedinuser unless ( $basket->{authorisedby} );
213 $debug
214 and warn sprintf
215 "loggedinuser: $loggedinuser; creationdate: %s; authorisedby: %s",
216 $basket->{creationdate}, $basket->{authorisedby};
218 my @results = GetOrders( $basketno );
219 my $count = scalar @results;
221 my $gist = $bookseller->{gstrate} || C4::Context->preference("gist") || 0;
222 my $discount = $bookseller->{'discount'} / 100;
223 my $total_rrp; # RRP Total, its value will be assigned to $total_rrp_gsti or $total_rrp_gste depending of $bookseller->{'listincgst'}
224 my $total_rrp_gsti; # RRP Total, GST included
225 my $total_rrp_gste; # RRP Total, GST excluded
226 my $gist_rrp;
228 my $qty_total;
229 my @books_loop;
231 for ( my $i = 0 ; $i < $count ; $i++ ) {
232 my $rrp = $results[$i]->{'listprice'};
233 my $qty = $results[$i]->{'quantity'} || 0;
235 my $budget = GetBudget( $results[$i]->{'budget_id'} );
236 $rrp = ConvertCurrency( $results[$i]->{'currency'}, $rrp );
238 $total_rrp += $qty * $results[$i]->{'rrp'};
239 my $line_total = $qty * $results[$i]->{'ecost'};
240 # FIXME: what about the "actual cost" field?
241 $qty_total += $qty;
242 my %line = %{ $results[$i] };
243 ($i%2) and $line{toggle} = 1;
245 $line{order_received} = ( $qty eq $results[$i]->{'quantityreceived'} );
246 $line{basketno} = $basketno;
247 $line{i} = $i;
248 $line{budget_name} = $budget->{budget_name};
249 $line{rrp} = sprintf( "%.2f", $line{'rrp'} );
250 $line{ecost} = sprintf( "%.2f", $line{'ecost'} );
251 $line{line_total} = sprintf( "%.2f", $line_total );
252 $line{odd} = $i % 2;
253 if ($line{uncertainprice}) {
254 $template->param( unclosable => 1 );
255 for my $key (qw/ecost line_total rrp/) {
256 $line{$key} .= '??';
259 if ($line{'title'}){
260 my $volume = $results[$i]->{'volume'};
261 my $seriestitle = $results[$i]->{'seriestitle'};
262 $line{'title'} .= " / $seriestitle" if $seriestitle;
263 $line{'title'} .= " / $volume" if $volume;
264 } else {
265 $line{'title'} = "Deleted bibliographic notice, can't find title.";
267 push @books_loop, \%line;
270 if ($bookseller->{'listincgst'}) { # if prices already includes GST
271 $total_rrp_gsti = $total_rrp; # we know $total_rrp_gsti
272 $total_rrp_gste = $total_rrp_gsti / ($gist + 1); # and can reverse compute other values
273 $gist_rrp = $total_rrp_gsti - $total_rrp_gste; #
274 } else { # if prices does not include GST
275 $total_rrp_gste = $total_rrp; # then we use the common way to compute other values
276 $gist_rrp = $total_rrp_gste * $gist; #
277 $total_rrp_gsti = $total_rrp_gste + $gist_rrp; #
279 # These vars are estimated totals and GST, taking in account the booksellet discount
280 my $total_est_gsti = $total_rrp_gsti - ($total_rrp_gsti * $discount);
281 my $gist_est = $gist_rrp - ($gist_rrp * $discount);
282 my $total_est_gste = $total_rrp_gste - ($total_rrp_gste * $discount);
284 my $contract = &GetContract($basket->{contractnumber});
285 $template->param(
286 basketno => $basketno,
287 basketname => $basket->{'basketname'},
288 basketnote => $basket->{note},
289 basketbooksellernote => $basket->{booksellernote},
290 basketcontractno => $basket->{contractnumber},
291 basketcontractname => $contract->{contractname},
292 creationdate => C4::Dates->new($basket->{creationdate},'iso')->output,
293 authorisedby => $basket->{authorisedby},
294 authorisedbyname => $basket->{authorisedbyname},
295 closedate => C4::Dates->new($basket->{closedate},'iso')->output,
296 active => $bookseller->{'active'},
297 booksellerid => $bookseller->{'id'},
298 name => $bookseller->{'name'},
299 entrydate => C4::Dates->new($results[0]->{'entrydate'},'iso')->output,
300 books_loop => \@books_loop,
301 count => $count,
302 gist_rate => sprintf( "%.2f", $gist * 100 ) . '%',
303 total_rrp_gste => sprintf( "%.2f", $total_rrp_gste ),
304 total_est_gste => sprintf( "%.2f", $total_est_gste ),
305 gist_est => sprintf( "%.2f", $gist_est ),
306 gist_rrp => sprintf( "%.2f", $gist_rrp ),
307 total_rrp_gsti => sprintf( "%.2f", $total_rrp_gsti ),
308 total_est_gsti => sprintf( "%.2f", $total_est_gsti ),
309 currency => $bookseller->{'listprice'},
310 qty_total => $qty_total,
311 GST => $gist,
312 basketgroups => $basketgroups,
313 grouped => $basket->{basketgroupid},
317 output_html_with_http_headers $query, $cookie, $template->output;