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)
committerBen Shum <bshum@biblio.org>
Tue, 28 Jul 2015 20:24:36 +0000 (16:24 -0400)
Signed-off-by: Dan Wells <dbw2@calvin.edu>
Signed-off-by: Kathy Lussier <klussier@masslnc.org>
Signed-off-by: Ben Shum <bshum@biblio.org>
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;