event refactor, landing on HEAD!
[freeside.git] / FS / FS / part_event / Action / addpost.pm
1 package FS::part_event::Action::addpost;
2
3 use strict;
4 use base qw( FS::part_event::Action );
5
6 sub description {
7   'Add postal invoicing';
8 }
9
10 sub default_weight {
11   20;
12 }
13
14 sub do_action {
15   my( $self, $cust_object ) = @_;
16
17   my $cust_main = $self->cust_main($cust_object);
18
19   $cust_main->invoicing_list_addpost();
20
21   '';
22 }
23
24 1;