summaryrefslogtreecommitdiff
path: root/FS/FS/Misc/Invoicing.pm
blob: 2fc52a99b0e74b3a6865d8849c7d53fe633026bd (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
package FS::Misc::Invoicing;
use base qw( Exporter );

use vars qw( @EXPORT_OK );
@EXPORT_OK = qw( spool_formats );

=head1 NAME

FS::Misc::Invoicing - Invoice subroutines

=head1 SYNOPSIS

use FS::Misc::Invoicing qw( spool_formats );

=item spool_formats
  
Returns a list of the invoice spool formats.

=cut

sub spool_formats {
  qw(default oneline billco bridgestone)
}

1;