summaryrefslogtreecommitdiff
path: root/httemplate/edit/msg_template.html
blob: 06cac440e80c4878541f11d1753fc0f76cab2441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
<& elements/edit.html,
     'html_init'        => '<TABLE id="outerTable"><TR><TD>',
     'body_etc'         => $body_etc,
     'name_singular'    => 'template',
     'table'            => 'msg_template',
     'viewall_dir'      => 'browse',
     'agent_virt'       => 1,
     'agent_null'       => 1,
     'agent_null_right' => [ 'View global templates', 'Edit global templates' ],

     'fields'           => \@fields,
     'labels'           => { 
                             'msgnum'    => 'Template',
                             'agentnum'  => 'Agent',
                             'msgname'   => 'Template name',
                             'from_addr' => 'From: ',
                             'bcc_addr'  => 'Bcc: ',
                             'locale'    => 'Locale',
                             'subject'   => 'Subject: ',
                             'body'      => 'Message body',
                           },
     'edit_callback'    => \&edit_callback,
     'error_callback'   => \&edit_callback,
     'html_bottom'      => '</DIV>',
     'html_table_bottom'=> \&html_table_bottom,
     'html_foot'        => ( $no_submit ? '' : "</TD>$sidebar</TR></TABLE>" ),
     'no_submit'        => $no_submit,
&>
<%init>

my $curuser = $FS::CurrentUser::CurrentUser;

die "access denied"
  unless $curuser->access_right([ 'View templates', 'View global templates',
                                  'Edit templates', 'Edit global templates',
                               ]);

my $body_etc = '';
$body_etc = q!onload="document.getElementById('locale').onchange()"!
  if $cgi->param('locale') eq 'new';

my $msgnum = $cgi->param('msgnum');
my $msg_template = $msgnum ? qsearchs('msg_template', {msgnum=>$msgnum}) : '';

my $no_submit = 0;
my @fields = ();
if ( $curuser->access_right('Edit global templates') 
     || (    $curuser->access_right('Edit templates')
          && $msg_template
          && $msg_template->agentnum
          && $curuser->agentnums_href->{$msg_template->agentnum}
        )
   )
{
  push @fields,
      { field => 'agentnum',
        type  => 'select-agent',
      },
      { field => 'msgname',   size=>60, },
      { field => 'from_addr', size=>60, },
      { field => 'bcc_addr',  size=>60, },
      { type  => 'tablebreak-tabs',
        include_opt_callback => \&menubar_opt_callback,
      },
      # template_content fields
      { field => 'locale', type => 'hidden' },
      { field => 'subject',   size=>60, },
      { field => 'body',
        type  => 'htmlarea',
        width => 763,
        config=> { extraPlugins => 'blockprotect' },
      },
  ;
} else { #readonly

  $no_submit = 1;

  push @fields,
      { field => 'agentnum',
        type  => 'select-agent',
        fixed => 1,
      },
      { field => 'msgname',   type => 'fixed', },
      { field => 'from_addr', type => 'fixed', },
      { field => 'bcc_addr',  type => 'fixed', },
      { type  => 'tablebreak-tabs',
        include_opt_callback => \&menubar_opt_callback,
      },
      # template_content fields
      { field => 'locale',  type => 'hidden' },
      { field => 'subject', type => 'fixed', },
      { field    => 'body',
        type     => 'fixed',
        noescape => 1,
      },
  ;

}

sub new_callback {
  my ($cgi, $object, $fields_listref, $opt_hashref) = @_;
  my $template_content = new FS::template_content { 'locale' => '' };
  $object->{'Hash'} = { $object->hash, $template_content->hash };
}

sub edit_callback {
  my ($cgi, $object, $fields_listref, $opt_hashref) = @_;
  $cgi->param('locale') =~ /^(\w*)$/ or die 'bad locale '.$cgi->param('locale');
  my $locale = $1;

  # fetch the content object and merge its fields
  my %args = (
    'msgnum' => $object->msgnum,
    'locale' => $locale
  );
  my $template_content = qsearchs('template_content', \%args) 
                        || new FS::template_content( { %args });
  $object->{'Hash'} = { $object->hash, $template_content->hash };

  # set up the locale selector if this is a new content
  if ( $locale eq 'new' ) {

    # make a list of available locales
    my $content_locales = $object->content_locales;
    my @locales = grep { !exists($content_locales->{$_}) } 
                         FS::Conf->new->config('available-locales');
    my %labels;
    foreach (@locales) {
      my %info = FS::Locales->locale_info($_);
      $labels{$_} = $info{'label'};
    }
    unshift @locales, 'new';
    $labels{'new'} = 'Select language';

    # insert a field def
    my $i = 0;
    $i++ until ( $fields_listref->[$i]->{'field'} eq 'locale' );
    my $locale_field = $fields_listref->[$i];

    my $onchange_locale = "document.getElementById('submit').disabled = 
    (this.options[this.selectedIndex].value == 'new');";

    %$locale_field = (
      field   => 'locale',
      type    => 'select',
      options => \@locales,
      labels  => \%labels,
      curr_value  => 'new',
      onchange    => $onchange_locale,
    );
  }
}

sub menubar_opt_callback {
  my $object = shift;
  # generate no tabs for new msg_templates.
  my $msgnum = $object->msgnum or return; 
  my (@tabs, @options, %labels);
  push @tabs, mt('Default'), '';
  my $display_new = 0;
  my $selected = '';
  foreach my $l (FS::Locales->locales) {
    if ( exists $object->content_locales->{$l} ) {
      my %info = FS::Locales->locale_info($l);
      push @tabs, 
           $info{'label'},
           ';locale='.$l;
      $selected = $info{'label'} if $object->locale eq $l;
    }
    else {
      $display_new = 1; # there is at least one unused locale left
    }
  }
  push @tabs, mt('New'), ';locale=new' if $display_new;
  $selected = mt('New') if $object->locale eq 'new';
  $selected ||= mt('Default');
  (
    'url_base' => $p.'edit/msg_template.html?msgnum='.$msgnum,
    'selected' => $selected,
    'tabs'     => \@tabs
  );
}

my $onchange_locale = '';

# Create hints pane

my %substitutions = (
  'cust_main' => [
    '$display_custnum'=> 'Customer#',
    '$agentnum'       => 'Agent#',
    '$agent_name'     => 'Agent name',
    '$payby'          => 'Payment method',
    '$paymask'        => 'Card/account# (masked)',
    '$payname'        => 'Name on card/bank name',
    '$paytype'        => 'Account type',
    '$payip'          => 'IP address used to submit payment info',
    '$num_ncancelled_pkgs'  => '# of active packages',
    '$num_cancelled_pkgs'   => '# of cancelled packages',
    '$num_pkgs'       => '# of packages',
    '$classname'      => 'Customer class',
    '$categoryname'   => 'Customer category',
    '$balance'        => 'Current balance',
    '$credit_limit'   => 'Credit limit',
    '$invoicing_list_emailonly' => 'Billing email address',
    '$cust_status'    => 'Status',
    '$ucfirst_cust_status'  => 'Status, capitalized',
    '$cust_statuscolor'     => 'Status color code',
    '$company_name'   => 'Our company name',
    '$company_address'=> 'Our company address',
    '$company_phonenum' => 'Our phone number',
  ],
  'contact' => [ # duplicate this for shipping
    '$name'           => 'Company and contact name',
    '$name_short'     => 'Company or contact name',
    '$company'        => 'Company name',
    '$contact'        => 'Contact name (last, first)',
    '$contact_firstlast'=> 'Contact name (first last)',
    '$first'          => 'First name',
    '$last'           => 'Last name',
    '$address1'       => 'Address line 1',
    '$address2'       => 'Address line 2',
    '$city'           => 'City',
    '$county'         => 'County',
    '$state'          => 'State',
    '$zip'            => 'Zip',
    '$country'        => 'Country',
    '$daytime'        => 'Day phone',
    '$night'          => 'Night phone',
    '$mobile'         => 'Mobile phone',
    '$fax'            => 'Fax',
  ],
  'service' => [
    '$ship_address1'  => 'Address line 1',
    '$ship_address2'  => 'Address line 2',
    '$ship_city'      => 'City',
    '$ship_county'    => 'County',
    '$ship_state'     => 'State',
    '$ship_zip'       => 'Zip',
    '$ship_country'   => 'Country',
  ],
  'cust_bill' => [
    '$invnum'         => 'Invoice#',
  ],
  'cust_pkg' => [
    '$pkgnum'         => 'Package#',
    '$pkg'            => 'Package description',
    '$pkg_label'      => 'Description + comment',
    '$status'         => 'Status',
    '$statuscolor'    => 'Status color code',
    '$start_ymd'      => 'Start date',
    '$setup_ymd'      => 'Setup date',
    '$last_bill_ymd'  => 'Last bill date',
    '$next_bill_ymd'  => 'Next bill date',
    '$susp_ymd'       => 'Suspended on date',
    '$cancel_ymd'     => 'Canceled on date',
    '$adjourn_ymd'    => 'Adjournment date',
    '$expire_ymd'     => 'Expiration date',
    '$labels_short'   => 'Service labels',
    '$location_label' => 'Service location',
  ],
  'svc_acct'  => [
    '$svcnum'         => 'Service#',
    '$username'       => 'Login name',
    '$password'       => 'Password',
    '$domain'         => 'Domain name',
  ],
  'svc_domain' => [
    '$svcnum'         => 'Service#',
    '$domain'         => 'Domain name',
    '$registrar'      => 'Registrar name',
    '$catchall'       => 'Catchall email',
  ],
  'svc_phone' => [
    '$svcnum'         => 'Service#',
    '$phonenum'       => 'Phone number',
    '$countrycode'    => 'Country code',
    '$domain'         => 'Domain name'
  ],
  'svc_broadband' => [
    '$svcnum'         => 'Service#',
    '$ip_addr'        => 'IP address',
    '$mac_addr'       => 'MAC address',
    '$speed_up'       => 'Upstream speed',
    '$speed_down'     => 'Downstream speed',
  ],
  'cust_pay'  => [
    '$paynum'         => 'Payment#',
    '$paid'           => 'Amount',
    '$payby'          => 'Payment method',
    '$date'           => 'Payment date',
    '$payinfo'        => 'Card/account# (masked)',
    '$error'          => 'Decline reason',
  ],
);

tie my %sections, 'Tie::IxHash', (
'contact'   => 'Name and contact info (billing)',
'service'   => 'Service address',
'cust_main' => 'Customer status and payment info',
'cust_pkg'  => 'Package fields',
'cust_bill' => 'Invoice fields',
'cust_pay'  => 'Payment fields',
'svc_acct'  => 'Login service fields',
'svc_domain'=> 'Domain service fields',
'svc_phone' => 'Phone service fields',
'svc_broadband' => 'Broadband service fields',
);

my $widget = new HTML::Widgets::SelectLayers(
  'options'   => \%sections,
  'form_name' => 'dummy',
  'html_between'=>'</FORM><FONT SIZE=-1>',
  'selected_layer'=>(keys(%sections))[0],
  'layer_callback' => sub {
    my $section = shift;
    my $html = include('/elements/table-grid.html');
    my @hints = @{ $substitutions{$section} };
    while(@hints) {
      my $key = shift @hints;
      $html .= qq!\n<TR><TD><A href="javascript:insertHtml('{$key}')">$key</A></TD>!;
      $html .= "\n<TD>".shift(@hints).'</TD></TR>';
    }
    $html .= "\n</TABLE>";
    return $html;
  },
);

my $sidebar = '
<SCRIPT TYPE="text/javascript">
function insertHtml(what) {
  var oEditor = CKEDITOR.instances["body"];
  oEditor.insertHtml(what);
};

function areyousure(url, message) {
  if (confirm(message))
    window.location.href = url;
}
</SCRIPT>
<TD valign="top"><FORM name="dummy">
Substitutions: '
. $widget->html .
'<BR>Click links to insert.
<BR>Enclose substitutions and other Perl expressions in braces:
<BR>{ $name } = ExampleCo (Smith, John)
<BR>{ time2str("%D", time) } = '.time2str("%D", time).'
</FONT></TD>
';

sub html_table_bottom {
  my $object = shift;
  $cgi->param('locale') =~ /^(\w+)$/;
  my $locale = $1;
  my $html;
  if ( $locale and $locale ne 'new' ) {
    # set up a delete link
    my $msgnum = $object->msgnum;
    my $url = $p."misc/delete-template_content.html?msgnum=$msgnum;locale=$1";
    my $link = qq!<A HREF="javascript:areyousure('$url','Really delete this template?')">! .
      'Delete this template' .
      '</A>';
    $html = qq!<TR><TD></TD>
      <TD STYLE="font-style: italic; font-size: small">$link</TD></TR>!;
  }
  $html;
}

</%init>