perltidy before commit.
[koha-ffzg.git] / acqui / basket.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 #script to show display basket of orders
6 #written by chris@katipo.co.nz 24/2/2000
7
8 # Copyright 2000-2002 Katipo Communications
9 #
10 # This file is part of Koha.
11 #
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
15 # version.
16 #
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License along with
22 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23 # Suite 330, Boston, MA  02111-1307 USA
24
25 use strict;
26 use C4::Auth;
27 use C4::Koha;
28 use C4::Output;
29 use CGI;
30 use C4::Interface::CGI::Output;
31 use C4::Database;
32 use HTML::Template;
33 use C4::Acquisition;
34 use C4::Date;
35
36 my $query        = new CGI;
37 my $basketno     = $query->param('basket');
38 my $booksellerid = $query->param('supplierid');
39 my $order        = $query->param('order');
40 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
41     {
42         template_name   => "acqui/basket.tmpl",
43         query           => $query,
44         type            => "intranet",
45         authnotrequired => 0,
46         flagsrequired   => { acquisition => 1 },
47         debug           => 1,
48     }
49 );
50 my ( $count, @results );
51
52 my $basket = getbasket($basketno);
53
54 # FIXME : the query->param('supplierid') below is probably useless. The bookseller is always known from the basket
55 # if no booksellerid in parameter, get it from basket
56 # warn "=>".$basket->{booksellerid};
57 $booksellerid = $basket->{booksellerid} unless $booksellerid;
58 my ( $count2, @booksellers ) = bookseller($booksellerid);
59
60 # get librarian branch...
61 if ( C4::Context->preference("IndependantBranches") ) {
62     my $userenv = C4::Context->userenv;
63     unless ( $userenv->{flags} == 1 ) {
64         my $validtest = ( $basket->{creationdate} eq '' )
65           || ( $basket->{branch}  eq '' )
66           || ( $userenv->{branch} eq $basket->{branch} )
67           || ( $userenv->{branch} eq '' )
68           || ( $basket->{branch}  eq '' );
69         unless ($validtest) {
70             print $query->redirect("../mainpage.pl");
71             exit 1;
72         }
73     }
74 }
75
76 # if new basket, pre-fill infos
77 $basket->{creationdate} = ""            unless ( $basket->{creationdate} );
78 $basket->{authorisedby} = $loggedinuser unless ( $basket->{authorisedby} );
79 ( $count, @results ) = getbasketcontent( $basketno, '', $order );
80
81 my $line_total;     # total of each line
82 my $sub_total;      # total of line totals
83 my $gist;           # GST
84 my $grand_total;    # $subttotal + $gist
85
86 # my $line_total_est; # total of each line
87 my $sub_total_est;      # total of line totals
88 my $gist_est;           # GST
89 my $grand_total_est;    # $subttotal + $gist
90
91 my $qty_total;
92
93 my @books_loop;
94 for ( my $i = 0 ; $i < $count ; $i++ ) {
95     my $rrp = $results[$i]->{'listprice'};
96     $rrp = curconvert( $results[$i]->{'currency'}, $rrp );
97
98     $sub_total_est += $results[$i]->{'quantity'} * $results[$i]->{'rrp'};
99     $line_total = $results[$i]->{'quantity'} * $results[$i]->{'ecost'};
100     $sub_total += $line_total;
101     $qty_total += $results[$i]->{'quantity'};
102     my %line;
103     $line{ordernumber}      = $results[$i]->{'ordernumber'};
104     $line{publishercode}    = $results[$i]->{'publishercode'};
105     $line{isbn}             = $results[$i]->{'isbn'};
106     $line{booksellerid}     = $results[$i]->{'booksellerid'};
107     $line{basketno}         = $basketno;
108     $line{title}            = $results[$i]->{'title'};
109     $line{notes}            = $results[$i]->{'notes'};
110     $line{author}           = $results[$i]->{'author'};
111     $line{i}                = $i;
112     $line{rrp}              = sprintf( "%.2f", $results[$i]->{'rrp'} );
113     $line{ecost}            = sprintf( "%.2f", $results[$i]->{'ecost'} );
114     $line{quantity}         = $results[$i]->{'quantity'};
115     $line{quantityrecieved} = $results[$i]->{'quantityreceived'};
116     $line{line_total}       = sprintf( "%.2f", $line_total );
117     $line{biblionumber}     = $results[$i]->{'biblionumber'};
118     $line{bookfundid}       = $results[$i]->{'bookfundid'};
119     $line{odd}              = $i % 2;
120     push @books_loop, \%line;
121 }
122 my $prefgist = C4::Context->preference("gist");
123 $gist            = sprintf( "%.2f", $sub_total * $prefgist );
124 $grand_total     = $sub_total + $gist;
125 $grand_total_est =
126   $sub_total_est + sprintf( "%.2f", $sub_total_est * $prefgist );
127 $gist_est = sprintf( "%.2f", $sub_total_est * $prefgist );
128 $template->param(
129     basketno         => $basketno,
130     creationdate     => format_date( $basket->{creationdate} ),
131     authorisedby     => $basket->{authorisedby},
132     authorisedbyname => $basket->{authorisedbyname},
133     closedate        => format_date( $basket->{closedate} ),
134     active           => $booksellers[0]->{'active'},
135     booksellerid     => $booksellers[0]->{'id'},
136     name             => $booksellers[0]->{'name'},
137     address1         => $booksellers[0]->{'address1'},
138     address2         => $booksellers[0]->{'address2'},
139     address3         => $booksellers[0]->{'address3'},
140     address4         => $booksellers[0]->{'address4'},
141     entrydate        => format_date( $results[0]->{'entrydate'} ),
142     books_loop       => \@books_loop,
143     count            => $count,
144     sub_total        => $sub_total,
145     gist             => $gist,
146     grand_total      => $grand_total,
147     sub_total_est    => $sub_total_est,
148     gist_est         => $gist_est,
149     grand_total_est  => $grand_total_est,
150     currency         => $booksellers[0]->{'listprice'},
151     qty_total        => $qty_total,
152 );
153 output_html_with_http_headers $query, $cookie, $template->output;