summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_main.cgi
diff options
context:
space:
mode:
authormark <mark>2009-08-09 09:05:38 +0000
committermark <mark>2009-08-09 09:05:38 +0000
commit283ea2b5137ae3ec36882b492e6de024b0ce6027 (patch)
tree25edd2e6f0ba3446c13a5b3e4417cfba0447d62f /httemplate/view/cust_main.cgi
parentc183de0b7e942672cafdc1c14a203e389ffd2c43 (diff)
Add cust_attachment stuff
Diffstat (limited to 'httemplate/view/cust_main.cgi')
-rwxr-xr-xhttemplate/view/cust_main.cgi28
1 files changed, 19 insertions, 9 deletions
diff --git a/httemplate/view/cust_main.cgi b/httemplate/view/cust_main.cgi
index 78bcb1fc1..da1a56a96 100755
--- a/httemplate/view/cust_main.cgi
+++ b/httemplate/view/cust_main.cgi
@@ -113,7 +113,6 @@ Comments
% 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>
% }
@@ -138,6 +137,22 @@ 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' => 616,
+ 'height' => 408,
+ )
+%>
+% }
+<% include('cust_main/attachments.html', 'custnum' => $cust_main->custnum ) %>
+<BR>
% }
@@ -181,10 +196,6 @@ Comments
% }
-% if ( $view eq 'change_history' ) { # || $view eq 'jumbo'
- <% include('cust_main/change_history.html', $cust_main ) %>
-% }
-
<% include('/elements/footer.html') %>
<%init>
@@ -218,12 +229,11 @@ tie my %views, 'Tie::IxHash',
'Notes' => 'notes', #notes and files?
;
$views{'Tickets'} = 'tickets'
- if $conf->config('ticket_system');
+ if $conf->config('ticket_system');
$views{'Packages'} = 'packages';
$views{'Payment History'} = 'payment_history'
- unless $conf->config('payby-default' eq 'HIDE');
-$views{'Change History'} = 'change_history'
- if $curuser->access_right('View customer history');
+ unless $conf->config('payby-default' eq 'HIDE');
+#$views{'Change History'} = '';
$views{'Jumbo'} = 'jumbo';
my %viewname = reverse %views;