optional better visibility for invoicing email field, RT12944
[freeside.git] / httemplate / view / cust_main / contacts.html
1 % my %which = (
2 %   ''      => emt('Billing'),
3 %   'ship_' => emt('Service'),
4 % );
5 % foreach my $which ( '', 'ship_' ) {
6 %   my $pre = $cust_main->get("${which}last") ? $which : '';
7
8 <% $which{$which} %> <% mt('address') |h %>
9 <% ntable("#cccccc") %><TR><TD><% ntable("#cccccc",2) %>
10 <TR>
11   <TD ALIGN="right"><% mt('Contact name') |h %></TD>
12   <TD COLSPAN=5 BGCOLOR="#ffffff">
13     <% $cust_main->get("${pre}last"). ', '. $cust_main->get("${pre}first") |h %>
14   </TD>
15 % if ( $which eq '' && $conf->exists('show_ss') ) { 
16     <TD ALIGN="right"><% mt('SS#') |h %></TD>
17     <TD BGCOLOR="#ffffff"><% $cust_main->masked('ss') || '&nbsp' %></TD>
18 % } 
19 </TR>
20 % if ( $conf->exists('cust-email-high-visibility') && $which eq '') {
21 <TR>
22   <TD ALIGN="right"><% mt('Email invoices') |h %></TD>
23   <TD BGCOLOR="#ffff00">
24     <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %>
25   </TD>
26 </TR>
27 % }
28 <TR>
29   <TD ALIGN="right"><% mt('Company') |h %></TD>
30   <TD COLSPAN=7 BGCOLOR="#ffffff"><% $cust_main->get("${pre}company") |h %></TD>
31 </TR>
32 <TR>
33   <TD ALIGN="right"><% mt('Address') |h %></TD>
34   <TD COLSPAN=7 BGCOLOR="#ffffff"><% $cust_main->get("${pre}address1") |h %></TD>
35 </TR>
36
37 % if ( $cust_main->get("${pre}address2") ) { 
38 %   my $address2_label =
39 %     ( $conf->exists('cust_main-require_address2')
40 %       && ! ( $pre xor $cust_main->has_ship_address )
41 %     )
42 %       ? emt('Unit #')
43 %       : ' ';
44
45   <TR>
46     <TD ALIGN="right"><% $address2_label %></TD>
47     <TD COLSPAN=7 BGCOLOR="#ffffff"><% $cust_main->get("${pre}address2") |h %></TD>
48   </TR>
49
50 % } 
51
52 <TR>
53   <TD ALIGN="right"><% mt('City') |h %></TD>
54   <TD BGCOLOR="#ffffff"><% $cust_main->get("${pre}city") |h %></TD>
55 % if ( $cust_main->get("${pre}county") ) {
56     <TD ALIGN="right"><% mt('County') |h %></TD>
57     <TD BGCOLOR="#ffffff"><% $cust_main->get("${pre}county") |h %></TD>
58 % }
59   <TD ALIGN="right"><% mt('State') |h %></TD>
60   <TD BGCOLOR="#ffffff"><% state_label( $cust_main->get("${pre}state"), $cust_main->get("${pre}country") ) |h %></TD>
61   <TD ALIGN="right"><% mt('Zip') |h %></TD>
62   <TD BGCOLOR="#ffffff"><% $cust_main->get("${pre}zip") %></TD>
63 </TR>
64 <TR>
65   <TD ALIGN="right"><% mt('Country') |h %></TD>
66   <TD BGCOLOR="#ffffff"><% code2country( $cust_main->get("${pre}country") ) %></TD>
67 </TR>
68 <TR>
69   <TD ALIGN="right"><% $daytime_label %></TD>
70   <TD COLSPAN=3 BGCOLOR="#ffffff">
71     <& /elements/phonenumber.html,
72                   $cust_main->get("${pre}daytime"),
73                   'callable'=>1
74     &>
75   </TD>
76 </TR>
77 <TR>
78   <TD ALIGN="right"><% $night_label %></TD>
79   <TD COLSPAN=3 BGCOLOR="#ffffff">
80     <& /elements/phonenumber.html,
81                   $cust_main->get("${pre}night"),
82                   'callable'=>1
83     &>
84   </TD>
85 </TR>
86 <TR>
87   <TD ALIGN="right"><% mt('Fax') |h %></TD>
88   <TD COLSPAN=3 BGCOLOR="#ffffff">
89     <% $cust_main->get("${pre}fax") || '&nbsp' %>
90   </TD>
91 </TR>
92 % if ( $which eq '' && $conf->exists('show_stateid') ) { 
93   <TR>
94     <TD ALIGN="right"><% $stateid_label %></TD>
95     <TD BGCOLOR="#ffffff"><% $cust_main->masked('stateid') || '&nbsp' %></TD>
96     <TD ALIGN="right"><% $stateid_state_label %></TD>
97     <TD BGCOLOR="#ffffff"><% $cust_main->stateid_state || '&nbsp' %></TD>
98   </TR>
99 % } 
100 </TABLE></TD></TR></TABLE>
101 % if ( $which ne 'ship_' ) {
102 <BR>
103 % }
104 % } 
105 <& contacts_new.html, $cust_main &>
106 <%once>
107
108 my $daytime_label = FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/
109                       ? 'Day&nbsp;Phone'
110                       : FS::Msgcat::_gettext('daytime');
111 my $night_label = FS::Msgcat::_gettext('night') =~ /^(night)?$/
112                       ? 'Night&nbsp;Phone'
113                       : FS::Msgcat::_gettext('night');
114 my $stateid_label = FS::Msgcat::_gettext('stateid') =~ /^(stateid)?$/
115                       ? 'Driver&rsquo;s&nbsp;License'
116                       : FS::Msgcat::_gettext('stateid');
117 my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_state)?$/
118                       ? 'Driver&rsquo;s&nbsp;License State'
119                       : FS::Msgcat::_gettext('stateid_state');
120
121 </%once>
122 <%init>
123
124 my( $cust_main ) = @_;
125 my $conf = new FS::Conf;
126 my @invoicing_list = $cust_main->invoicing_list;
127 my $no = emt('no');
128
129 </%init>
130