From: miker Date: Wed, 5 Dec 2007 19:32:58 +0000 (+0000) Subject: adding voided field to money::payment -- another log-causing oversight X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9ea14be2c8afcb89925ae497468742c0f5d4ee18;p=Evergreen.git adding voided field to money::payment -- another log-causing oversight git-svn-id: svn://svn.open-ils.org/ILS/trunk@8144 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/examples/fm_IDL.xml b/Open-ILS/examples/fm_IDL.xml index 616dcaaa2d..8aff39e24c 100644 --- a/Open-ILS/examples/fm_IDL.xml +++ b/Open-ILS/examples/fm_IDL.xml @@ -2032,6 +2032,7 @@ + diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/money.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/money.pm index af1cb899fe..e458bc7b01 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/money.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/money.pm @@ -86,7 +86,7 @@ package money::payment; use base qw/money/; __PACKAGE__->table('money_payment'); __PACKAGE__->columns(Primary => 'id'); -__PACKAGE__->columns(Essential => qw/xact amount payment_ts payment_type note/); +__PACKAGE__->columns(Essential => qw/xact amount payment_ts payment_type note voided/); #------------------------------------------------------------------------------- package money::desk_payment;