X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fcust_credit.pm;h=ad888f9d19ba3d21b5ed787f85a879b66d9e05fc;hp=624971388db97b2950a9dc25ccc8d28712fe8de6;hb=ffa18709ee8a4d05e18d2d406cf73afe79e52524;hpb=068b074adcb3cd0c4d0b39d407c7bb2272a9cade diff --git a/FS/FS/cust_credit.pm b/FS/FS/cust_credit.pm index 624971388..ad888f9d1 100644 --- a/FS/FS/cust_credit.pm +++ b/FS/FS/cust_credit.pm @@ -140,12 +140,12 @@ Ooptions are passed as a list of keys and values. Available options: =item reason_type -L type for newly-inserted reason +L Reason type for newly-inserted reason =item cust_credit_source_bill_pkg An arrayref of -L objects. +L objects. They will have their crednum set and will be inserted along with this credit. =back @@ -167,6 +167,10 @@ sub insert { my $dbh = dbh; my $cust_main = qsearchs( 'cust_main', { 'custnum' => $self->custnum } ); + unless ( $cust_main ) { + $dbh->rollback if $oldAutoCommit; + return "Unknown custnum ". $self->custnum; + } my $old_balance = $cust_main->balance; if (!$self->reasonnum) {