don't generate invoices for COMP customers
authorivan <ivan>
Tue, 9 Nov 2004 08:14:39 +0000 (08:14 +0000)
committerivan <ivan>
Tue, 9 Nov 2004 08:14:39 +0000 (08:14 +0000)
FS/FS/cust_main.pm

index 50cee48..d8dbd52 100644 (file)
@@ -1117,6 +1117,7 @@ If there is an error, returns the error, otherwise returns false.
 
 sub bill {
   my( $self, %options ) = @_;
+  return '' if $self->payby eq 'COMP';
   warn "bill customer ". $self->custnum if $DEBUG;
 
   my $time = $options{'time'} || time;