高章伟
2022-02-24 2aa8da8af66aa8ae00f25831aed6bb0364176e7b
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
public without sharing class HospitalApprovalResponseController {
    // 借客户
    public Account ra { get; set; }
    public Account cc { get; set; }
    // 客户ID
    public Id accid { get; private set; }
    // To:系统管理员(response2system),To:申请者(response2user)
    public String type { get; set; }
 
    public Boolean hasError { get; private set; }
    public String baseUrl { get; private set; }
 
    public User systemUser { get; set; }
 
    public HospitalApprovalResponseController() {
        //Apexpages.currentPage().getHeaders().put('X-UA-Compatible', 'IE=8');
        baseUrl = URL.getSalesforceBaseUrl().toExternalForm();
        accid = ApexPages.currentPage().getParameters().get('accid');
        type = ApexPages.currentPage().getParameters().get('type');
    }
 
    public HospitalApprovalResponseController(ApexPages.StandardController stdController) {
        //Apexpages.currentPage().getHeaders().put('X-UA-Compatible', 'IE=8');
        baseUrl = URL.getSalesforceBaseUrl().toExternalForm();
        accid = stdController.getId();
        type = ApexPages.currentPage().getParameters().get('type');
    }
 
    // 画面初始化
    public void init() {
        hasError = true;
        List<Account> raList = [select Id, Name, Is_Active__c, Response__c, ResponseNew__c, OwnerId, Owner.Name, Owner.Email, Response_Cc_User1__c, Response_Cc_User2__c, Response_Cc_User3__c, Response_Cc_User4__c, Response_Cc_User5__c from Account where id = : accid ];
        
        if (raList.size() > 0) {
            ra = raList[0];
            cc = raList[0];
        }
        cc.Response_Cc_User1__c = null;
        cc.Response_Cc_User2__c = null;
        cc.Response_Cc_User3__c = null;
        cc.Response_Cc_User4__c = null;
        cc.Response_Cc_User5__c = null;
 
        List<User> toSysUser = [select Id, Name, Email from User where Id = : System.Label.LeaderID_Zhu];
        if (toSysUser.size() > 0) {
            systemUser = toSysUser[0];
        }
 
        // 邮件默认cc
        if (type == 'response2system') {
            
        } else if (type == 'response2user') {
            
        }
    }
 
    // 保存按钮
    public PageReference saveBtn() {
        hasError = true;
 
        String response = cc.ResponseNew__c;
        if (String.isBlank(response) == true || response.trim().length() == 0) {
            cc.ResponseNew__c.addError('请输入内容。');
            return null;
        }
 
        
        // 送信者
        String username = UserInfo.getName();
        // 发送时间
        Datetime dt = Datetime.now();
        // 相关用户检索
        List<Id> ccList = new List<Id>();
        if (String.isBlank(cc.Response_Cc_User1__c) == false) {
            ccList.add(cc.Response_Cc_User1__c);
        }
        if (String.isBlank(cc.Response_Cc_User2__c) == false) {
            ccList.add(cc.Response_Cc_User2__c);
        }
        if (String.isBlank(cc.Response_Cc_User3__c) == false) {
            ccList.add(cc.Response_Cc_User3__c);
        }
        if (String.isBlank(cc.Response_Cc_User4__c) == false) {
            ccList.add(cc.Response_Cc_User4__c);
        }
        if (String.isBlank(cc.Response_Cc_User5__c) == false) {
            ccList.add(cc.Response_Cc_User5__c);
        }
        Map<Id, User> userMap = new Map<Id, User>([
            select Id, Name, Email from User where Id in :ccList
        ]);
        // 收信者
        String toName = '';
        List<String> toMailList = new List<String>();
        if (type == 'response2system') {
            toName = systemUser.Name;
            toMailList.add(systemUser.Email);
        } else if (type == 'response2user') {
            toName = ra.Owner.Name + '(审批提交人)';
            toMailList.add(ra.Owner.Email);
        }
        // 抄送者
        String ccName = '';
        List<String> ccMailList = new List<String>();
 
 
        //WLIG-BS2CJW  ---20200807---update By rentongxiao ---Start
        //获取 郭 和 油 的信息
        String ydIdsStr = System.Label.LeaderId_YD;
        List<String> ydIds = ydIdsStr.split(',');
 
        List<User> yds = [select Id, Name, Email from User where Id in : ydIds];
 
        if(type == 'response2user'){
            ccName += systemUser.Name + ', ';
            ccMailList.add(systemUser.Email);
            if (yds.size() > 0) {
                for(User u : yds){
                    ccName += u.Name +', ';
                    ccMailList.add(u.Email);
                }
            }
        }
 
        //WLIG-BS2CJW ---20200807---update By rentongxiao---End
 
        if (userMap.size() > 0) {
            for (Id id : userMap.keySet()) {
                ccName += userMap.get(id).Name + ', ';
                ccMailList.add(userMap.get(id).Email);
            }
        }
 
        if (ccName != '') {
            ccName = ccName.left(ccName.length() - 2);
        }
 
        // 原应答沟通信息
        String oldResponse = ra.Response__c;
        // 现应答沟通信息
        String temp = '';
        temp += '****** ' + username + ' ' + dt.format() + ' ******\n';
        temp += '*** To:' + toName + '\n';
        temp += '*** Cc:' + ccName + '\n';
        temp += cc.ResponseNew__c;
        if (oldResponse != null && oldResponse.trim().length() > 0) {
            temp += '\n\n' + oldResponse;
        } else {
            //于2016-07-01加入<a></a>
            temp += '\n\n客户链接: ' + baseUrl + '/' + ra.Id +' ';
        }
 
        try {
            //Create insatnce of actual email
            Messaging.SingleEmailMessage messageNEW= new Messaging.SingleEmailMessage();
 
            messageNEW.Subject = '客户 ' + ra.Name + ' -审批联络';
            messageNEW.PlainTextBody = temp;
            //set desired email addresses
            messageNEW.setCharset('UTF-8');
            messageNEW.toAddresses = toMailList;
            messageNEW.ccAddresses = ccMailList;
            //send the mail
            Messaging.SendEmailResult[] results = messaging.sendEmail(new Messaging.SingleEmailMessage[] {messageNEW});
            if(!results[0].success){
                cc.ResponseNew__c.addError('邮件发送失败。');
                return null;
            }else{
                // 更新应答沟通
                Account updacc = new Account();
                updacc.Id = ra.Id;
                updacc.Response__c = temp;
                update updacc;
 
                hasError=false;
                return null;
            }
        } catch (Exception ex) {
            ApexPages.addMessages(ex);
            return null;
        }
    }
}