help templates and includes - cleanup for XHTML validation, error display
[koha.git] / acqui / basket.pl
1 #!/usr/bin/perl
2
3 #script to show display basket of orders
4 #written by chris@katipo.co.nz 24/2/2000
5
6 # Copyright 2000-2002 Katipo Communications
7 #
8 # This file is part of Koha.
9 #
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.
14 #
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.
18 #
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
22
23
24 use strict;
25 use C4::Auth;
26 use C4::Koha;
27 use C4::Output;
28 use CGI;
29 use C4::Acquisition;
30 use C4::Bookfund;
31 use C4::Bookseller;
32 use C4::Dates qw/format_date/;
33
34 use vars qw($debug);
35
36 BEGIN {
37         $debug = $ENV{DEBUG} || 1;
38 }
39
40 =head1 NAME
41
42 basket.pl
43
44 =head1 DESCRIPTION
45
46  This script display all informations about basket for the supplier given
47  on input arg. Moreover, it allow to add a new order for this supplier from
48  an existing record, a suggestion or from a new record.
49
50 =head1 CGI PARAMETERS
51
52 =over 4
53
54 =item $basketno
55
56 this parameter seems to be unused.
57
58 =item supplierid
59
60 the supplier this script have to display the basket.
61
62 =item order
63
64
65
66 =back
67
68 =cut
69
70 my $query        = new CGI;
71 my $basketno     = $query->param('basketno');
72 my $booksellerid = $query->param('supplierid');
73 my $order        = $query->param('order');
74 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
75     {
76         template_name   => "acqui/basket.tmpl",
77         query           => $query,
78         type            => "intranet",
79         authnotrequired => 0,
80         flagsrequired   => { acquisition => 1 },
81         debug           => 1,
82     }
83 );
84
85 my $basket = GetBasket($basketno);
86
87 # FIXME : the query->param('supplierid') below is probably useless. The bookseller is always known from the basket
88 # if no booksellerid in parameter, get it from basket
89 # warn "=>".$basket->{booksellerid};
90 $booksellerid = $basket->{booksellerid} unless $booksellerid;
91 my @booksellers = GetBookSeller($booksellerid);
92 my $count2 = scalar @booksellers;
93
94 # get librarian branch...
95 if ( C4::Context->preference("IndependantBranches") ) {
96     my $userenv = C4::Context->userenv;
97     unless ( $userenv->{flags} == 1 ) {
98         my $validtest = ( $basket->{creationdate} eq '' )
99           || ( $basket->{branch}  eq '' )
100           || ( $userenv->{branch} eq $basket->{branch} )
101           || ( $userenv->{branch} eq '' )
102           || ( $basket->{branch}  eq '' );
103         unless ($validtest) {
104             print $query->redirect("../mainpage.pl");
105             exit 1;
106         }
107     }
108 }
109
110 # if new basket, pre-fill infos
111 $basket->{creationdate} = ""            unless ( $basket->{creationdate} );
112 $basket->{authorisedby} = $loggedinuser unless ( $basket->{authorisedby} );
113 $debug and warn 
114         sprintf "loggedinuser: $loggedinuser; creationdate: %s; authorisedby: %s",
115                 $basket->{creationdate}, $basket->{authorisedby} ;
116
117
118 my ( $count, @results );
119 @results  = GetOrders( $basketno, $order );
120 $count = scalar @results;
121
122 my $line_total;     # total of each line
123 my $sub_total;      # total of line totals
124 my $gist;           # GST
125 my $grand_total;    # $subttotal + $gist
126 my $toggle = 0;
127
128
129 # my $line_total_est; # total of each line
130 my $sub_total_est;      # total of line totals
131 my $sub_total_rrp;      # total of line totals
132 my $gist_est;           # GST
133 my $grand_total_est;    # $subttotal + $gist
134
135 my $qty_total;
136 my @books_loop;
137 for ( my $i = 0 ; $i < $count ; $i++ ) {
138     my $rrp = $results[$i]->{'listprice'};
139     $rrp = ConvertCurrency( $results[$i]->{'currency'}, $rrp );
140     $sub_total_rrp += $results[$i]->{'quantity'} * $results[$i]->{'rrp'};
141     $line_total = $results[$i]->{'quantity'} * $results[$i]->{'ecost'};
142     $sub_total += $line_total;
143     $qty_total += $results[$i]->{'quantity'};
144     my %line;
145     %line=%{$results[$i]};
146    if ( $toggle == 0 ) {
147         $line{color} = '#EEEEEE';
148         $toggle = 1;
149     }
150     else {
151         $line{color} = 'white';
152         $toggle = 0;
153     }
154         $line{order_received} = ($results[$i]->{'quantity'} eq $results[$i]->{'quantityreceived'});
155         $line{publishercode}    = $results[$i]->{'publishercode'};
156         $line{basketno}         = $basketno;
157     $line{i}                = $i;
158     $line{rrp}              = sprintf( "%.2f", $line{'rrp'} );
159     $line{ecost}            = sprintf( "%.2f", $line{'ecost'} );
160     $line{line_total}       = sprintf( "%.2f", $line_total );
161     $line{odd}              = $i % 2;
162     push @books_loop, \%line;
163 }
164 my $prefgist = C4::Context->preference("gist");
165 $gist            = sprintf( "%.2f", $sub_total * $prefgist );
166 $grand_total     = $sub_total + $gist;
167 $grand_total_est =  $sub_total_est + sprintf( "%.2f", $sub_total_est * $prefgist );
168 my $grand_total_rrp =  sprintf( "%.2f", $sub_total_rrp );
169 $gist_est = sprintf( "%.2f", $sub_total_est * $prefgist );
170 $template->param(
171     basketno         => $basketno,
172     creationdate     => format_date( $basket->{creationdate} ),
173     authorisedby     => $basket->{authorisedby},
174     authorisedbyname => $basket->{authorisedbyname},
175     closedate        => format_date( $basket->{closedate} ),
176     active           => $booksellers[0]->{'active'},
177     booksellerid     => $booksellers[0]->{'id'},
178     name             => $booksellers[0]->{'name'},
179     address1         => $booksellers[0]->{'address1'},
180     address2         => $booksellers[0]->{'address2'},
181     address3         => $booksellers[0]->{'address3'},
182     address4         => $booksellers[0]->{'address4'},
183     entrydate        => format_date( $results[0]->{'entrydate'} ),
184     books_loop       => \@books_loop,
185     count            => $count,
186     sub_total        => sprintf( "%.2f", $sub_total),
187     gist             => $gist,
188     grand_total      => sprintf( "%.2f", $grand_total),
189     sub_total_est    => $sub_total_est,
190     gist_est         => $gist_est,
191     grand_total_est  => $grand_total_est,
192     grand_total_rrp  => $grand_total_rrp,
193     currency         => $booksellers[0]->{'listprice'},
194     qty_total        => $qty_total,
195     GST => C4::Context->preference("gist"),
196 );
197 output_html_with_http_headers $query, $cookie, $template->output;