This commit was generated by cvs2svn to compensate for changes in r11022,
[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 { 'Add postal invoicing'; }
7
8 sub default_weight { 20; }
9
10 sub do_action {
11   my( $self, $cust_object ) = @_;
12
13   my $cust_main = $self->cust_main($cust_object);
14
15   $cust_main->invoicing_list_addpost();
16
17   '';
18 }
19
20 1;