summaryrefslogtreecommitdiff
path: root/FS/FS/cust_bill_batch.pm
blob: fcbda7f70660d8ad9d743847ed80941f333db3d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package FS::cust_bill_batch;
use base qw( FS::option_Common );

use strict;
use vars qw( $me $DEBUG );

$me = '[ FS::cust_bill_batch ]';
$DEBUG = 0;

sub table { 'cust_bill_batch' }

=head1 NAME

FS::cust_bill_batch - Object methods for cust_bill_batch records

=head1 DESCRIPTION

An FS::cust_bill_batch object represents the inclusion of an invoice in a 
processing batch.  FS::cust_bill_batch inherits from FS::option_Common.  The 
following fields are currently supported:

=over 4

=item billbatchnum - primary key

=item invnum - invoice number (see C<FS::cust_bill>)

=item batchnum - batchn number (see C<FS::bill_batch>)

=back

=head1 METHODS

=over 4

=item bill_batch

Returns the C<FS::bill_batch> object.

=item cust_bill

Returns the C<FS::cust_bill> object.

=back

=head1 BUGS

=head1 SEE ALSO

L<FS::Record>, schema.html from the base documentation.

=cut

1;