diff options
Diffstat (limited to 'FS/FS/part_event/Action/collect.pm')
-rw-r--r-- | FS/FS/part_event/Action/collect.pm | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/FS/FS/part_event/Action/collect.pm b/FS/FS/part_event/Action/collect.pm deleted file mode 100644 index 98814404e..000000000 --- a/FS/FS/part_event/Action/collect.pm +++ /dev/null @@ -1,26 +0,0 @@ -package FS::part_event::Action::collect; - -use strict; -use base qw( FS::part_event::Action ); - -sub description { - #'Collect on invoices (normally only used with a <i>Late Fee</i> and <i>Generate Invoice</i> events)'; - 'Collect on invoices (normally only used with a Late Fee and Generate Invoice events)'; -} - -sub deprecated { 1; } - -sub default_weight { 80; } - -sub do_action { - my( $self, $cust_object ) = @_; - - my $cust_main = $self->cust_main($cust_object); - - my $error = $cust_main->collect; - die $error if $error; - - ''; -} - -1; |