summaryrefslogtreecommitdiff
path: root/FS/FS/Misc/Invoicing.pm
blob: 92138c2a7f07b6a3821c6cacfc2ab158e05d30f2 (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 ics)
}

1;