notices, RT#8324
authorivan <ivan>
Tue, 13 Jul 2010 11:10:31 +0000 (11:10 +0000)
committerivan <ivan>
Tue, 13 Jul 2010 11:10:31 +0000 (11:10 +0000)
FS/FS/cust_main.pm
FS/FS/msg_template.pm
FS/FS/part_event/Action/notice.pm [new file with mode: 0644]
httemplate/edit/elements/edit.html
httemplate/edit/msg_template.html
httemplate/elements/htmlarea.html

index 1f69bd1..0578a97 100644 (file)
@@ -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
index 83acde2..97cf50f 100644 (file)
@@ -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 (file)
index 0000000..1269653
--- /dev/null
@@ -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;
index 0b5ca17..b19b361 100644 (file)
@@ -307,6 +307,11 @@ Example:
 %     foreach grep exists($f->{$_}),
 %       qw( hashref agent_virt agent_null agent_null_right );
 %
+%   #htmlarea
+%   $include_common{$_} = $f->{$_}
+%     foreach grep exists($f->{$_}), qw( width height );
+%
+%
 %   if ( $type eq 'tablebreak-tr-title' ) {
 %     $include_common{'table_id'} = 'TableNumber'. $tablenum++;
 %   }
index 6632d02..68725e2 100644 (file)
@@ -3,8 +3,14 @@
               'table'         => 'msg_template',
               'viewall_dir'   => 'browse',
               'fields' => [ 'msgname',
-                            { field=>'body', type=>'htmlarea' },
+                            'subject',
+                            { field=>'body', type=>'htmlarea', width=>763 },
                           ],
+              'labels' => { 'msgnum'  => 'Template',
+                            'msgname' => 'Template name',
+                            'subject' => 'Message subject',
+                            'body'    => 'Message template',
+                          },
           )
 %>
 <%init>
index dca4328..f00c773 100644 (file)
@@ -22,6 +22,9 @@ Example:
 
   oFCKeditor.BasePath = '<% $p %>elements/fckeditor/';
   oFCKeditor.Config['SkinPath'] = '<% $p %>elements/fckeditor/editor/skins/silver/';
+% if ( $opt{'width'} ) {
+    oFCKeditor.Width = '<% $opt{'width'} %>';
+% }
   oFCKeditor.Height = '<% $opt{'height'} || 420 %>';
   oFCKeditor.Config['StartupFocus'] = true;
   oFCKeditor.Config['EnterMode'] = 'br';