1 package FS::cust_bill_batch;
4 use vars qw( @ISA $me $DEBUG );
5 use FS::Record qw( qsearch qsearchs dbh );
7 @ISA = qw( FS::option_Common );
8 $me = '[ FS::cust_bill_batch ]';
11 sub table { 'cust_bill_batch' }
15 FS::cust_bill_batch - Object methods for cust_bill_batch records
19 An FS::cust_bill_batch object represents the inclusion of an invoice in a
20 processing batch. FS::cust_bill_batch inherits from FS::option_Common. The
21 following fields are currently supported:
25 =item billbatchnum - primary key
27 =item invnum - invoice number (see C<FS::cust_bill>)
29 =item batchnum - batchn number (see C<FS::bill_batch>)
39 Returns the C<FS::bill_batch> object.
45 FS::bill_batch->by_key($self->batchnum);
50 Returns the C<FS::cust_bill> object.
56 FS::cust_bill->by_key($self->invnum);
65 L<FS::Record>, schema.html from the base documentation.