[Koha-cvs] koha/C4/Circulation Fines.pm [rel_2_2]

Joshua Ferraro jmf at kados.org
Thu Aug 3 05:22:24 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_2_2
Changes by:	Joshua Ferraro <kados>	06/08/03 03:22:21

Modified files:
	C4/Circulation : Fines.pm 

Log message:
	fix for bug 1086: added list of file types to Fines.pm

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Circulation/Fines.pm?cvsroot=koha&only_with_tag=rel_2_2&r1=1.9.2.2&r2=1.9.2.3

Patches:
Index: Fines.pm
===================================================================
RCS file: /sources/koha/koha/C4/Circulation/Fines.pm,v
retrieving revision 1.9.2.2
retrieving revision 1.9.2.3
diff -u -b -r1.9.2.2 -r1.9.2.3
--- Fines.pm	5 Oct 2005 09:46:36 -0000	1.9.2.2
+++ Fines.pm	3 Aug 2006 03:22:21 -0000	1.9.2.3
@@ -1,6 +1,6 @@
 package C4::Circulation::Fines;
 
-# $Id: Fines.pm,v 1.9.2.2 2005/10/05 09:46:36 tipaul Exp $
+# $Id: Fines.pm,v 1.9.2.3 2006/08/03 03:22:21 kados Exp $
 
 # Copyright 2000-2002 Katipo Communications
 #
@@ -238,6 +238,24 @@
   # account type has one of several values, but what does this _mean_?
   # Does it look up existing fines for this item?
   # FIXME - What are these various account types? ("FU", "O", "F", "M")
+  # +   #  L    : Lost Item
+  # +   #  LR   : Lost and Replaced ?
+  # +   #  F    : Fine
+  # +   #  FU   : Fine Updated
+  # +   #  FN   : 
+  # +   #  O    : Overdue ?
+  # +   #  A    : Account Management Fee
+  # +   #  N    : New Card
+  # +   #  M    : Sundry
+  # +   #  REF  : Cash Refund
+  # +   #  Rep  : Replaced ?
+  # +   #  Res  : 
+  # +   #  Rent : Rental
+  # +   #  C    : Credit
+  # +   #  CR   : Credit for Returned book ?
+  # +   #  F    : Forgiven
+  # +   #  Pay  : Payment
+  # +   #  W    : Write Off
   my $sth=$dbh->prepare("Select * from accountlines where itemnumber=? and
   borrowernumber=? and (accounttype='FU' or accounttype='O' or
   accounttype='F' or accounttype='M') and description like ?");





More information about the Koha-cvs mailing list