diff options
author | mark <mark> | 2012-02-19 02:30:17 +0000 |
---|---|---|
committer | mark <mark> | 2012-02-19 02:30:17 +0000 |
commit | 6fc993993d45b0e151a2c3383ef1031f817715ff (patch) | |
tree | 441a3596c5891753c4e89fbc7326d09585738e75 /httemplate/edit/cust_main/contact.html | |
parent | e010976ba33c00bb2b97d677f610e4b19571feaf (diff) |
more per-agent options, #15973
Diffstat (limited to 'httemplate/edit/cust_main/contact.html')
-rw-r--r-- | httemplate/edit/cust_main/contact.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/edit/cust_main/contact.html b/httemplate/edit/cust_main/contact.html index 51c0960ca..4912327c6 100644 --- a/httemplate/edit/cust_main/contact.html +++ b/httemplate/edit/cust_main/contact.html @@ -21,7 +21,8 @@ % if ( $conf->exists('cust-email-high-visibility') && !$pre ) { <TR> <TD ALIGN="right" WIDTH="200"> - <% $conf->exists('cust_main-require_invoicing_list_email') ? $r : '' %>Email address(es) + <% $conf->exists('cust_main-require_invoicing_list_email', $agentnum) + ? $r : '' %>Email address(es) </TD> <TD bgcolor="#FFFF00"> <INPUT TYPE="text" NAME="invoicing_list" VALUE="<% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) %>"> @@ -209,4 +210,6 @@ my $r = qq!<font color="#ff0000">*</font> !; my @invoicing_list = $cust_main->invoicing_list; +my $agentnum = $cust_main->agentnum if $cust_main->custnum; + </%init> |