summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Action/cust_bill_spool_csv.pm
blob: 14349a9dd395914ef1e6dd0b63aad4cb14969155 (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::part_event::Action::cust_bill_spool_csv;

use strict;
use base qw( FS::part_event::Action );
use FS::Misc::Invoicing qw( spool_formats );

sub description { 'Spool CSV invoice data'; }

sub deprecated { 1; }

sub eventtable_hashref {
  { 'cust_bill' => 1 };
}

sub option_fields {
  (
    'spoolformat'       => { label   => 'Format',
                             type    => 'select',
                             options => [ spool_formats() ],
                           },
    'spoolbalanceover'  => { label =>
                               'If balance (this invoice and previous) over',
                             type  => 'money',
                           },
    'spoolagent_spools' => { label => 'Individual per-agent spools',
                             type  => 'checkbox',
                             value => '1',
                           },
    'ftp_targetnum'     => { label    => 'Upload spool to FTP target',
                             type     => 'select-table',
                             table    => 'ftp_target',
                             name_col => 'label',
                             empty_label => '(do not upload)',
                             order_by => 'targetnum',
                           },
  );
}

sub default_weight { 50; }

sub do_action {
  my( $self, $cust_bill ) = @_;

  #my $cust_main = $self->cust_main($cust_bill);
  my $cust_main = $cust_bill->cust_main;

  $cust_bill->spool_csv(
    'format'       => $self->option('spoolformat'),
    'balanceover'  => $self->option('spoolbalanceover'),
    'agent_spools' => $self->option('spoolagent_spools'),
    'ftp_targetnum'=> $self->option('ftp_targetnum'),
  );
}

1;