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
52
53
54
55
56
57
58
59
60
61
62
public with sharing class LexCommitNeedApprovalController {
 
    @AuraEnabled
    public static meeting_delay_apply__c init(String recordId){
        meeting_delay_apply__c res = new meeting_delay_apply__c();
        try{
            res = [Select Id,status__c,campaign__c,RecordTypeId
                FROM meeting_delay_apply__c
                    WHERE  Id = : recordId];
        }
        catch(Exception e){
            System.debug(LoggingLevel.INFO, '*** e: ' + e);
        }
        return res;
    }
 
    @AuraEnabled
    public static String  newUpdateMeetingDelayApply(String Id){
        meeting_delay_apply__c res = new meeting_delay_apply__c();
        try{
            res.Id=Id;
            res.Status__c ='提交';
            update res;
            return 'success';
        }
        catch (Exception e) {
            String messageText='';
            if(e.getMessage().contains(':')){
                String eMessage =e.getMessage();
                Integer left = eMessage.indexOf(',')+1;
                Integer right= eMessage.lastIndexOf(':')+1;
                if(right>eMessage.length()||right<=left){
                    right=eMessage.length();
                }
                String mes=eMessage.substring(left,right);
                messageText = mes;
                messageText = OppSubmitController.removeUnChinese(messageText);
                return messageText;
            }else{
                messageText=e.getMessage();
                return messageText;
            }
        }
 
    } 
 
    @AuraEnabled
    public static Campaign  getCampaignById(String recordId){
        Campaign res = new Campaign();
        try {
              res = [SELECT Status,IF_Submit__c,EndDate
                FROM  Campaign 
                    WHERE Id = :recordId];
            return res;
          }
          catch (Exception e) {
            System.debug(LoggingLevel.INFO, '*** e: ' + e);
            return null;
          }
            
    }
}