Add cust_attachment stuff
[freeside.git] / httemplate / view / cust_main.cgi
1 <% include('/elements/header.html', {
2              'title' => "Customer View: ". $cust_main->name,
3              'nobr'  => 1,
4           })
5 %>
6 <BR>
7
8 <% include('/elements/menubar.html',
9              { 'newstyle' => 1,
10                'selected' => $viewname{$view},
11                'url_base' => $cgi->url. "?custnum=$custnum;show=",
12              },
13              %views,
14           )
15 %>
16 <BR>
17
18 <% include('/elements/init_overlib.html') %>
19
20 <SCRIPT TYPE="text/javascript">
21 function areyousure(href, message) {
22   if (confirm(message) == true)
23     window.location.href = href;
24 }
25 </SCRIPT>
26
27 % if ( $view eq 'basics' || $view eq 'jumbo' ) {
28
29 % if ( $curuser->access_right('Edit customer') ) { 
30   <A HREF="<% $p %>edit/cust_main.cgi?<% $custnum %>">Edit this customer</A> | 
31 % } 
32
33 % if ( $curuser->access_right('Cancel customer')
34 %        && $cust_main->ncancelled_pkgs
35 %      ) {
36
37   <% include( '/elements/popup_link-cust_main.html',
38               { 'action'      => $p. 'misc/cancel_cust.html',
39                 'label'       => 'Cancel&nbsp;this&nbsp;customer',
40                 'actionlabel' => 'Confirm Cancellation',
41                 'color'       => '#ff0000',
42                 'cust_main'   => $cust_main,
43               }
44             )
45   %> | 
46
47 % }
48
49 % if ( $conf->exists('deletecustomers')
50 %        && $curuser->access_right('Delete customer')
51 %      ) {
52   <A HREF="<% $p %>misc/delete-customer.cgi?<% $custnum%>">Delete this customer</A> | 
53 % } 
54
55 % unless ( $conf->exists('disable_customer_referrals') ) { 
56   <A HREF="<% $p %>edit/cust_main.cgi?referral_custnum=<% $custnum %>">Refer a new customer</A> | 
57   <A HREF="<% $p %>search/cust_main.cgi?referral_custnum=<% $custnum %>">View this customer's referrals</A>
58 % } 
59
60 <BR><BR>
61
62 % if (    $curuser->access_right('Billing event reports') 
63 %      || $curuser->access_right('View customer billing events')
64 %    ) {
65
66   <A HREF="<% $p %>search/cust_event.html?custnum=<% $custnum %>">View billing events for this customer</A>
67   <BR><BR>
68
69 % }
70
71 %my $signupurl = $conf->config('signupurl');
72 %if ( $signupurl ) {
73   This customer's signup URL: <A HREF="<% $signupurl %>?ref=<% $custnum %>"><% $signupurl %>?ref=<% $custnum %></A><BR><BR>
74 % } 
75
76
77 <A NAME="cust_main"></A>
78 <TABLE BORDER=0>
79 <TR>
80   <TD VALIGN="top">
81     <% include('cust_main/contacts.html', $cust_main ) %>
82   </TD>
83   <TD VALIGN="top" STYLE="padding-left: 54px">
84     <% include('cust_main/misc.html', $cust_main ) %>
85 % if ( $conf->config('payby-default') ne 'HIDE' ) { 
86
87       <BR>
88       <% include('cust_main/billing.html', $cust_main ) %>
89 % } 
90
91   </TD>
92 </TR>
93 </TABLE>
94
95 % }
96
97 % if ( $view eq 'notes' || $view eq 'jumbo' ) {
98
99 %if ( $cust_main->comments =~ /[^\s\n\r]/ ) {
100 <BR>
101 Comments
102 <% ntable("#cccccc") %><TR><TD><% ntable("#cccccc",2) %>
103 <TR>
104   <TD BGCOLOR="#ffffff">
105     <PRE><% encode_entities($cust_main->comments) %></PRE>
106   </TD>
107 </TR>
108 </TABLE></TABLE>
109 <BR><BR>
110 % }
111
112 % my $notecount = scalar($cust_main->notes());
113 % if ( ! $conf->exists('cust_main-disable_notes') || $notecount) {
114
115 %   unless ( $view eq 'notes' && $cust_main->comments !~ /[^\s\n\r]/ ) {
116       <A NAME="cust_main_note"><FONT SIZE="+2">Notes</FONT></A><BR>
117 %   }
118
119 %   if ( $curuser->access_right('Add customer note') &&
120 %        ! $conf->exists('cust_main-disable_notes')
121 %      ) {
122
123   <% include( '/elements/popup_link-cust_main.html',
124                 'label'       => 'Add customer note',
125                 'action'      => $p. 'edit/cust_main_note.cgi',
126                 'actionlabel' => 'Enter customer note',
127                 'cust_main'   => $cust_main,
128                 'width'       => 616,
129                 'height'      => 408,
130             )
131   %>
132
133 %   }
134
135 <BR>
136
137 <% include('cust_main/notes.html', 'custnum' => $cust_main->custnum ) %>
138
139 % }
140 <BR>
141
142 % if(! $conf->config('disable_cust_attachment') 
143 %  and $curuser->access_right('Add attachment')) {
144 <% include( '/elements/popup_link-cust_main.html',
145               'label'       => 'Attach file',
146               'action'      => $p.'edit/cust_main_attach.cgi',
147               'actionlabel' => 'Upload file',
148               'cust_main'   => $cust_main,
149               'width'       => 616,
150               'height'      => 408,
151           )
152 %>
153 % }
154 <% include('cust_main/attachments.html', 'custnum' => $cust_main->custnum ) %>
155 <BR>
156
157 % }
158
159 % if ( $view eq 'jumbo' ) {
160     <BR><BR>
161     <A NAME="tickets"><FONT SIZE="+2">Tickets</FONT></A><BR>
162 % }
163
164 % if ( $view eq 'tickets' || $view eq 'jumbo' ) {
165
166 % if ( $conf->config('ticket_system') ) { 
167   <% include('cust_main/tickets.html', $cust_main ) %>
168 % } 
169   <BR><BR>
170
171 % }
172
173 % if ( $view eq 'jumbo' ) { #XXX enable me && $curuser->access_right('View customer packages') { 
174
175   <A NAME="cust_pkg"><FONT SIZE="+2">Packages</FONT></A><BR>
176 % }
177
178 % if ( $view eq 'packages' || $view eq 'jumbo' ) {
179
180 % #XXX enable me# if ( $curuser->access_right('View customer packages') { 
181 <% include('cust_main/packages.html', $cust_main ) %>
182 % #}
183
184 % }
185
186 % if ( $view eq 'jumbo' ) {
187     <BR><BR>
188     <A NAME="history"><FONT SIZE="+2">Payment History</FONT></A><BR>
189 % }
190
191 % if ( $view eq 'payment_history' || $view eq 'jumbo' ) {
192
193 % if ( $conf->config('payby-default') ne 'HIDE' ) { 
194   <% include('cust_main/payment_history.html', $cust_main ) %>
195 % } 
196
197 % }
198
199 <% include('/elements/footer.html') %>
200 <%init>
201
202 my $curuser = $FS::CurrentUser::CurrentUser;
203
204 die "access denied"
205   unless $curuser->access_right('View customer');
206
207 my $conf = new FS::Conf;
208
209 my $custnum;
210 if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
211   $custnum = $1;
212 } else {
213   die "No customer specified (bad URL)!" unless $cgi->keywords;
214   my($query) = $cgi->keywords; # needs parens with my, ->keywords returns array
215   $query =~ /^(\d+)$/;
216   $custnum = $1;
217 }
218
219 my $cust_main = qsearchs( {
220   'table'     => 'cust_main',
221   'hashref'   => { 'custnum' => $custnum },
222   'extra_sql' => ' AND '. $curuser->agentnums_sql,
223 });
224 die "Customer not found!" unless $cust_main;
225
226 #false laziness w/pref/pref.html and Conf.pm (cust_main-default_view)
227 tie my %views, 'Tie::IxHash',
228        'Basics'           => 'basics',
229        'Notes'            => 'notes', #notes and files?
230 ;
231 $views{'Tickets'}         =  'tickets'
232                                if $conf->config('ticket_system');
233 $views{'Packages'}        =  'packages';
234 $views{'Payment History'} =  'payment_history'
235                                unless $conf->config('payby-default' eq 'HIDE');
236 #$views{'Change History'}  =  '';
237 $views{'Jumbo'}           =  'jumbo';
238
239 my %viewname = reverse %views;
240
241 my $view =  $cgi->param('show') || $curuser->default_customer_view;
242
243 </%init>