summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Action/notice.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/part_event/Action/notice.pm')
-rw-r--r--FS/FS/part_event/Action/notice.pm47
1 files changed, 47 insertions, 0 deletions
diff --git a/FS/FS/part_event/Action/notice.pm b/FS/FS/part_event/Action/notice.pm
new file mode 100644
index 0000000..1269653
--- /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;