X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Flog_context.pm;h=387883b631384479ba7977275601632d41766e89;hb=09af85fc0e7a48392c930c9672a99448cf9630d4;hp=db97c9b6829323a54f8bc4e2ba7885cd9c2a49ac;hpb=bb8a2550ea2c6f666af51f8c040819e854f9022d;p=freeside.git diff --git a/FS/FS/log_context.pm b/FS/FS/log_context.pm index db97c9b68..387883b63 100644 --- a/FS/FS/log_context.pm +++ b/FS/FS/log_context.pm @@ -5,17 +5,31 @@ use base qw( FS::Record ); use FS::Record qw( qsearch qsearchs ); my @contexts = ( qw( - test bill_and_collect FS::cust_main::Billing::bill_and_collect FS::cust_main::Billing::bill + FS::cust_main::Billing_Realtime::realtime_bop + FS::cust_main::Billing_Realtime::realtime_tokenize + FS::cust_main::Billing_Realtime::realtime_verify_bop + FS::cust_main::Billing_Realtime::token_check + FS::pay_batch::import_from_gateway + FS::part_pkg + FS::Misc::Geo::standardize_uscensus + FS::saved_search::send + FS::saved_search::render + FS::cust_location::process_district_update Cron::bill + Cron::backup Cron::upload spool_upload daily queue upgrade upgrade_taxable_billpkgnum + freeside-paymentech-upload + freeside-paymentech-download + test + FS::TaxEngine::billsoft ) ); =head1 NAME @@ -67,8 +81,6 @@ points to. You can ask the object for a copy with the I method. =cut -# the new method can be inherited from FS::Record, if a table method is defined - sub table { 'log_context'; } =item insert @@ -76,27 +88,15 @@ sub table { 'log_context'; } Adds this record to the database. If there is an error, returns the error, otherwise returns false. -=cut - -# the insert method can be inherited from FS::Record - =item delete Delete this record from the database. -=cut - -# the delete method can be inherited from FS::Record - =item replace OLD_RECORD Replaces the OLD_RECORD with this one in the database. If there is an error, returns the error, otherwise returns false. -=cut - -# the replace method can be inherited from FS::Record - =item check Checks all fields to make sure this is a valid example. If there is @@ -105,17 +105,13 @@ and replace methods. =cut -# the check method should currently be supplied - FS::Record contains some -# data checking routines - sub check { my $self = shift; my $error = $self->ut_numbern('logcontextnum') || $self->ut_number('lognum') - #|| $self->ut_enum('context', \@contexts) - #|| $self->ut_enum('context', \@contexts) + || $self->ut_text('context') #|| $self->ut_enum('context', \@contexts) ; return $error if $error;