fix RT per-transaction recipient squelching, RT#25260
[freeside.git] / httemplate / misc / xmlhttp-cust_main-search.cgi
1 % if ( $sub eq 'custnum_search' ) { 
2 %   my $custnum = $cgi->param('arg');
3 %   my $return = [];
4 %   if ( $custnum =~ /^(\d+)$/ ) { #should also handle
5 %                                  # cust_main-agent_custid-format') eq 'ww?d+'
6 %       $return = findbycustnum_or_agent_custid($1);
7 %   }
8 <% objToJson($return) %>
9 % } elsif ( $sub eq 'smart_search' ) {
10 %
11 %   my $string = $cgi->param('arg');
12 %   my @cust_main = smart_search( 'search' => $string,
13 %                                 'no_fuzzy_on_exact' => ! $FS::CurrentUser::CurrentUser->option('enable_fuzzy_on_exact'),
14 %                               );
15 %   my $return = [ map [ $_->custnum,
16 %                        $_->name,
17 %                        $_->balance,
18 %                        $_->ucfirst_status,
19 %                        $_->statuscolor,
20 %                      ],
21 %                    @cust_main
22 %                ];
23 %     
24 <% objToJson($return) %>
25 % } elsif ( $sub eq 'invnum_search' ) {
26 %
27 %   my $string = $cgi->param('arg');
28 %   if ( $string =~ /^(\d+)$/ ) {
29 %     my $inv = qsearchs('cust_bill', { 'invnum' => $1 });
30 %     my $return = $inv ? findbycustnum($inv->custnum) : [];
31 <% objToJson($return) %>
32 %   } else { #return nothing
33 []
34 %   }
35 % } 
36 % elsif ( $sub eq 'exact_search' ) {
37 %   # XXX possibly should query each element separately
38 %   my $hashref = decode_json($cgi->param('arg'));
39 %   my @cust_main = qsearch('cust_main', $hashref);
40 %   my $return = [];
41 %   foreach (@cust_main) {
42 %     push @$return, {
43 %       custnum => $_->custnum,
44 %       name => $_->name_short,
45 %       address1 => $_->address1,
46 %       city => $_->city,
47 %     };
48 %   }
49 <% objToJson($return) %>
50 % }
51 <%init>
52
53 my $sub = $cgi->param('sub');
54
55 sub findbycustnum {
56
57   my $c = qsearchs({
58     'table'     => 'cust_main',
59     'hashref'   => { 'custnum' => shift },
60     'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
61   }) or return [];
62
63   [ $c->custnum,
64     $c->name,
65     $c->balance,
66     $c->ucfirst_status,
67     $c->statuscolor,
68   ];
69 }
70
71 sub findbycustnum_or_agent_custid {
72   my $num = shift;
73
74   my @or = ( 'agent_custid = ?' );
75   my @param = ( $num );
76
77   if ( $num =~ /^\d+$/ && $num <= 2147483647 ) { #need a bigint custnum? wow
78     my $conf = new FS::Conf;
79     if ( $conf->exists('cust_main-default_agent_custid') ) {
80       push @or, "( agent_custid IS NULL AND custnum = $num )";
81     } else {
82       push @or, "custnum = $num";
83     }
84   }
85
86   my $extra_sql = ' WHERE '. $FS::CurrentUser::CurrentUser->agentnums_sql.
87                   ' AND ( '. join(' OR ', @or). ' )';
88                       
89   [ map [ $_->custnum,
90           $_->name,
91           $_->balance,
92           $_->ucfirst_status,
93           $_->statuscolor,
94         ],
95
96       qsearch({
97         'table'       => 'cust_main',
98         'hashref'     => {},
99         'extra_sql'   => $extra_sql,
100         'extra_param' => \@param,
101       })
102   ];
103 }
104
105 </%init>