X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_event%2FAction%2Fcust_bill_send_csv_ftp.pm;h=9db8e024f8db379a09f001bd6b85a90523ac40d5;hb=HEAD;hp=8d2e36cd171a2e5e9bac504a9eec64e92c375541;hpb=9ef78be87df0f0f880ff5d903ed6243b67369cf0;p=freeside.git diff --git a/FS/FS/part_event/Action/cust_bill_send_csv_ftp.pm b/FS/FS/part_event/Action/cust_bill_send_csv_ftp.pm index 8d2e36cd1..9db8e024f 100644 --- a/FS/FS/part_event/Action/cust_bill_send_csv_ftp.pm +++ b/FS/FS/part_event/Action/cust_bill_send_csv_ftp.pm @@ -2,12 +2,15 @@ package FS::part_event::Action::cust_bill_send_csv_ftp; use strict; use base qw( FS::part_event::Action ); -use FS::Misc; +use FS::Misc::Invoicing qw( spool_formats ); sub description { 'Upload CSV invoice data to an FTP server'; } sub deprecated { 1; } +## declaring that this action will send out an invoice +sub will_send_invoice { 1; } + sub eventtable_hashref { { 'cust_bill' => 1 }; } @@ -16,7 +19,7 @@ sub option_fields { ( 'ftpformat' => { label => 'Format', type =>'select', - options => [ FS::Misc::spool_formats() ], + options => [ spool_formats() ], }, 'ftpserver' => 'FTP server', 'ftpusername' => 'FTP username',