Warning: big commit Fixing moredetail.pl
[koha.git] / catalogue / moredetail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2003 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20
21 use strict;
22 require Exporter;
23 use C4::Koha;
24 use CGI;
25 use C4::Biblio;             # to use &GetBiblioItemData &GetItemsByBiblioitemnumber
26 use C4::Branch;
27 use C4::Acquisition;
28 use C4::Output;             # contains gettemplate
29 use C4::Auth;
30 use C4::Dates qw/format_date/;
31 use C4::Circulation;  # to use itemissues
32
33 my $query=new CGI;
34
35 # FIXME  subject is not exported to the template?
36 my $subject=$query->param('subject');
37
38 # if its a subject we need to use the subject.tmpl
39 my ($template, $loggedinuser, $cookie) = get_template_and_user({
40     template_name   => ($subject? 'catalogue/subject.tmpl':
41                       'catalogue/moredetail.tmpl'),
42     query           => $query,
43     type            => "intranet",
44     authnotrequired => 0,
45     flagsrequired   => {catalogue => 1},
46     });
47
48 # get variables
49
50 my $biblionumber=$query->param('biblionumber');
51 my $title=$query->param('title');
52 # my $bi=$query->param('bi');
53 # $bi = $biblionumber unless $bi;
54 my $data=GetBiblioData($biblionumber);
55 my $dewey = $data->{'dewey'};
56
57 # FIXME Dewey is a string, not a number, & we should use a function
58 # $dewey =~ s/0+$//;
59 # if ($dewey eq "000.") { $dewey = "";};
60 # if ($dewey < 10){$dewey='00'.$dewey;}
61 # if ($dewey < 100 && $dewey > 10){$dewey='0'.$dewey;}
62 # if ($dewey <= 0){
63 #      $dewey='';
64 # }
65 # $dewey=~ s/\.$//;
66 # $data->{'dewey'}=$dewey;
67
68 my @results;
69 my $fw = GetFrameworkCode($biblionumber);
70 my @items= GetItemsInfo($biblionumber);
71 my $count=@items;
72 $data->{'count'}=$count;
73
74 my $ordernum = GetOrderNumber($biblionumber);
75 my $order = GetOrder($ordernum);
76 my $ccodes= GetKohaAuthorisedValues('items.ccode',$fw);
77 my $itemtypes = GetItemTypes;
78
79 $data->{'itemtypename'} = $itemtypes->{$data->{'itemtype'}}->{'description'};
80 $results[0]=$data;
81 foreach my $item (@items){
82     $item->{itemlostloop}= GetAuthorisedValues(GetAuthValCode('items.itemlost',$fw),$item->{itemlost}) if GetAuthValCode('items.itemlost',$fw);
83     $item->{itemdamagedloop}= GetAuthorisedValues(GetAuthValCode('items.damaged',$fw),$item->{damaged}) if GetAuthValCode('items.damaged',$fw);
84     $item->{'collection'} = $ccodes->{$item->{ccode}};
85     $item->{'itype'} = $itemtypes->{$item->{'itype'}}->{'description'}; 
86     $item->{'replacementprice'}=sprintf("%.2f", $item->{'replacementprice'});
87     $item->{'datelastborrowed'}= format_date($item->{'datelastborrowed'});
88     $item->{'dateaccessioned'} = format_date($item->{'dateaccessioned'});
89     $item->{'datelastseen'} = format_date($item->{'datelastseen'});
90     $item->{'ordernumber'} = $ordernum;
91     $item->{'booksellerinvoicenumber'} = $order->{'booksellerinvoicenumber'};
92     $item->{'homebranchname'} = GetBranchName($item->{'homebranch'});
93     $item->{'holdingbranchname'} = GetBranchName($item->{'holdingbranch'});
94     if ($item->{'date_due'} eq ''){
95         $item->{'issue'}= 0;
96     } else {
97         $item->{'date_due'} = format_date($item->{'date_due'});
98         $item->{'issue'}= 1;
99     }
100 }
101 $template->param(count => $data->{'count'});
102 $template->param(BIBITEM_DATA => \@results);
103 $template->param(ITEM_DATA => \@items);
104 $template->param(moredetailview => 1);
105 $template->param(loggedinuser => $loggedinuser);
106 $template->param(biblionumber => $biblionumber);
107
108 output_html_with_http_headers $query, $cookie, $template->output;
109