X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Flog_context.pm;h=83414a680fabcfd44df696f0ad092156a4a6b56d;hp=a254905880f0010b68807e3d2038abd2507c68ab;hb=5fd15230317a0a6b6fcb70d5b83712c8f827ebb1;hpb=d7e62d5ea2b5d3f3c7b8ba3da39cce1a606dc3d3 diff --git a/FS/FS/log_context.pm b/FS/FS/log_context.pm index a25490588..83414a680 100644 --- a/FS/FS/log_context.pm +++ b/FS/FS/log_context.pm @@ -7,13 +7,22 @@ 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_verify_bop + FS::pay_batch::import_from_gateway + FS::part_pkg + FS::Misc::Geo::standardize_uscensus Cron::bill + Cron::backup Cron::upload spool_upload daily queue upgrade upgrade_taxable_billpkgnum + freeside-paymentech-upload + freeside-paymentech-download ) ); =head1 NAME @@ -65,8 +74,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 @@ -74,27 +81,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 @@ -103,16 +98,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_text('context') #|| $self->ut_enum('context', \@contexts) ; return $error if $error;