| | |
| | | * @Author: chen jing wu |
| | | * @Date: 2023-04-12 11:16:07 |
| | | * @LastEditors: chen jing wu |
| | | * @LastEditTime: 2023-10-10 17:08:13 |
| | | * @LastEditTime: 2023-10-19 16:29:00 |
| | | */ |
| | | public with sharing class OpportunityLightingButtonController { |
| | | @AuraEnabled |
| | |
| | | SI_Decide_ID__c, |
| | | Name, |
| | | Opportunity_No__c, |
| | | IsAuthorized__c |
| | | IsAuthorized__c, |
| | | recordTypeId |
| | | from Opportunity where Id =: recordId |
| | | ]; |
| | | res.authorizedDBNo = oppo.Authorized_DB_No__c; |
| | |
| | | res.name = oppo.Name; |
| | | res.opportunityNo = oppo.Opportunity_No__c; |
| | | res.isAuthorized = oppo.IsAuthorized__c; |
| | | res.recordTypeId = oppo.recordTypeId; |
| | | } catch (Exception e) { |
| | | |
| | | } |
| | |
| | | update opp; |
| | | return null; |
| | | } catch (Exception e) { |
| | | return errorMessage(e); |
| | | return e.getDmlMessage(0); |
| | | } |
| | | } |
| | | @AuraEnabled |
| | |
| | | update opp; |
| | | return null; |
| | | } catch (Exception e) { |
| | | return errorMessage(e); |
| | | return e.getDmlMessage(0); |
| | | } |
| | | } |
| | | @AuraEnabled |
| | |
| | | update opp; |
| | | return null; |
| | | } catch (Exception e) { |
| | | return errorMessage(e); |
| | | return e.getDmlMessage(0); |
| | | } |
| | | } |
| | | @AuraEnabled |
| | |
| | | update opp; |
| | | return null; |
| | | } catch (Exception e) { |
| | | return errorMessage(e); |
| | | return e.getDmlMessage(0); |
| | | } |
| | | } |
| | | @AuraEnabled |
| | |
| | | processResults.add(Approval.process(request)); |
| | | return processResults[0].errors; |
| | | } catch (Exception e) { |
| | | return errorMessage(e); |
| | | return e.getDmlMessage(0); |
| | | } |
| | | } |
| | | @AuraEnabled |
| | |
| | | ]; |
| | | return user.Id; |
| | | } catch (Exception e) { |
| | | return errorMessage(e); |
| | | return e.getDmlMessage(0); |
| | | } |
| | | } |
| | | @AuraEnabled |
| | |
| | | ]; |
| | | return pro.Id; |
| | | } catch (Exception e) { |
| | | return errorMessage(e); |
| | | return e.getDmlMessage(0); |
| | | } |
| | | } |
| | | @AuraEnabled |
| | |
| | | return '1'; |
| | | } catch (Exception ex) { |
| | | Database.rollback(sp); |
| | | return errorMessage(ex); |
| | | return ex.getDmlMessage(0); |
| | | } |
| | | } |
| | | @AuraEnabled |
| | | public static Boolean queryLostReport (String recordId){ |
| | | RecordType recordType1 = [select Id from RecordType where Name = '询价取消报告']; |
| | | List<Lost_cancel_report__c> repList = [select Id from Lost_cancel_report__c where Opportunity__c =: recordId and RecordTypeId !=: recordType1.Id]; |
| | | if(repList.size() > 0){ |
| | | return true; |
| | | } |
| | | return false; |
| | | } |
| | | |
| | | public static string errorMessage(Exception e){ |
| | | if (e.getMessage().contains(',')) { |
| | | System.debug(LoggingLevel.INFO, '*** e: ' + e); |
| | | String exc = '' + e.getMessage(); |
| | | Integer left = exc.indexOf(':') + 1; |
| | | Integer right = exc.lastIndexOf(':'); |
| | | String str = exc.substring(left,right); |
| | | left = str.indexOf(',') + 1; |
| | | String newStr = str.substring(left); |
| | | return newStr; |
| | | }else { |
| | | return e.getMessage(); |
| | | @AuraEnabled |
| | | public static Boolean queryCancelReport (String recordId){ |
| | | RecordType recordType1 = [select Id from RecordType where Name = '询价取消报告']; |
| | | List<Lost_cancel_report__c> repList = [select Id from Lost_cancel_report__c where Opportunity__c =: recordId and RecordTypeId =: recordType1.Id]; |
| | | if(repList.size() > 0){ |
| | | return true; |
| | | } |
| | | return false; |
| | | } |
| | | |
| | | } |
| | | public class InitData{ |
| | | @AuraEnabled |
| | | public Boolean directLossFLG; |