19626
2023-06-29 45e4876c811c861adc5744d06b5bba840fae397a
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
public with sharing class lexCaseController {
    @AuraEnabled
    public static InitData initForCreateVOCFromCIC(String recordId){
        InitData res = new InitData();
        try {
            Case ca = [
                select
                Department__c,
                Account__c
                from Case where Id =: recordId
            ];
            res.department = ca.Department__c;
            res.accountId = ca.Account__c;
            res.recordTypeId = Schema.SObjectType.Case.getRecordTypeInfosByName().get(lexLightingButtonConstant.RECORD_TYPE_NAME_BY_VOC).getRecordTypeId();
        } catch (Exception e) {
            throw new AuraHandledException(e.getMessage());
        }
        return res;
    }
    class InitData{
        @AuraEnabled
        public String department;
        @AuraEnabled
        public String accountId;
        @AuraEnabled
        public String recordTypeId;
    }
}