projects
/
freeside.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix payinfo N/A upgrade, RT#8809
[freeside.git]
/
httemplate
/
misc
/
maestro-customer_status.html
1
<% objToJson( $return ) %>
2
<%init>
3
4
my $return;
5
6
my($query) = $cgi->keywords;
7
if ( $query =~ /^(\d+)$/ ) {
8
9
use FS::Maestro;
10
$return = FS::Maestro::customer_status($1);
11
12
} else {
13
$return = { 'error' => 'No custnum' };
14
}
15
16
</%init>