communigate provisioning phase 2: add svc_domain.trailer -> communigate TrailerText...
[freeside.git] / httemplate / view / cust_main.cgi
index 88fd037..ca8bf54 100755 (executable)
@@ -1,5 +1,5 @@
 <% include('/elements/header.html', {
-             'title' => "Customer View: ". $cust_main->name,
+             'title' => "Customer: ". $cust_main->name,
              'nobr'  => 1,
           })
 %>
@@ -40,6 +40,7 @@ function areyousure(href, message) {
                 'actionlabel' => 'Confirm Cancellation',
                 'color'       => '#ff0000',
                 'cust_main'   => $cust_main,
+                'width'       => 616, #make room for reasons
               }
             )
   %> | 
@@ -108,11 +109,12 @@ Comments
 </TABLE></TABLE>
 <BR><BR>
 % }
-
+<A NAME="notes">
 % my $notecount = scalar($cust_main->notes());
 % if ( ! $conf->exists('cust_main-disable_notes') || $notecount) {
 
 %   unless ( $view eq 'notes' && $cust_main->comments !~ /[^\s\n\r]/ ) {
+      <BR>
       <A NAME="cust_main_note"><FONT SIZE="+2">Notes</FONT></A><BR>
 %   }
 
@@ -126,7 +128,7 @@ Comments
                 'actionlabel' => 'Enter customer note',
                 'cust_main'   => $cust_main,
                 'width'       => 616,
-                'height'      => 408,
+                'height'      => 538, #575
             )
   %>
 
@@ -137,6 +139,34 @@ Comments
 <% include('cust_main/notes.html', 'custnum' => $cust_main->custnum ) %>
 
 % }
+<BR>
+
+% if(! $conf->config('disable_cust_attachment') 
+%  and $curuser->access_right('Add attachment')) {
+<% include( '/elements/popup_link-cust_main.html',
+              'label'       => 'Attach file',
+              'action'      => $p.'edit/cust_main_attach.cgi',
+              'actionlabel' => 'Upload file',
+              'cust_main'   => $cust_main,
+              'width'       => 480,
+              'height'      => 296,
+          )
+%>
+% }
+% if( $curuser->access_right('View attachments') ) {
+<% include('cust_main/attachments.html', 'custnum' => $cust_main->custnum ) %>
+%   if ($cgi->param('show_deleted')) {
+<A HREF="<% $p.'view/cust_main.cgi?custnum=' . $cust_main->custnum .
+           ($view ? ";show=$view" : '') . '#notes' 
+           %>"><I>(Show active attachments)</I></A>
+%   }
+% elsif($curuser->access_right('View deleted attachments')) {
+<A HREF="<% $p.'view/cust_main.cgi?custnum=' . $cust_main->custnum .
+           ($view ? ";show=$view" : '') . ';show_deleted=1#notes'
+           %>"><I>(Show deleted attachments)</I></A>
+%   }
+% }
+<BR>
 
 % }
 
@@ -180,6 +210,10 @@ Comments
 
 % }
 
+% if ( $view eq 'change_history' ) { #  || $view eq 'jumbo'     
+<% include('cust_main/change_history.html', $cust_main ) %>     
+% }
+
 <% include('/elements/footer.html') %>
 <%init>
 
@@ -217,7 +251,8 @@ $views{'Tickets'}         =  'tickets'
 $views{'Packages'}        =  'packages';
 $views{'Payment History'} =  'payment_history'
                                unless $conf->config('payby-default' eq 'HIDE');
-#$views{'Change History'}  =  '';
+$views{'Change History'}  =  'change_history'
+  if $curuser->access_right('View customer history');
 $views{'Jumbo'}           =  'jumbo';
 
 my %viewname = reverse %views;