diff options
author | Mark Wells <mark@freeside.biz> | 2012-04-14 15:36:20 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2012-04-14 15:36:20 -0700 |
commit | 5371ad9dd6bf63e29ffc85c8381f1ea2630b1749 (patch) | |
tree | 0109d86cf93a84697fe84fc29927a9f058cf3d93 /httemplate/misc/xmlhttp-cust_main-search.cgi | |
parent | 5abe1300f16cf01a6311203deee29373162491c7 (diff) | |
parent | 401ba3ab0637de1bc460370949b75dca092375d8 (diff) |
merge master
Diffstat (limited to 'httemplate/misc/xmlhttp-cust_main-search.cgi')
-rw-r--r-- | httemplate/misc/xmlhttp-cust_main-search.cgi | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/httemplate/misc/xmlhttp-cust_main-search.cgi b/httemplate/misc/xmlhttp-cust_main-search.cgi index 68c5bf597..436501e8b 100644 --- a/httemplate/misc/xmlhttp-cust_main-search.cgi +++ b/httemplate/misc/xmlhttp-cust_main-search.cgi @@ -18,9 +18,13 @@ % } elsif ( $sub eq 'invnum_search' ) { % % my $string = $cgi->param('arg'); -% my $inv = qsearchs('cust_bill', { 'invnum' => $string }); -% my $return = $inv ? findbycustnum($inv->custnum,0) : []; +% if ( $string =~ /^(\d+)$/ ) { +% my $inv = qsearchs('cust_bill', { 'invnum' => $1 }); +% my $return = $inv ? findbycustnum($inv->custnum,0) : []; <% objToJson($return) %> +% } else { #return nothing +[] +% } % } % elsif ( $sub eq 'exact_search' ) { % # XXX possibly should query each element separately |