[Koha-cvs] koha circ/bookcount.pl koha-tmpl/intranet-tmpl/... [rel_3_0]

Antoine Farnault antoine at koha-fr.org
Thu Oct 19 12:01:42 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_3_0
Changes by:	Antoine Farnault <toins>	06/10/19 10:01:42

Added files:
	circ           : bookcount.pl 
	koha-tmpl/intranet-tmpl/prog/en/circ: bookcount.tmpl 

Log message:
	this script was missing on rel_3_0.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/circ/bookcount.pl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/circ/bookcount.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1

Patches:
Index: circ/bookcount.pl
===================================================================
RCS file: circ/bookcount.pl
diff -N circ/bookcount.pl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ circ/bookcount.pl	19 Oct 2006 10:01:42 -0000	1.1.2.1
@@ -0,0 +1,191 @@
+#!/usr/bin/perl
+
+# $Id: bookcount.pl,v 1.1.2.1 2006/10/19 10:01:42 toins Exp $
+
+#written 7/3/2002 by Finlay
+#script to display reports
+
+
+# Copyright 2000-2002 Katipo Communications
+#
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA  02111-1307 USA
+
+use strict;
+use CGI;
+use C4::Context;
+use C4::Search;
+use C4::Circulation::Circ2;
+use C4::Output;
+use C4::Koha;
+use C4::Auth;
+use HTML::Template;
+use C4::Date;
+
+# get all the data ....
+my %env;
+my $main='#cccc99';
+my $secondary='#ffffcc';
+
+my $input = new CGI;
+my $itm = $input->param('itm');
+my $bi = $input->param('bi');
+my $bib = $input->param('bib');
+my $branches = GetBranches(\%env);
+
+my $idata = itemdatanum($itm);
+my $data = bibitemdata($bi);
+
+my $homebranch = $branches->{$idata->{'homebranch'}}->{'branchname'};
+my $holdingbranch = $branches->{$idata->{'holdingbranch'}}->{'branchname'};
+
+my ($lastmove, $message) = lastmove($itm);
+
+my $lastdate;
+my $count;
+if (not $lastmove) {
+    $lastdate = $message;
+    $count = issuessince($itm , 0);
+} else {
+    $lastdate = $lastmove->{'datearrived'};
+    $count = issuessince($itm ,$lastdate);
+}
+
+# make the page ...
+
+my ($template, $loggedinuser, $cookie)
+      = get_template_and_user({template_name => "circ/bookcount.tmpl",
+	                                 query => $input,
+	                                 type => "intranet",
+	                                 authnotrequired => 0,
+	                                 flagsrequired => {borrowers => 1},
+	                                 debug => 1,
+	                                 });
+
+
+
+my @branchloop;
+
+foreach my $branchcode (keys %$branches) {
+	my %linebranch;
+    $linebranch{issues} = issuesat($itm, $branchcode);
+    my $date = lastseenat($itm, $branchcode);
+    $linebranch{seen} = slashdate($date);
+	$linebranch{branchname}=$branches->{$branchcode}->{'branchname'};
+	push(@branchloop,\%linebranch);
+}
+
+$template->param(	bib => $bib,
+								title => $data->{'title'},
+								author => $data->{'author'},
+								barcode => $idata->{'barcode'},
+								biblioitemnumber => $bi,
+								homebranch =>$homebranch,
+								holdingbranch => $holdingbranch,
+								lastdate =>  format_date($lastdate),
+								count =>  $count,
+								branchloop => \@branchloop,
+								intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
+		intranetstylesheet => C4::Context->preference("intranetstylesheet"),
+		IntranetNav => C4::Context->preference("IntranetNav"),
+		);
+
+print "Content-Type: text/html\n\n", $template->output;
+
+##############################################
+# This stuff should probably go into C4::Search
+# database includes
+use DBI;
+
+sub itemdatanum {
+    my ($itemnumber)=@_;
+    my $dbh = C4::Context->dbh;
+    my $sth=$dbh->prepare("select * from items where itemnumber=?");
+    $sth->execute($itemnumber);
+    my $data=$sth->fetchrow_hashref;
+    $sth->finish;
+    return($data);
+}
+
+sub lastmove {
+      my ($itemnumber)=@_;
+      my $dbh = C4::Context->dbh;
+      my $sth =$dbh->prepare("select max(branchtransfers.datearrived) from branchtransfers where branchtransfers.itemnumber=?");
+      $sth->execute($itemnumber);
+      my ($date) = $sth->fetchrow_array;
+      return(0, "Item has no branch transfers record") if not $date;
+      $sth=$dbh->prepare("Select * from branchtransfers where branchtransfers.itemnumber=? and branchtransfers.datearrived=?");
+      $sth->execute($itemnumber,$date);
+      my ($data) = $sth->fetchrow_hashref;
+      return(0, "Item has no branch transfers record") if not $data;
+      $sth->finish;
+      return($data,"");
+ }
+
+sub issuessince {
+      my ($itemnumber, $date)=@_;
+      my $dbh = C4::Context->dbh;
+      my $sth=$dbh->prepare("Select count(*) from issues where issues.itemnumber=? and issues.timestamp > ?");
+      $sth->execute($itemnumber,$date);
+      my $count=$sth->fetchrow_hashref;
+      $sth->finish;
+      return($count->{'count(*)'});
+}
+
+sub issuesat {
+      my ($itemnumber, $brcd)=@_;
+      my $dbh = C4::Context->dbh;
+      my $sth=$dbh->prepare("Select count(*) from issues where itemnumber=? and branchcode = ?");
+      $sth->execute($itemnumber,$brcd);
+      my ($count)=$sth->fetchrow_array;
+      $sth->finish;
+      return($count);
+}
+
+sub lastseenat {
+      my ($itm, $brc)=@_;
+      my $dbh = C4::Context->dbh;
+      my $sth=$dbh->prepare("Select max(timestamp) from issues where itemnumber=? and branchcode = ?");
+      $sth->execute($itm,$brc);
+      my ($date1)=$sth->fetchrow_array;
+      $sth->finish;
+      $sth=$dbh->prepare("Select max(datearrived) from branchtransfers where itemnumber=? and tobranch = ?");
+      $sth->execute($itm,$brc);
+      my ($date2)=$sth->fetchrow_array;
+      $sth->finish;
+      #FIXME: MJR thinks unsafe
+      $date2 =~ s/-//g;
+      $date2 =~ s/://g;
+      $date2 =~ s/ //g;
+      my $date;
+      if ($date1 < $date2) {
+	  $date = $date2;
+      } else {
+	  $date = $date1;
+      }
+      return($date);
+}
+
+
+#####################################################
+# write date....
+sub slashdate {
+    my ($date) = @_;
+    if (not $date) {
+	return "never";
+    }
+    my ($yr, $mo, $da, $hr, $mi) = (substr($date, 0, 4), substr($date, 4, 2), substr($date, 6, 2), substr($date, 8, 2), substr($date, 10, 2));
+    return "$hr:$mi  " . format_date("$yr-$mo-$da");
+}

Index: koha-tmpl/intranet-tmpl/prog/en/circ/bookcount.tmpl
===================================================================
RCS file: koha-tmpl/intranet-tmpl/prog/en/circ/bookcount.tmpl
diff -N koha-tmpl/intranet-tmpl/prog/en/circ/bookcount.tmpl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ koha-tmpl/intranet-tmpl/prog/en/circ/bookcount.tmpl	19 Oct 2006 10:01:42 -0000	1.1.2.1
@@ -0,0 +1,36 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Circulation Statistics for <!-- TMPL_VAR Name="title" --><!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+<!-- TMPL_INCLUDE NAME="menus.inc" -->
+<!-- TMPL_INCLUDE NAME="menus-circ.inc" -->
+
+<h1>
+<!-- TMPL_VAR Name="title" --> <!-- TMPL_IF NAME="author" -->(<!-- TMPL_VAR Name="author" -->)<!-- /TMPL_IF --></a></h1>
+<h2>Barcode <!-- TMPL_VAR Name="barcode" --></h2>
+<div class="tabitem"><form action="/cgi-bin/koha/detail.pl" method="get"><input type="hidden" name="bib" value="<!-- TMPL_VAR Name="bib" -->"><input type="hidden" name="type" value="intra"><input type="submit" class="submit" value="Brief Display"></form> <form action="/cgi-bin/koha/moredetail.pl" method="get"><input type="hidden" name="type" value="<!-- TMPL_VAR NAME="type" -->"><input type="hidden" name="item" value="<!-- TMPL_VAR NAME="itemnumber" -->"><input type="hidden" name="bib" value="<!-- TMPL_VAR NAME="bib" -->"><input type="hidden" name="bi" value="<!-- TMPL_VAR NAME="biblioitemnumber" -->"> <input type="submit" class="submit" value="Item Details"></form><!-- TMPL_IF NAME="norequests" --><!-- TMPL_ELSE --> <form action="request.pl" method="get"><input type="hidden" value="<!-- TMPL_VAR name="bib" -->" name="bib"> <input type="submit" value="Place Reserve" class="submit"></form><!-- /TMPL_IF --></div>
+<div class="data">
+<table>
+		<tr><th>Home Branch: </th><td> <!-- TMPL_VAR Name="homebranch" --> </td></tr>
+		<tr><th>Current Branch: </th><td> <!-- TMPL_VAR Name="holdingbranch" --></td></tr>
+		<tr><th>Date arrived at current branch: </th><td> <!-- TMPL_VAR Name="lastdate" --> </td></tr>
+		<tr><th>Number of issues since since the above date :</th><td> <!-- TMPL_VAR Name="count" --> </td></tr>
+</table>
+</div>
+<div class="table">
+		<table>
+			<tr>
+				<th> Branch</th>
+				<th> No. of Issues</th>
+				<th> Last seen at branch</th>
+			</tr>
+			<!-- TMPL_LOOP Name="branchloop" -->
+				<tr>
+					<td class="data"><!-- TMPL_VAR Name="branchname" --> </td>
+					<td class="data"><!-- TMPL_VAR Name="issues" --> </td>
+					<td class="data"><!-- TMPL_VAR Name="seen" --> </td>
+				</tr>
+			<!-- /TMPL_LOOP -->
+		</table></div>
+		</td>
+	</tr>
+</table>
+
+<!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->





More information about the Koha-cvs mailing list