Replaced expressions of the form "$x = $x <op> $y" with "$x <op>= $y".
[koha.git] / orderbreakdown.pl
1 #!/usr/bin/perl
2
3 #script to display info about acquisitions
4 #written by chris@katipo.co.nz 31/01/2000
5
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA  02111-1307 USA
23
24 use C4::Acquisitions;
25 use C4::Biblio;
26 use C4::Output;
27 use CGI;
28 my $input=new CGI;
29 print $input->header();
30 my $id=$input->param('id');
31 my ($count,$order)=breakdown($id);
32 print startpage;
33 print mktablehdr;
34 #print $id;
35 for (my$i=0;$i<$count;$i++){
36 print mktablerow(5,'white',"<b>Ordernumber:</b>$order->[$i]->{'ordernumber'}",
37 "<b>Line umber</b>:$order->[$i]->{'linenumber'}","<b>Branch Code:</b>$order->[$i]->{'branchcode'}",
38 "<b>Bookfundid</b>:$order->[$i]->{'bookfundid'}","<b>Allocation:</b>$order->[$i]->{'allocation'}");
39 }
40 print mktableft;
41 print endpage;