高章伟
2023-04-04 ecf60bb0cd5a04ce38120302be4cf55fd3c3a27b
force-app/main/default/staticresources/AWSService/AWSService.js
@@ -9,14 +9,14 @@
    successStatus : 'success',
    failStatus : 'fail',
    insertCalloutLog:function(module,url,request,response,status){
       if(AWSService.sfSessionId){
       if(AWSService.sfSessionId&&false){
           sforce.connection.sessionId = AWSService.sfSessionId;
           let transLog = new sforce.SObject('Transaction_Log__c');
           transLog.AWS_Data_Id__c = '';
           transLog.Module__c = module;
           transLog.Interface_URL__c = url;
           transLog.Request__c = request;
           transLog.Response__c = response;
           transLog.Request__c = '';
           transLog.Response__c = '';
           transLog.Status__c = status;
           let insertLogResult = sforce.connection.create([transLog]);     
           if(insertLogResult[0].getBoolean(AWSService.successStatus)) {