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

index 070a888..011308c 100644 (file)
@@ -1098,6 +1098,7 @@ If there is an error, returns the error, otherwise returns false.
 
 sub bill {
   my( $self, %options ) = @_;
+  return '' if $self->payby eq 'COMP';
   my $time = $options{'time'} || time;
 
   my $error;