LP 1198465: Update CDBI/money.pm for adjustment_payment
authorJason Stephenson <jason@sigio.com>
Wed, 8 Jan 2014 01:44:47 +0000 (20:44 -0500)
committerDan Wells <dbw2@calvin.edu>
Wed, 5 Mar 2014 22:21:20 +0000 (17:21 -0500)
Signed-off-by: Dan Wells <dbw2@calvin.edu>
Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/CDBI/money.pm

index ddf366e..21b986f 100644 (file)
@@ -144,5 +144,13 @@ __PACKAGE__->table('money_credit_payment');
 
 #-------------------------------------------------------------------------------
 
+package money::adjustment_payment;
+use base qw/money/;
+__PACKAGE__->table('money_adjustment_payment');
+__PACKAGE__->columns(Primary => 'id');
+__PACKAGE__->columns(Essential => qw/xact amount payment_ts note accepting_usr
+                                     amount_collected voided billing/);
+#-------------------------------------------------------------------------------
+
 1;