4.x styling customer edit cleanup
[freeside.git] / httemplate / view / cust_main / misc.html
index c59f6af..cb465f5 100644 (file)
@@ -1,19 +1,10 @@
-<% ntable("#cccccc") %><TR><TD><% &ntable("#cccccc",2) %>
-
-<TR>
-  <TD ALIGN="right"><% mt('Customer number') |h %></TD>
-  <TD BGCOLOR="#ffffff"><% $cust_main->display_custnum %></TD>
-</TR>
-
-<TR>
-  <TD ALIGN="right"><% mt('Status') |h %></TD>
-  <TD BGCOLOR="#ffffff"><FONT COLOR="#<% $cust_main->statuscolor %>"><B><% ucfirst($cust_main->status) %></B></FONT></TD>
-</TR>
+<FONT CLASS="fsinnerbox-title"><% mt('Miscellaneous information') |h %></FONT>
+<TABLE CLASS="fsinnerbox">
 
 % my @part_tag = $cust_main->part_tag;
 % if ( $conf->config('cust_tag-location') =~ /^(cust_misc|)$/ && @part_tag ) {
 <TR>
-  <TD ALIGN="right"><% mt('Tags') |h %></TD>
+  <TH ALIGN="right"><% mt('Tags') |h %></TH>
   <TD BGCOLOR="#ffffff">
 %   foreach my $part_tag ( @part_tag ) {
       <FONT <% length($part_tag->tagcolor)
 </TR>
 % }
 
-%unless ( scalar(@agentnums) == 1
-%         && !$curuser->access_right('View customers of all agents')  ) {
-%  my $agent = qsearchs('agent',{ 'agentnum' => $cust_main->agentnum } );
-   <TR>
-     <TD ALIGN="right"><% mt('Agent') |h %></TD>
-     <TD BGCOLOR="#ffffff"><% $agent->agentnum %>: <% $agent->agent %></TD>
-   </TR>
-% }
-
 %  if ( $cust_main->agent_custid
 %       && ! $conf->exists('cust_main-default_agent_custid') ) {
 
 <TR>
-  <TD ALIGN="right"><% mt('Agent customer ref#') |h %></TD>
+  <TH ALIGN="right"><% mt('Agent customer ref#') |h %></TH>
   <TD BGCOLOR="#ffffff"><% $cust_main->agent_custid %></TD>
 </TR>
 %
 
 %  #if ( $cust_main->classnum ) {
      <TR>
-       <TD ALIGN="right"><% mt('Class') |h %></TD>
-       <TD BGCOLOR="#ffffff"><% $cust_main->classname || '('.emt('none').')' %></TD>
+       <TH ALIGN="right"><% mt('Class') |h %></TH>
+       <TD><% $cust_main->classname || '('.emt('none').')' %></TD>
      </TR>
 %  #}
 
+% if ( $cust_main->salesnum ) {
+    <TR>
+      <TH ALIGN="right"><% mt('Sales Person') |h %></TH>
+      <TD><% $cust_main->salesperson |h %></TD>
+    </TR>
+% }
+
 %  unless ( FS::part_referral->num_part_referral == 1 ) {
 %    my $referral = qsearchs('part_referral', {
 %      'refnum' => $cust_main->refnum
 %    } );
 
 <TR>
-  <TD ALIGN="right"><% mt('Advertising source') |h %></TD>
-  <TD BGCOLOR="#ffffff"><% $referral->refnum %>: <% $referral->referral%></TD>
+  <TH ALIGN="right"><% mt('Advertising source') |h %></TH>
+  <TD><% $referral->refnum %>: <% $referral->referral%></TD>
 </TR>
 % } 
 
 
 <TR>
-  <TD ALIGN="right"><% mt('Referring Customer') |h %></TD>
-  <TD BGCOLOR="#ffffff">
+  <TH ALIGN="right"><% mt('Referring Customer') |h %></TH>
+  <TD>
 %
 %  my $referring_cust_main = '';
 %  if ( $cust_main->referral_custnum
 </TR>
 
 <TR>
-  <TD ALIGN="right"><% mt('Order taker') |h %></TD>
-  <TD BGCOLOR="#ffffff"><% $cust_main->otaker %></TD>
+  <TH ALIGN="right"><% mt('Order taker') |h %></TH>
+  <TD><% $cust_main->otaker %></TD>
 </TR>
 
   <TR>
-    <TD ALIGN="right"><% mt('Signup Date') |h %></TD>
-    <TD BGCOLOR="#ffffff"><% $cust_main->signupdate ? time2str($date_format, $cust_main->signupdate) : '' %></TD>
+    <TH ALIGN="right"><% mt('Signup Date') |h %></TH>
+    <TD><% $cust_main->signupdate ? time2str($date_format, $cust_main->signupdate) : '' %></TD>
   </TR>
 
+% my $id_country = $conf->config('national_id-country');
+%  if ( $id_country ) {
+%   if ( $id_country eq 'MY' ) {
+      <TR>
+%     my($old, $nric) = ( '', '');
+%     if ( $cust_main->national_id =~ /^\d{6}\-\d{2}\-\d{4}$/ ) {
+          <TH ALIGN="right"><% mt('NRIC') |h %></TH>
+%     } else { # elsif ( $cust_main->national_id =~ /^\w\d{9}$/ ) {
+          <TH ALIGN="right"><% mt('Old IC/Passport') |h %></TH>
+%     #} else {
+%     #  warn "unknown national_id format";
+%#         <TH ALIGN="right"></TH>
+%     }
+        <TD><% $cust_main->national_id |h %></TD>
+      </TR>
+%   } else {
+%     warn "unknown national_id-country $id_country";
+%   }
+% }
+
 % if ( $conf->exists('cust_main-enable_birthdate') ) {
 %   my $dt = $cust_main->birthdate ne ''
 %              ? DateTime->from_epoch( 'epoch'     => $cust_main->birthdate,
 %              : '';
 
   <TR>
-    <TD ALIGN="right"><% mt('Date of Birth') |h %></TD>
-    <TD BGCOLOR="#ffffff"><% $dt ? $dt->strftime($date_format) : '' %></TD>
+    <TH ALIGN="right"><% mt('Date of Birth') |h %></TH>
+    <TD><% $dt ? $dt->strftime($date_format) : '' %></TD>
+  </TR>
+
+%   if ( $conf->exists('cust_main-enable_spouse') 
+%        and $cust_main->spouse_birthdate ) {
+%     my $dt = DateTime->from_epoch(
+%                   'epoch'  => $cust_main->spouse_birthdate,
+%                   'time_zone' =>'floating'
+%              );
+
+  <TR>
+    <TH ALIGN="right"><% mt('Spouse Date of Birth') |h %></TH>
+    <TD><% $dt ? $dt->strftime($date_format) : '' %></TD>
+  </TR>
+
+%   }
+% } # enable_birthdate
+
+% if ( $conf->exists('cust_main-enable_anniversary_date') ) {
+%   my $dt = $cust_main->anniversary_date ne ''
+%              ? DateTime->from_epoch( 'epoch'  => $cust_main->anniversary_date,
+%                                      'time_zone' =>'floating',
+%                                    )
+%              : '';
+
+  <TR>
+    <TH ALIGN="right"><% mt('Anniversary Date') |h %></TH>
+    <TD><% $dt ? $dt->strftime($date_format) : '' %></TD>
   </TR>
 
 % }
 
-% if ( $conf->exists('cust_main-require_censustract') ) {
+% if ( $cust_main->district ) {
 
   <TR>
-    <TD ALIGN="right"><% mt('Census tract') |h %></TD>
-    <TD BGCOLOR="#ffffff"><% $cust_main->censustract  %></TD>
+    <TH ALIGN="right"><% mt('Tax district') |h %></TH>
+    <TD><% $cust_main->ship_location->district %></TD>
   </TR>
 
 % }
 
+
 % if ( $conf->exists('ticket_system-selfservice_edit_subject') ) {
 
   <TR>
-    <TD ALIGN="right"><% mt('Edit ticket subjects') %></TD>
-    <TD BGCOLOR="#ffffff"><% $cust_main->edit_subject ? 'yes' : 'no' %></TD>
+    <TH ALIGN="right"><% emt('Edit ticket subjects') %></TH>
+    <TD><% $cust_main->edit_subject ? 'yes' : 'no' %></TD>
   </TR>
 
 % }
     <% $cust_main->pvf($_)->widget('HTML', 'view', $cust_main->getfield($_)) %>
 % }
 
-</TABLE></TD></TR></TABLE>
+</TABLE>
 <%init>
 
 my( $cust_main ) = @_;
@@ -149,4 +186,9 @@ my $curuser = $FS::CurrentUser::CurrentUser;
 
 my @agentnums = $curuser->agentnums;
 
+my $status_label = $cust_main->status_label;
+if ($cust_main->is_status_delay_cancel) {
+  $status_label .= ' (Cancelled)';
+}
+
 </%init>