diff options
author | ivan <ivan> | 2001-12-15 00:17:38 +0000 |
---|---|---|
committer | ivan <ivan> | 2001-12-15 00:17:38 +0000 |
commit | bca375bc3e1192968727473f4f59ba30ef034c3c (patch) | |
tree | cce115a30bf9b14b67ec0db685000b6118e363b7 /FS | |
parent | f78c8ea9034ef02671aa68512dc5458a0c693cc0 (diff) |
style changes
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 8a7d0ca30..ad6d46e96 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -856,10 +856,10 @@ sub bill { my @cust_bill_pkg = (); foreach my $cust_pkg ( - qsearch('cust_pkg',{'custnum'=> $self->getfield('custnum') } ) + qsearch('cust_pkg', { 'custnum' => $self->custnum } ) ) { - next if $cust_pkg->getfield('cancel'); + next if $cust_pkg->cancel; #? to avoid use of uninitialized value errors... ? $cust_pkg->setfield('bill', '') @@ -1880,7 +1880,7 @@ sub append_fuzzyfiles { =head1 VERSION -$Id: cust_main.pm,v 1.48 2001-12-08 10:03:11 ivan Exp $ +$Id: cust_main.pm,v 1.49 2001-12-15 00:17:38 ivan Exp $ =head1 BUGS |