RT# 83450 - fixed rateplan export
[freeside.git] / FS / FS / cust_bill_batch.pm
1 package FS::cust_bill_batch;
2 use base qw( FS::option_Common );
3
4 use strict;
5 use vars qw( $me $DEBUG );
6
7 $me = '[ FS::cust_bill_batch ]';
8 $DEBUG = 0;
9
10 sub table { 'cust_bill_batch' }
11
12 =head1 NAME
13
14 FS::cust_bill_batch - Object methods for cust_bill_batch records
15
16 =head1 DESCRIPTION
17
18 An FS::cust_bill_batch object represents the inclusion of an invoice in a 
19 processing batch.  FS::cust_bill_batch inherits from FS::option_Common.  The 
20 following fields are currently supported:
21
22 =over 4
23
24 =item billbatchnum - primary key
25
26 =item invnum - invoice number (see C<FS::cust_bill>)
27
28 =item batchnum - batchn number (see C<FS::bill_batch>)
29
30 =back
31
32 =head1 METHODS
33
34 =over 4
35
36 =item bill_batch
37
38 Returns the C<FS::bill_batch> object.
39
40 =item cust_bill
41
42 Returns the C<FS::cust_bill> object.
43
44 =back
45
46 =head1 BUGS
47
48 =head1 SEE ALSO
49
50 L<FS::Record>, schema.html from the base documentation.
51
52 =cut
53
54 1;
55