KKbes
2023-07-28 bc11d6edd670912d12da2435d696ff69656ec359
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
public with sharing class LexSubmitCampaignController {
    //提交审批按钮 学会
    @AuraEnabled
    public static Campaign initSubmit(String recordId){
        try{
            Campaign res = [SELECT Id,Status,Is_LendProduct__c,EndDate
                FROM Campaign 
                    WHERE Id = : recordId];
            return res;
        }
        catch(Exception e){
            System.debug('lexSubmitCampaign,method:initSubmit   error: '+e.getMessage());
        }
        return null;
    }
 
    @AuraEnabled
    public static String newAndUpddateCampaign(String Id,String Status){
        try{    
            Campaign res = new Campaign();
            res.Id = Id;
            res.Status=Status;
            update res;
            return 'success';
        }
        catch(Exception e){
            System.debug('lexSubmitCampaign,method:newAndUpddateCampaign   error: '+e.getMessage());
            return e.getMessage();
           
        }
 
    }
 
    
    @AuraEnabled
    public static String submitApprovalRequest(String recordId) {
        try{
           Approval.ProcessSubmitRequest req = new Approval.ProcessSubmitRequest();
           req.setObjectId(recordId);
           Approval.ProcessResult result = Approval.process(req);
           if(result!=null&&result.getErrors()!=null&&result.getErrors().size()>0) return result.getErrors().get(0).getMessage();
        }catch(Exception e){
            System.debug('lexSubmitCampaign,method:submitApprovalRequest submitApprovalRequest  error: '+e.getMessage());
            return e.getMessage();
        }
        return null;
    }
 
    //取消按钮 
    @AuraEnabled
    public static Campaign initCancle(String recordId){
        Campaign res = new Campaign();
        try {
            res = [SELECT Status,Id,CancleReason__c,IF_Submit__c
                                    From Campaign Where Id = :recordId];
            return res;
        }
        catch (Exception e) {
             System.debug('lexSubmitCampaign,method:initCancle   error: '+e.getMessage());
        }
        return res;
    }
 
    @AuraEnabled
    public static String newAndUpdateCampaignCancle(String campaignId ,String Status){
 
        try {
            Campaign res = new Campaign();
            res.Id = campaignId;
            res.Status =Status;
            update res;
            
        }
        catch (Exception e) {
            return e.getMessage();
        }
        return 'success';
    }    
 
    @AuraEnabled
    public static Campaign initMember(String recordId){
        Campaign res = new Campaign();
        try {
            res = [SELECT Status,Id,    ServiceDesignDep__c
                                    From Campaign Where Id = :recordId];
            return res;
        }
        catch (Exception e) {
             System.debug('lexSubmitCampaign,method:initCancle   error: '+e.getMessage());
        }
        return res;    
    }
 
    //取消按钮 CancleService
    @AuraEnabled
    public static Campaign initCancleService(String recordId){
        Campaign res = new Campaign();
        try {
            res = [SELECT Status,Id,CancleReason__c
                                    From Campaign Where Id = :recordId];
            return res;
        }
        catch (Exception e) {
             System.debug('lexSubmitCampaign,method:initCancle   error: '+e.getMessage());
             return null;
        }       
    }
 
    @AuraEnabled
    public static String cancleServiceNewAndUpdate(String Id,String Status,Boolean IsCancelFromOpen){
        Campaign res = new Campaign();
        try{
            res.Id = Id;
            res.Status = Status;
            res.IsCancelFromOpen__c = IsCancelFromOpen;
            UPDATE res;
            return 'success';
        }
        catch (Exception e) {
             System.debug('lexSubmitCampaign,method:initCancle   error: '+e.getMessage());
             return e.getMessage();
        }
    }
    //时间修改申请按钮
    @AuraEnabled
    public static Campaign initUpdateTimeReply(String recordId){
        Campaign  res = [SELECT Id,Status_Service__c,ServiceDesignDep__c
            FROM Campaign 
                WHERE Id = : recordId];
        return res; 
    }
 
    @AuraEnabled
    public static String getUserNameById(String Id){
        User  res = [SELECT Name From User WHERE Id = : Id ];
 
        return res.Name;
    }
    //向智慧医疗发送活动信息
    @AuraEnabled
    public static Campaign initSendToComPlat(String recordId){
        Campaign  res = [SELECT Id,IF_Submit__c
            FROM Campaign 
                WHERE Id = : recordId];
        return res; 
    }
 
    @AuraEnabled
    public static String SendToComPlatUpdate(String Id , Boolean IF_Submit){
        Campaign res= new Campaign();
        try {
            res.Id=Id;
            res.IF_Submit__c=IF_Submit;
            UPDATE res;
            return 'success';
        }
        catch (Exception e) {
            System.debug('lexSubmitCampaign,method:initCancle   error: '+e.getMessage());
            return e.getMessage();
        }        
    }
    //添加到日历按钮
    @AuraEnabled
    public static Campaign initAddToCalender(String recordId){
        Campaign res = new Campaign();
        try {
                res = [SELECT Name,Id,StartDate,EndDate
                    FROM Campaign
                        WHERE Id = : recordId];
                return res;
        }
        catch (Exception e) {
            System.debug('lexSubmitCampaign,method:initAddToCalender   error: '+e.getMessage());
            return null;
        }
    }
 
    @AuraEnabled
    public static List<Event> getCampaignEvent(String Id, String userId){
        try {
            List<Event> res = [SELECT Id FROM Event WHERE whatId = :Id and WS_flg__c = true and OwnerId = :userId];
            return res;
        }
        catch (Exception e) {
            System.debug('lexSubmitCampaign,method:getCampaignEvent   error: '+e.getMessage());
            return null;
        }
    
    }
 
    @AuraEnabled
    public static String addCampaignEvent(Date StartDateTime,Date EndDateTime,String whatid,String Subject){
        try {
            Event event = new Event();
            event.WS_flg__c = true;
            event.IsAllDayEvent = true;
            event.StartDateTime = StartDateTime;
            event.EndDateTime = EndDateTime;
            event.whatid = whatid;
            event.Subject = Subject;
            INSERT event;
            return 'success';
        }
        catch (Exception e) {
            System.debug('lexSubmitCampaign,method:addCampaignEvent   error: '+e.getMessage());
            return e.getMessage();
        }
    }
 
        //会议变更申请列表按钮
    @AuraEnabled
    public static Campaign initMeetingDelayApply(String recordId){
        Campaign res = new Campaign();
        try {
            res = [SELECT Id,PlanBackData__c,Meeting_Cooperate__c,Meeting_Cooperate2__c,
            Meeting_Cooperate3__c,Meeting_Cooperate4__c,Meeting_Type__c,HostName__c,
            cooperatorCompany__c,StartDate,EndDate,IF_Approved__c,Status,CampaignStatus__c,IF_Submit__c,
            Meeting_Approved_No__c
                FROM  Campaign 
                    WHERE Id = :recordId];
            return res;
        }
        catch (Exception e) {
            System.debug('lexSubmitCampaign,method:initMeetingDelayApply   error: '+e.getMessage());
            return null;
        }
    }
 
    @AuraEnabled
    public static List<meeting_delay_apply__c> findQualified1(String CampaignId){
        List<meeting_delay_apply__c> res = new List<meeting_delay_apply__c>();
        try {
            res = [SELECT Id FROM meeting_delay_apply__c 
            WHERE Status__c = '审批中' And Campaign__c =:CampaignId ];
            return res;
        }
        catch (Exception e) {
            System.debug('lexSubmitCampaign,method:findQualified   error: '+e.getMessage());
            return res;
        }
        
    }
 
    @AuraEnabled
    public static List<Consum_Apply__c> findQualified2(String CampaignId){
        List<Consum_Apply__c> res = new List<Consum_Apply__c>();
        try {
            res = [SELECT Id FROM Consum_Apply__c 
            WHERE Status__c Not in ('草案中','取消')  And Campaign__c =:CampaignId ];
            return res;
        }
        catch (Exception e) {
            System.debug('lexSubmitCampaign,method:findQualified   error: '+e.getMessage());
            return res;
        }
        
    }
 
    @AuraEnabled
    public static List<Rental_Apply__c> findQualified3(String CampaignId){
        List<Rental_Apply__c> res = new List<Rental_Apply__c>();
        try {
            res = [SELECT Id FROM Rental_Apply__c 
            WHERE Status__c Not in ('草案中','取消')  And Campaign__c =:CampaignId ];
            return res;
        }
        catch (Exception e) {
            System.debug('lexSubmitCampaign,method:findQualified   error: '+e.getMessage());
            return res;
        }
        
    }
 
    @AuraEnabled
    public static String getRecordIdByName(String Name){
        try {
            List<RecordType> res = [Select Id, Name From RecordType  Where Name LIKE :Name limit 1];
            String needId =  res[0].Id;
            return needId;
        }
        catch (Exception e) {
            System.debug('lexSubmitCampaign,method:getRecordIdByName   error: '+e.getMessage());
            return '';
        }
        
    }
 
 
}