liuyn
2024-03-11 a87f1c3df03078814ee97ad0c8ac200a232419e9
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
public with sharing class lexUploadOBPMLwcController {
    public lexUploadOBPMLwcController() {
        
    }
    // @AuraEnabled
    // public static String init(String recordId) {
    //     String messageText = '';
    //    try {
    //     Opportunity opp = [SELECT Id,ConfirmationofAward__c FROM Opportunity WHERE Id = :recordId LIMIT 1];
    //     opp.Id = recordId;
    //     opp.ConfirmationofAward__c = LightingButtonConstant.STATUS_OLYwinBid;
    //     messageText = '1';
    //     update opp;
    //     System.debug(LoggingLevel.INFO, '*** winBid: ' + opp);
    //     return messageText;
    //    } catch (Exception ex) {
    //     System.debug(LoggingLevel.INFO, '*** winBidXu: ' + ex);
    //     messageText = ex.getMessage();
    //     return messageText;
    //    }
    // }
    @AuraEnabled
    public static String sendToOBPM(String iflog_Id, List<String> contactids){
        NFM702Controller.callout(iflog_Id, contactids);
        return '上传OBPM成功!';
    }
}