From 783c91b8968aa004a361a0cbbf3385bc8d1a7516 Mon Sep 17 00:00:00 2001 From: djfiander Date: Wed, 5 Apr 2006 01:53:33 +0000 Subject: [PATCH] Stub for Fee Paid functionality. Right now this is all handled in the Transaction module itself. --- ILS/Transaction/FeePayment.pm | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ILS/Transaction/FeePayment.pm diff --git a/ILS/Transaction/FeePayment.pm b/ILS/Transaction/FeePayment.pm new file mode 100644 index 0000000..09fd508 --- /dev/null +++ b/ILS/Transaction/FeePayment.pm @@ -0,0 +1,12 @@ +package ILS::Transaction::FeePaid; + +use Exporter; +use warnings; +use strict; + +use ILS; +use ILS::Transaction; + +our @ISA = qw(Exporter ILS::Transaction); + +1; -- 2.11.0