From f2c1fc57931db1a46f8871b295d68849b055e497 Mon Sep 17 00:00:00 2001 From: Joe Atzberger Date: Thu, 18 Sep 2008 19:02:49 -0500 Subject: [PATCH] Revising the stub for ILS/Transaction/FeePayment.pm Obviously more implementation is needed. Signed-off-by: Galen Charlton --- C4/SIP/ILS/Transaction/FeePayment.pm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/C4/SIP/ILS/Transaction/FeePayment.pm b/C4/SIP/ILS/Transaction/FeePayment.pm index 00fc81ab17..8a156b74c8 100644 --- a/C4/SIP/ILS/Transaction/FeePayment.pm +++ b/C4/SIP/ILS/Transaction/FeePayment.pm @@ -1,14 +1,19 @@ package ILS::Transaction::FeePayment; -use Exporter; use warnings; use strict; +use vars qw($VERSION @ISA $debug); + +BEGIN { + $VERSION = 1.00; + @ISA = qw(ILS::Transaction); + $debug = 0; +} + use ILS; use ILS::Transaction; -our @ISA = qw(Exporter ILS::Transaction); - 1; __END__ -- 2.20.1