update cardnumber to 16 digits
[koha.git] / moredetail.pl
1 #!/usr/bin/perl
2 # NOTE: Use standard 8-space tabs for this file (indents are 4 spaces)
3
4 # $Id$
5
6 # Copyright 2000-2003 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 use HTML::Template;
24 use strict;
25 require Exporter;
26 use C4::Koha;
27 use CGI;
28 use C4::Search;
29 use C4::Catalogue;
30 use C4::Output; # contains gettemplate
31 use C4::Auth;
32 use C4::Interface::CGI::Output;
33 use C4::Date;
34
35 my $query=new CGI;
36
37 # FIXME  subject is not exported to the template?
38 my $subject=$query->param('subject');
39
40 # if its a subject we need to use the subject.tmpl
41 my ($template, $loggedinuser, $cookie) = get_template_and_user({
42         template_name   => ($subject? 'catalogue/subject.tmpl':
43                                       'catalogue/moredetail.tmpl'),
44         query           => $query,
45         type            => "intranet",
46         authnotrequired => 0,
47         flagsrequired   => {catalogue => 1},
48     });
49
50 # get variables
51
52 my $biblionumber=$query->param('bib');
53 my $title=$query->param('title');
54 my $bi=$query->param('bi');
55
56 my $data=bibitemdata($bi);
57 my $dewey = $data->{'dewey'};
58 # FIXME Dewey is a string, not a number, & we should use a function
59 $dewey =~ s/0+$//;
60 if ($dewey eq "000.") { $dewey = "";};
61 if ($dewey < 10){$dewey='00'.$dewey;}
62 if ($dewey < 100 && $dewey > 10){$dewey='0'.$dewey;}
63 if ($dewey <= 0){
64       $dewey='';
65 }
66 $dewey=~ s/\.$//;
67 $data->{'dewey'}=$dewey;
68
69 my @results;
70
71 my (@items)=itemissues($bi);
72 my $count=@items;
73 $data->{'count'}=$count;
74 my ($order,$ordernum)=getorder($bi,$biblionumber);
75
76 my $env;
77 $env->{itemcount}=1;
78
79 $results[0]=$data;
80
81 foreach my $item (@items){
82     $item->{'itemlost'}=~ s/0/No/;
83     $item->{'itemlost'}=~ s/1/Yes/;
84     $item->{'withdrawn'}=~ s/0/No/;
85     $item->{'withdrawn'}=~ s/1/Yes/;
86     $item->{'replacementprice'}+=0.00;
87     my $year=substr($item->{'timestamp0'},0,4);
88     my $mon=substr($item->{'timestamp0'},4,2);
89     my $day=substr($item->{'timestamp0'},6,2);
90     $item->{'timestamp0'}="$day/$mon/$year";
91     $item->{'dateaccessioned'} = format_date($item->{'dateaccessioned'});
92     $item->{'datelastseen'} = format_date($item->{'datelastseen'});
93     $item->{'ordernumber'} = $ordernum;
94     $item->{'booksellerinvoicenumber'} = $order->{'booksellerinvoicenumber'};
95
96     # FIXME untranslatable strings
97     if ($item->{'date_due'} eq 'Available'){
98         $item->{'issue'}="<b>Available</b><br>";
99     } else {
100         $item->{'issue'}="<b>Currently on issue to:</b> <a href=/cgi-bin/koha/moremember.pl?bornum=$item->{'borrower'}>$item->{'card'}</a><br>";
101     }
102 }
103
104 $template->param(BIBITEM_DATA => \@results);
105 $template->param(ITEM_DATA => \@items);
106 $template->param(loggedinuser => $loggedinuser);
107
108 output_html_with_http_headers $query, $cookie, $template->output;
109
110
111 # Local Variables:
112 # tab-width: 8
113 # End: