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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
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){
            String messageText='';
            if(e.getMessage().contains(':')){
                String eMessage =e.getMessage();
                Integer left = eMessage.indexOf(',')+1;
                Integer right= eMessage.lastIndexOf(':')+1;
                if(right>eMessage.length()||right<=left){
                    right=eMessage.length();
                }
                String mes=eMessage.substring(left,right);
                messageText = mes;
                return messageText;
            }else{
                messageText=e.getMessage();
                return messageText;
            }  
        }
 
    }
 
    
    @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){
            String messageText='';
            if(e.getMessage().contains(':')){
                String eMessage =e.getMessage();
                Integer left = eMessage.indexOf(',')+1;
                Integer right= eMessage.lastIndexOf(':')+1;
                if(right>eMessage.length()||right<=left){
                    right=eMessage.length();
                }
                String mes=eMessage.substring(left,right);
                messageText = mes;
                return messageText;
            }else{
                messageText=e.getMessage();
                return messageText;
            }  
        }
        return null;
    }
 
    //取消按钮 
    @AuraEnabled
    public static Campaign initCancle(String recordId){
        Campaign res = new Campaign();
        try {
            res = [SELECT Status,Id,CancleReason__c,IF_Submit__c,BuchangApprovalManager__c,
            ZongjianApprovalManager_CancleShen__c,EndDate,JingliApprovalManager__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) {
            String messageText='';
            if(e.getMessage().contains(':')){
                String eMessage =e.getMessage();
                Integer left = eMessage.indexOf(',')+1;
                Integer right= eMessage.lastIndexOf(':')+1;
                if(right>eMessage.length()||right<=left){
                    right=eMessage.length();
                }
                String mes=eMessage.substring(left,right);
                messageText = mes;
                return messageText;
            }else{
                messageText=e.getMessage();
                return messageText;
            }  
        }
        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;    
    }
 
    @AuraEnabled 
    public static String  UpdateCampagin(String Id,String Status ,Date CancelDay){
        try {
            Campaign res = new Campaign();
            res.Id = Id;
            res.Status = Status;
            res.CancelDay__c = CancelDay;
            update res;      
            return 'success';      
        }
        catch (Exception e) {
            String messageText='';
            if(e.getMessage().contains(':')){
                String eMessage =e.getMessage();
                Integer left = eMessage.indexOf(',')+1;
                Integer right= eMessage.lastIndexOf(':')+1;
                if(right>eMessage.length()||right<=left){
                    right=eMessage.length();
                }
                String mes=eMessage.substring(left,right);
                messageText = mes;
                return messageText;
            }else{
                messageText=e.getMessage();
                return messageText;
            }  
        }
        
 
    }
 
    //取消按钮 CancleService
    @AuraEnabled
    public static Campaign initCancleService(String recordId){
        Campaign res = new Campaign();
        try {
            res = [SELECT Status,Id,CancleReason__c,BuchangApprovalManager__c,JingliApprovalManager__c,
            ServiceDesignDep__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) {
            String messageText='';
            if(e.getMessage().contains(':')){
                String eMessage =e.getMessage();
                Integer left = eMessage.indexOf(',')+1;
                Integer right= eMessage.lastIndexOf(':')+1;
                if(right>eMessage.length()||right<=left){
                    right=eMessage.length();
                }
                String mes=eMessage.substring(left,right);
                messageText = mes;
                return messageText;
            }else{
                messageText=e.getMessage();
                return messageText;
            }  
        }
    }
 
    @AuraEnabled
    public static List<User> queryUserIdByName(String Name){
        List<User> res = new List<User>();
        try{
            res = [SELECT id,name 
                from User 
                    where name = : Name];
            return res;
        }
        catch(Exception e){
             System.debug('lexSubmitCampaign,method:queryUserIdByName   error: '+e.getMessage());
             return null;           
        }
    }
 
    //时间修改申请按钮
    @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) {
            String messageText='';
            if(e.getMessage().contains(':')){
                String eMessage =e.getMessage();
                Integer left = eMessage.indexOf(',')+1;
                Integer right= eMessage.lastIndexOf(':')+1;
                if(right>eMessage.length()||right<=left){
                    right=eMessage.length();
                }
                String mes=eMessage.substring(left,right);
                messageText = mes;
                return messageText;
            }else{
                messageText=e.getMessage();
                return messageText;
            }  
        }        
    }
    //添加到日历按钮
    @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) {
            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) {
            String messageText='';
            if(e.getMessage().contains(':')){
                String eMessage =e.getMessage();
                Integer left = eMessage.indexOf(',')+1;
                Integer right= eMessage.lastIndexOf(':')+1;
                if(right>eMessage.length()||right<=left){
                    right=eMessage.length();
                }
                String mes=eMessage.substring(left,right);
                messageText = mes;
                return messageText;
            }else{
                messageText=e.getMessage();
                return messageText;
            }  
        }
    }
 
        //会议变更申请列表按钮
    @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,RecordTypeId
                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 
            And Campaign__r.CampaignStatus__c != '备品已申请'];
            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 '';
        }
        
    }
    @AuraEnabled
    public static string getRecordTypeId(){
        try {
            return Schema.SObjectType.Lead.getRecordTypeInfosByDeveloperName().get('Standard').getRecordTypeId();
        } catch (Exception e) {
            throw new AuraHandledException(e.getMessage());
        }
    }
 
 
}