add a yesterday column and a total row, closes: Bug#797
[freeside.git] / httemplate / view / svc_acct.cgi
1 <!-- mason kludge -->
2 <%
3
4 my $conf = new FS::Conf;
5
6 my($query) = $cgi->keywords;
7 $query =~ /^(\d+)$/;
8 my $svcnum = $1;
9 my $svc_acct = qsearchs('svc_acct',{'svcnum'=>$svcnum});
10 die "Unknown svcnum" unless $svc_acct;
11
12 #false laziness w/all svc_*.cgi
13 my $cust_svc = qsearchs( 'cust_svc' , { 'svcnum' => $svcnum } );
14 my $pkgnum = $cust_svc->getfield('pkgnum');
15 my($cust_pkg, $custnum);
16 if ($pkgnum) {
17   $cust_pkg = qsearchs( 'cust_pkg', { 'pkgnum' => $pkgnum } );
18   $custnum = $cust_pkg->custnum;
19 } else {
20   $cust_pkg = '';
21   $custnum = '';
22 }
23 #eofalse
24
25 my $part_svc = qsearchs('part_svc',{'svcpart'=> $cust_svc->svcpart } );
26 die "Unknown svcpart" unless $part_svc;
27
28 my $domain;
29 if ( $svc_acct->domsvc ) {
30   my $svc_domain = qsearchs('svc_domain', { 'svcnum' => $svc_acct->domsvc } );
31   die "Unknown domain" unless $svc_domain;
32   $domain = $svc_domain->domain;
33 } else {
34   die "No svc_domain.svcnum record for svc_acct.domsvc: ". $cust_svc->domsvc;
35 }
36
37 %>
38
39 <SCRIPT>
40 function areyousure(href) {
41     if (confirm("Permanently delete this account?") == true)
42         window.location.href = href;
43 }
44 </SCRIPT>
45
46 <%= header('Account View', menubar(
47   ( ( $pkgnum || $custnum )
48     ? ( "View this customer (#$custnum)" => "${p}view/cust_main.cgi?$custnum",
49       )
50     : ( "Cancel this (unaudited) account" =>
51           "javascript:areyousure(\'${p}misc/cancel-unaudited.cgi?$svcnum\')" )
52   ),
53   "Main menu" => $p,
54 )) %>
55
56 <%
57
58 #if ( $cust_pkg && $cust_pkg->part_pkg->plan eq 'sqlradacct_hour' ) {
59 if (    $part_svc->part_export('sqlradius')
60      || $part_svc->part_export('sqlradius_withdomain')
61 ) {
62
63   my $last_bill;
64   my %plandata;
65   if ( $cust_pkg ) {
66     #false laziness w/httemplate/edit/part_pkg... this stuff doesn't really
67     #belong in plan data
68     %plandata = map { /^(\w+)=(.*)$/; ( $1 => $2 ); }
69                     split("\n", $cust_pkg->part_pkg->plandata );
70
71     $last_bill = $cust_pkg->last_bill;
72   } else {
73     $last_bill = 0;
74     %plandata = ();
75   }
76
77   my $seconds = $svc_acct->seconds_since_sqlradacct( $last_bill, time );
78   my $hour = int($seconds/3600);
79   my $min = int( ($seconds%3600) / 60 );
80   my $sec = $seconds%60;
81
82   my $input = $svc_acct->attribute_since_sqlradacct(
83     $last_bill, time, 'AcctInputOctets'
84   ) / 1048576;
85   my $output = $svc_acct->attribute_since_sqlradacct(
86     $last_bill, time, 'AcctOutputOctets'
87   ) / 1048576;
88
89   if ( $seconds ) {
90     print "Online <B>$hour</B>h <B>$min</B>m <B>$sec</B>s";
91   } else {
92     print 'Has not logged on';
93   }
94
95   if ( $cust_pkg ) {
96     print ' since last bill ('. time2str("%C", $last_bill). ') - '. 
97           $plandata{recur_included_hours}. ' total hours in plan<BR>';
98   } else {
99     print ' (no billing cycle available for unaudited account)<BR>';
100   }
101
102   print 'Input: <B>'. sprintf("%.3f", $input). '</B> megabytes<BR>';
103   print 'Output: <B>'. sprintf("%.3f", $output). '</B> megabytes<BR>';
104
105   print '<BR>';
106
107 }
108
109 #print qq!<BR><A HREF="../misc/sendconfig.cgi?$svcnum">Send account information</A>!;
110
111 print qq!<A HREF="${p}edit/svc_acct.cgi?$svcnum">Edit this information</A><BR>!.
112       &ntable("#cccccc"). '<TR><TD>'. &ntable("#cccccc",2).
113       "<TR><TD ALIGN=\"right\">Service number</TD>".
114         "<TD BGCOLOR=\"#ffffff\">$svcnum</TD></TR>".
115       "<TR><TD ALIGN=\"right\">Service</TD>".
116         "<TD BGCOLOR=\"#ffffff\">". $part_svc->svc. "</TD></TR>".
117       "<TR><TD ALIGN=\"right\">Username</TD>".
118         "<TD BGCOLOR=\"#ffffff\">". $svc_acct->username. "</TD></TR>"
119 ;
120
121 print "<TR><TD ALIGN=\"right\">Domain</TD>".
122         "<TD BGCOLOR=\"#ffffff\">". $domain, "</TD></TR>";
123
124 print "<TR><TD ALIGN=\"right\">Password</TD><TD BGCOLOR=\"#ffffff\">";
125 my $password = $svc_acct->_password;
126 if ( $password =~ /^\*\w+\* (.*)$/ ) {
127   $password = $1;
128   print "<I>(login disabled)</I> ";
129 }
130 if ( $conf->exists('showpasswords') ) {
131   print '<PRE>'. encode_entities($password). '</PRE>';
132 } else {
133   print "<I>(hidden)</I>";
134 }
135 print "</TR></TD>";
136 $password = '';
137
138 if ( $conf->exists('security_phrase') ) {
139   my $sec_phrase = $svc_acct->sec_phrase;
140   print '<TR><TD ALIGN="right">Security phrase</TD><TD BGCOLOR="#ffffff">'.
141         $svc_acct->sec_phrase. '</TD></TR>';
142 }
143
144 my $svc_acct_pop = $svc_acct->popnum
145                      ? qsearchs('svc_acct_pop',{'popnum'=>$svc_acct->popnum})
146                      : '';
147 print "<TR><TD ALIGN=\"right\">Access number</TD>".
148       "<TD BGCOLOR=\"#ffffff\">". $svc_acct_pop->text. '</TD></TR>'
149   if $svc_acct_pop;
150
151 if ($svc_acct->uid ne '') {
152   print "<TR><TD ALIGN=\"right\">Uid</TD>".
153           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->uid. "</TD></TR>",
154         "<TR><TD ALIGN=\"right\">Gid</TD>".
155           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->gid. "</TD></TR>",
156         "<TR><TD ALIGN=\"right\">GECOS</TD>".
157           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->finger. "</TD></TR>",
158         "<TR><TD ALIGN=\"right\">Home directory</TD>".
159           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->dir. "</TD></TR>",
160         "<TR><TD ALIGN=\"right\">Shell</TD>".
161           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->shell. "</TD></TR>",
162         "<TR><TD ALIGN=\"right\">Quota</TD>".
163           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->quota. "</TD></TR>"
164   ;
165 } else {
166   print "<TR><TH COLSPAN=2>(No shell account)</TH></TR>";
167 }
168
169 if ($svc_acct->slipip) {
170   print "<TR><TD ALIGN=\"right\">IP address</TD><TD BGCOLOR=\"#ffffff\">".
171         ( ( $svc_acct->slipip eq "0.0.0.0" || $svc_acct->slipip eq '0e0' )
172           ? "<I>(Dynamic)</I>"
173           : $svc_acct->slipip
174         ). "</TD>";
175   my($attribute);
176   foreach $attribute ( grep /^radius_/, $svc_acct->fields ) {
177     #warn $attribute;
178     $attribute =~ /^radius_(.*)$/;
179     my $pattribute = $FS::raddb::attrib{$1};
180     print "<TR><TD ALIGN=\"right\">Radius (reply) $pattribute</TD>".
181           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->getfield($attribute).
182           "</TD></TR>";
183   }
184   foreach $attribute ( grep /^rc_/, $svc_acct->fields ) {
185     #warn $attribute;
186     $attribute =~ /^rc_(.*)$/;
187     my $pattribute = $FS::raddb::attrib{$1};
188     print "<TR><TD ALIGN=\"right\">Radius (check) $pattribute: </TD>".
189           "<TD BGCOLOR=\"#ffffff\">". $svc_acct->getfield($attribute).
190           "</TD></TR>";
191   }
192 } else {
193   print "<TR><TH COLSPAN=2>(No SLIP/PPP account)</TH></TR>";
194 }
195
196 print '<TR><TD ALIGN="right">RADIUS groups</TD><TD BGCOLOR="#ffffff">'.
197       join('<BR>', $svc_acct->radius_groups). '</TD></TR>';
198
199 # Can this be abstracted further?  Maybe a library function like
200 # widget('HTML', 'view', $svc_acct) ?  It would definitely make UI 
201 # style management easier.
202
203 foreach (sort { $a cmp $b } $svc_acct->virtual_fields) {
204   print $svc_acct->pvf($_)->widget('HTML', 'view', $svc_acct->getfield($_)),
205       "\n";
206 }
207 %>
208 </TABLE></TD></TR></TABLE>
209 <%
210
211 print '<BR><BR>';
212
213 print join("\n", $conf->config('svc_acct-notes') ). '<BR><BR>'.
214       joblisting({'svcnum'=>$svcnum}, 1). '</BODY></HTML>';
215
216 %>