1 <% include('/elements/header.html', {
2 'title' => "Customer $custnum status",
5 <% include('/elements/small_custview.html', $custnum, '', 1) %>
8 <table style="border:1px solid #000000">
9 % foreach my $key (keys %$return) {
10 % my $value = $return->{$key};
11 % $value = join(', ', @$value) if ref($value) eq 'ARRAY';
13 <TD ALIGN="right"><% $key %>:</TD>
14 <TD><B><% $value %></B></TD>
19 <% include('/elements/footer.html') %>
24 my($custnum, $svcnum) = $cgi->keywords;
25 if ( $custnum =~ /^(\d+)$/ ) {
28 $return = FS::Maestro::customer_status($1, $svcnum);
31 $return = { 'error' => 'No custnum' };