[Koha-cvs] koha/serials lateissues.pl

Antoine Farnault antoine at koha-fr.org
Wed Jul 12 18:46:14 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	Antoine Farnault <toins>	06/07/12 16:46:14

Modified files:
	serials        : lateissues.pl 

Log message:
	POD added.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/serials/lateissues.pl?cvsroot=koha&r1=1.2&r2=1.3

Patches:
Index: lateissues.pl
===================================================================
RCS file: /sources/koha/koha/serials/lateissues.pl,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- lateissues.pl	7 Jul 2006 09:05:23 -0000	1.2
+++ lateissues.pl	12 Jul 2006 16:46:13 -0000	1.3
@@ -17,7 +17,26 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id: lateissues.pl,v 1.2 2006/07/07 09:05:23 toins Exp $
+# $Id: lateissues.pl,v 1.3 2006/07/12 16:46:13 toins Exp $
+
+=head1 NAME
+
+lateissues
+
+=head1 DESCRIPTION
+
+this script display late issue by types.
+
+=head1 PARAMETERS
+
+=over 4
+
+=item supplierid
+the id of the supplier this script has to search late issues.
+
+=back
+
+=cut
 
 use strict;
 use CGI;
@@ -35,13 +54,14 @@
 # my @subscriptions = GetSubscriptions($title,$ISSN);
 
 my $supplierid = $query->param('supplierid');
-my %supplierlist = GetSupplierListWithLateIssues;
+my %supplierlist = GetSuppliersWithLateIssues;
 my @select_supplier;
 push @select_supplier,"";
 foreach my $supplierid (keys %supplierlist){
 	push @select_supplier, $supplierid
 }
-my $CGIsupplier=CGI::scrolling_list( -name     => 'supplierid',
+my $CGIsupplier=CGI::scrolling_list(
+            -name     => 'supplierid',
 			-values   => \@select_supplier,
 			-default  => $supplierid,
 			-labels   => \%supplierlist,





More information about the Koha-cvs mailing list