高章伟
2022-02-24 2aa8da8af66aa8ae00f25831aed6bb0364176e7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
public with sharing class CM_SearchOpportunity {
    public List<Opportunity> results {get; private set;}
    public Boolean getIsOverLimit() {
        if (results != null && results.size() > 30) {
            return true;
        }
        return false;
    }
 
    public CM_SearchOpportunity() {
        this.results = new List<Opportunity>();
    }
 
    public void search() {
        // 検索条件を用意
        String query = System.currentPageReference().getParameters().get('q');
        String visitorPlaceId = System.currentPageReference().getParameters().get('r');
        // 全角::をreplace
        query = query.replaceAll('::', '::');
        if(query == null || query == '' || query.length() < 2) {
            return;
        }
        this.search(query, visitorPlaceId);
    }
    public void search(String query, String visitorPlaceId) {
        List<String> qwords = new List<String>();
        List<String> qwordstmp = query.split(' ');
        String nameCondition = '';
        for (String qword : qwordstmp) {
            if (String.isBlank(qword) == false) {
                qwords.add('%' + String.escapeSingleQuotes(qword.replaceAll('%', '')) + '%');
                nameCondition += ' Name like \'' + qwords[qwords.size() - 1] + '\' and';
            }
        }
 
        String queryString = '';
//        try{
            queryString = ControllerUtil.getOppSearchSQOL(visitorPlaceId, nameCondition);
//        }
//        catch ( System.QueryException qe) {
//            this.results = new List<Opportunity>();
//            return;
//        }
 
        system.debug('queryString=' + queryString);
        if(queryString == null || queryString == ''){
            return;
        }
        this.results = (List<Opportunity>) Database.query(queryString);
    }
}