add spouse name to customer records, #24919
[freeside.git] / httemplate / view / cust_main / contacts.html
1 % my %addr_label = ('bill' => 'Billing address', 'ship' => 'Service address');
2
3 %# Locations (possibly break this out)
4 % my @which = ('bill', 'ship');
5 % while (@which) {
6 %   my $this = shift @which;
7 %   my $method = $this.'_location';
8 %   my $location = $cust_main->$method;
9 <FONT CLASS="fsinnerbox-title"><% mt( $addr_label{$this} ) |h %>
10 %   if ( $this eq 'ship' and 
11 %       $cust_main->bill_locationnum == $cust_main->ship_locationnum )
12 %   {
13  (<% mt('same as billing') %>)
14 %   }
15 </FONT>
16 <TABLE CLASS="fsinnerbox">
17
18 % if ( $this eq 'bill' ) {
19 %   #billing contact fields
20   <TR>
21     <TD ALIGN="right"><% mt('Contact name') |h %></TD>
22     <TD COLSPAN=5 BGCOLOR="#ffffff"><% $cust_main->contact |h %></TD>
23 %   if ( $conf->exists('show_ss') ) {
24     <TD ALIGN="right"><% mt('SS#') |h %></TD>
25     <TD BGCOLOR="#ffffff"><% $conf->exists('unmask_ss')
26                               ? $cust_main->ss
27                               : $cust_main->masked('ss') || '&nbsp;' %></TD>
28 %   }
29   </TR>
30 %   if ( $conf->exists('cust_main-enable_spouse') and
31 %        ($cust_main->spouse_last or $cust_main->spouse_first) ) {
32   <TR>
33     <TD ALIGN="right"><% mt('Spouse') |h %></TD>
34     <TD COLSPAN=5 BGCOLOR="#ffffff">
35       <% join(', ', grep $_, 
36                     $cust_main->spouse_last, $cust_main->spouse_first) %>
37     </TD>
38   </TR>
39 % }
40 %   if ( $conf->exists('cust-email-high-visibility') ) {
41   <TR>
42     <TD ALIGN="right"><% mt('Email address(es)') |h %></TD>
43     <TD BGCOLOR="#ffff00">
44       <% $cust_main->invoicing_list_emailonly_scalar || $no %>
45     </TD>
46   </TR>
47 %   }
48 %   if ( $cust_main->company ) {
49   <TR>
50     <TD ALIGN="right"><% mt('Company') |h %></TD>
51     <TD COLSPAN=7 BGCOLOR="#ffffff"><% $cust_main->company |h %></TD>
52   </TR>
53 %   }
54 % } elsif ( $this eq 'ship' ) {
55 %   if ( $cust_main->ship_company ) { # mostly obsolete these days...
56   <TR>
57     <TD ALIGN="right"><% mt('Company') |h %></TD>
58     <TD COLSPAN=7 BGCOLOR="#ffffff"><% $cust_main->ship_company |h %></TD>
59   </TR>
60 %   }
61 % }
62
63
64 % if ( $location ) { # now the actual address
65 <TR>
66   <TD ALIGN="right"><% mt('Address') |h %></TD>
67   <TD COLSPAN=7 BGCOLOR="#ffffff"><% $location->address1 |h %></TD>
68 </TR>
69
70 % if ( $location->get('address2') ) {
71 %   my $address2_label = $conf->exists('cust_main-require_address2') 
72 %                        ? emt('Unit #')
73 %                        : ' ';
74
75 <TR>
76   <TD ALIGN="right"><% $address2_label %></TD>
77   <TD COLSPAN=7 BGCOLOR="#ffffff"><% $location->address2 |h %></TD>
78 </TR>
79
80 % } 
81
82 <TR>
83   <TD ALIGN="right"><% mt('City') |h %></TD>
84   <TD BGCOLOR="#ffffff"><% $location->city |h %></TD>
85 % if ( $location->county ) {
86     <TD ALIGN="right"><% mt('County') |h %></TD>
87     <TD BGCOLOR="#ffffff"><% $location->county |h %></TD>
88 % }
89   <TD ALIGN="right"><% mt('State') |h %></TD>
90   <TD BGCOLOR="#ffffff"><% state_label( $location->state, $location->country ) |h %></TD>
91   <TD ALIGN="right"><% mt('Zip') |h %></TD>
92   <TD BGCOLOR="#ffffff"><% $location->zip %></TD>
93 </TR>
94 <TR>
95   <TD ALIGN="right"><% mt('Country') |h %></TD>
96   <TD BGCOLOR="#ffffff"><% code2country( $location->country ) %></TD>
97 </TR>
98
99 % if ( $location->latitude && $location->longitude ) {
100   <& /elements/tr-coords.html, $location->latitude,
101                                $location->longitude,
102                                $cust_main->name_short,
103                                $cust_main->agentnum,
104   &>
105 % }
106 <& /elements/tr-censustract.html, $location &>
107
108 % }
109   
110 % if ( $this eq 'bill' ) {
111 %   # billing contact phone numbers
112 %   foreach my $phone (qw(daytime night mobile)) {
113 %     next if !$cust_main->get($phone);
114 <TR>
115   <TD ALIGN="right"><% $phone_label{$phone} %></TD>
116   <TD COLSPAN=3 BGCOLOR="#ffffff">
117     <& /elements/phonenumber.html,
118         $cust_main->get($phone),
119         callable => 1,
120         calling_list_exempt => $cust_main->calling_list_exempt,
121     &>
122   </TD>
123 </TR>
124
125 %   } #foreach $phone
126 %   if ( $cust_main->get('fax') ) {
127
128   <TR>
129     <TD ALIGN="right"><% mt('Fax') |h %></TD>
130     <TD COLSPAN=3 BGCOLOR="#ffffff">
131       <% $cust_main->get('fax') || '&nbsp;' %>
132     </TD>
133   </TR>
134
135 %   }
136 %
137 %   if ( $conf->exists('show_stateid') ) { 
138
139 <TR>
140     <TD ALIGN="right"><% $stateid_label %></TD>
141     <TD BGCOLOR="#ffffff"><% $cust_main->masked('stateid') || '&nbsp' %></TD>
142     <TD ALIGN="right"><% $stateid_state_label %></TD>
143     <TD BGCOLOR="#ffffff"><% $cust_main->stateid_state || '&nbsp' %></TD>
144   </TR>
145
146 %   }
147 % } #if $this eq 'bill'
148 </TABLE>
149 % if ( @which ) {
150 <BR>
151 % }
152 % } #while @which
153 <%once>
154
155 my %phone_label = (
156
157   'daytime' => ( FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/
158                    ? 'Day&nbsp;Phone'
159                    : FS::Msgcat::_gettext('daytime')
160                ),
161
162   'night'   => ( FS::Msgcat::_gettext('night') =~ /^(night)?$/
163                    ? 'Night&nbsp;Phone'
164                    : FS::Msgcat::_gettext('night')
165                ),
166
167   'mobile'  => ( FS::Msgcat::_gettext('mobile') =~ /^(mobile)?$/
168                    ? 'Mobile&nbsp;Phone'
169                    : FS::Msgcat::_gettext('Mobile')
170                ),
171 );
172
173 my $stateid_label = FS::Msgcat::_gettext('stateid') =~ /^(stateid)?$/
174                       ? 'Driver&rsquo;s&nbsp;License'
175                       : FS::Msgcat::_gettext('stateid');
176 my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_state)?$/
177                       ? 'Driver&rsquo;s&nbsp;License State'
178                       : FS::Msgcat::_gettext('stateid_state');
179
180 </%once>
181 <%init>
182
183 my $cust_main = shift;
184 my $conf = new FS::Conf;
185 my @invoicing_list = $cust_main->invoicing_list;
186 my $no = emt('no');
187
188 </%init>
189