diff options
author | ivan <ivan> | 2010-07-13 11:10:31 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-07-13 11:10:31 +0000 |
commit | 99af479c12baf1f7da52e06841f0ac4f4832d766 (patch) | |
tree | e73a65542dd1208f9b32123d5ef62eea29270537 /FS | |
parent | f9a89c91cab9e85a7ca8dd67782919f8a85c2ebb (diff) |
notices, RT#8324
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main.pm | 11 | ||||
-rw-r--r-- | FS/FS/msg_template.pm | 4 | ||||
-rw-r--r-- | FS/FS/part_event/Action/notice.pm | 47 |
3 files changed, 58 insertions, 4 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 1f69bd1ca..0578a97ef 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -2464,6 +2464,17 @@ sub agent { qsearchs( 'agent', { 'agentnum' => $self->agentnum } ); } +=item agent_name + +Returns the agent name (see L<FS::agent>) for this customer. + +=cut + +sub agent_name { + my $self = shift; + $self->agent->agent; +} + =item cust_class Returns the customer class, as an FS::cust_class object, or the empty string diff --git a/FS/FS/msg_template.pm b/FS/FS/msg_template.pm index 83acde245..97cf50fe7 100644 --- a/FS/FS/msg_template.pm +++ b/FS/FS/msg_template.pm @@ -166,15 +166,11 @@ sub send { my $subs = $self->substitutions; - use Data::Dumper; - warn Dumper($subs); - #XXX html escape this stuff my %hash = map { $_ => $cust_main->$_() } @{ $subs->{'cust_main'} }; unless ( ! $object || $object->table eq 'cust_main' ) { %hash = ( %hash, map { $_ => $object->$_() } @{ $subs->{$object->table} } ); } - warn Dumper(\%hash); my $subject_tmpl = new Text::Template ( TYPE => 'STRING', diff --git a/FS/FS/part_event/Action/notice.pm b/FS/FS/part_event/Action/notice.pm new file mode 100644 index 000000000..126965374 --- /dev/null +++ b/FS/FS/part_event/Action/notice.pm @@ -0,0 +1,47 @@ +package FS::part_event::Action::notice; + +use strict; +use base qw( FS::part_event::Action ); +use FS::Record qw( qsearchs ); +use FS::msg_template; + +sub description { 'Send a notice from a message template'; } + +#sub eventtable_hashref { +# { 'cust_main' => 1, +# 'cust_bill' => 1, +# 'cust_pkg' => 1, +# }; +#} + +sub option_fields { + ( + 'msgnum' => { 'label' => 'Template', + 'type' => 'select-table', + 'table' => 'msg_template', + 'name_col' => 'msgname', + 'disable_empty' => 1, + }, + ); +} + +sub default_weight { 55; } #? + +sub do_action { + my( $self, $object ) = @_; + + my $cust_main = $self->cust_main($object); + + my $msgnum = $self->option('msgnum'); + + my $msg_template = qsearchs('msg_template', { 'msgnum' => $msgnum } ) + or die "Template $msgnum not found"; + + $msg_template->send( + 'cust_main' => $cust_main, + 'object' => $object, + ); + +} + +1; |