add do_not_call, RT#12981
[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                   'calling_list_exempt'=>$cust_main->calling_list_exempt,
75     &>
76   </TD>
77 </TR>
78 <TR>
79   <TD ALIGN="right"><% $night_label %></TD>
80   <TD COLSPAN=3 BGCOLOR="#ffffff">
81     <& /elements/phonenumber.html,
82                   $cust_main->get("${pre}night"),
83                   'callable'=>1,
84                   'calling_list_exempt'=>$cust_main->calling_list_exempt,
85     &>
86   </TD>
87 </TR>
88 <TR>
89   <TD ALIGN="right"><% $mobile_label %></TD>
90   <TD COLSPAN=3 BGCOLOR="#ffffff">
91     <& /elements/phonenumber.html,
92                   $cust_main->get("${pre}mobile"),
93                   'callable'=>1,
94                   'calling_list_exempt'=>$cust_main->calling_list_exempt,
95     &>
96   </TD>
97 </TR>
98 <TR>
99   <TD ALIGN="right"><% mt('Fax') |h %></TD>
100   <TD COLSPAN=3 BGCOLOR="#ffffff">
101     <% $cust_main->get("${pre}fax") || '&nbsp' %>
102   </TD>
103 </TR>
104 % if ( $which eq '' && $conf->exists('show_stateid') ) { 
105   <TR>
106     <TD ALIGN="right"><% $stateid_label %></TD>
107     <TD BGCOLOR="#ffffff"><% $cust_main->masked('stateid') || '&nbsp' %></TD>
108     <TD ALIGN="right"><% $stateid_state_label %></TD>
109     <TD BGCOLOR="#ffffff"><% $cust_main->stateid_state || '&nbsp' %></TD>
110   </TR>
111 % } 
112 </TABLE></TD></TR></TABLE>
113 % if ( $which ne 'ship_' ) {
114 <BR>
115 % }
116 % } 
117 <& contacts_new.html, $cust_main &>
118 <%once>
119
120 my $daytime_label = FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/
121                       ? 'Day&nbsp;Phone'
122                       : FS::Msgcat::_gettext('daytime');
123 my $night_label   = FS::Msgcat::_gettext('night') =~ /^(night)?$/
124                       ? 'Night&nbsp;Phone'
125                       : FS::Msgcat::_gettext('night');
126 my $mobile_label = FS::Msgcat::_gettext('mobile') =~ /^(mobile)?$/
127                       ? 'Mobile&nbsp;Phone'
128                       : FS::Msgcat::_gettext('Mobile');
129
130 my $stateid_label = FS::Msgcat::_gettext('stateid') =~ /^(stateid)?$/
131                       ? 'Driver&rsquo;s&nbsp;License'
132                       : FS::Msgcat::_gettext('stateid');
133 my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_state)?$/
134                       ? 'Driver&rsquo;s&nbsp;License State'
135                       : FS::Msgcat::_gettext('stateid_state');
136
137 </%once>
138 <%init>
139
140 my( $cust_main ) = @_;
141 my $conf = new FS::Conf;
142 my @invoicing_list = $cust_main->invoicing_list;
143 my $no = emt('no');
144
145 </%init>
146