From: djfiander Date: Wed, 5 Apr 2006 01:53:33 +0000 (+0000) Subject: Stub for Fee Paid functionality. Right now this is all handled X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=783c91b8968aa004a361a0cbbf3385bc8d1a7516;p=working%2FSIPServer.git Stub for Fee Paid functionality. Right now this is all handled in the Transaction module itself. --- 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;