88e030b7
王彪总
init project
|
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
|
package com.java110.job.msgNotify.wechat;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.java110.core.client.RestTemplate;
import com.java110.core.log.LoggerFactory;
import com.java110.dto.mapping.Mapping;
import com.java110.dto.notice.NoticeStaffDto;
import com.java110.dto.notice.NoticeWechatDto;
import com.java110.dto.owner.OwnerAppUserDto;
import com.java110.dto.privilege.RoleCommunityDto;
import com.java110.dto.user.StaffAppAuthDto;
import com.java110.dto.wechat.Content;
import com.java110.dto.wechat.PropertyFeeTemplateMessage;
import com.java110.intf.user.IOwnerAppUserInnerServiceSMO;
import com.java110.intf.user.IRoleCommunityV1InnerServiceSMO;
import com.java110.intf.user.IStaffAppAuthInnerServiceSMO;
import com.java110.job.msgNotify.IMsgNotify;
import com.java110.job.msgNotify.IWechatTemplate;
import com.java110.job.msgNotify.MsgNotifyFactory;
import com.java110.utils.cache.MappingCache;
import com.java110.utils.cache.UrlCache;
import com.java110.utils.constant.MappingConstant;
import com.java110.utils.util.DateUtil;
import com.java110.utils.util.ListUtil;
import com.java110.utils.util.StringUtil;
import com.java110.vo.ResultVo;
import org.slf4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Service("wechatMsgNotifyImpl")
public class WechatMsgNotifyImpl implements IMsgNotify {
private static final Logger logger = LoggerFactory.getLogger(WechatMsgNotifyImpl.class);
private static final String sendMsgUrl = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=";
public static final String SPEC_CD_TOKEN = "33001";//token
public static final String SPEC_CD_OWE_FEE_TEMPLATE = "33002";//欠费推送模板
public static final String SPEC_CD_WECHAT_TEMPLATE = "33003";//欠费推送模板、装修跟踪记录通知
public static final String SPEC_CD_WECHAT_SUCCESS_TEMPLATE = "33004";//业主缴费成功推送模板
public static final String SPEC_CD_WECHAT_EXPIRE_TEMPLATE = "33005";//业主费用到期通知推送模板
public static final String SPEC_CD_WECHAT_PROCESS_TEMPLATE = "33006";//办公系统审批通知
public static final String SPEC_CD_WECHAT_ROOM_STATE_TEMPLATE = "33007";//空置房验房状态(通过和不通过)、审批状态(通过和不通过)模板
public static final String SPEC_CD_WECHAT_WORK_ORDER_REMIND_TEMPLATE = "33008";//报修工单提醒模板
public static final String SPEC_CD_WECHAT_DISPATCH_REMIND_TEMPLATE = "33009";//报修工单派单和转单提醒给维修师傅
public static final String SPEC_CD_WECHAT_SCHEDULE_TEMPLATE = "33010";//报修工单派单和抢单提醒给业主,安排师傅维修(进度提醒)
public static final String SPEC_CD_WECHAT_WORK_ORDER_END_TEMPLATE = "33011";//报修工单维修完成提醒给业主
public static final String SPEC_CD_WECHAT_HOUSE_DECORATION_APPLY_TEMPLATE = "33012";//装修申请提醒给业主
public static final String SPEC_CD_WECHAT_HOUSE_DECORATION_CHECK_TEMPLATE = "33013";//装修审核/完成提醒给物业管理人员
public static final String SPEC_CD_WECHAT_HOUSE_DECORATION_CHECK_RESULT_TEMPLATE = "33014";//装修审核结果提醒给业主
public static final String SPEC_CD_WECHAT_HOUSE_DECORATION_COMPLETED_TEMPLATE = "33015";//装修验收结果提醒给业主
public static final String SPEC_CD_WECHAT_REPAIR_CHARGE_SCENE_TEMPLATE = "33016";//报修通知-上门维修现场收费通知业主
public static final String SPEC_CD_WECHAT_OA_WORKFLOW_AUDIT_TEMPLATE = "33017";//流程待审批通知
public static final String SPEC_CD_WECHAT_OA_WORKFLOW_AUDIT_FINISH_TEMPLATE = "33018";//流程待审批完成通知
private static final Map<String, String[]> templateKeys = new HashMap<>();
static {
templateKeys.put(SPEC_CD_OWE_FEE_TEMPLATE, new String[]{"缴费类型", "房号", "总金额", "缴费周期"});
templateKeys.put(SPEC_CD_WECHAT_PROCESS_TEMPLATE, new String[]{"流程名称", "发起时间", "发起人"});
templateKeys.put(SPEC_CD_WECHAT_SUCCESS_TEMPLATE, new String[]{"缴费房间", "费用类型", "费用周期", "缴费金额"});
templateKeys.put(SPEC_CD_WECHAT_WORK_ORDER_REMIND_TEMPLATE, new String[]{"报修类型", "报修地址", "报修问题"});
templateKeys.put(SPEC_CD_WECHAT_DISPATCH_REMIND_TEMPLATE, new String[]{"联系人", "手机号", "报修时间", "维修地址"});
templateKeys.put(SPEC_CD_WECHAT_SCHEDULE_TEMPLATE, new String[]{"平台受理人", "联系电话", "受理时间"});
templateKeys.put(SPEC_CD_WECHAT_WORK_ORDER_END_TEMPLATE, new String[]{"房屋地址", "维修工程师", "维修完成时间"});
templateKeys.put(SPEC_CD_WECHAT_OA_WORKFLOW_AUDIT_TEMPLATE, new String[]{"流程名称", "发起人", "发起时间"});
templateKeys.put(SPEC_CD_WECHAT_OA_WORKFLOW_AUDIT_FINISH_TEMPLATE, new String[]{"流程名称", "流程状态"});
}
@Autowired
private IWechatTemplate wechatTemplateImpl;
@Autowired
private IStaffAppAuthInnerServiceSMO staffAppAuthInnerServiceSMOImpl;
@Autowired
private IOwnerAppUserInnerServiceSMO ownerAppUserInnerServiceSMOImpl;
@Autowired
private RestTemplate outRestTemplate;
/**
* 发送退费申请
*
* @param communityId
* @param userId
* @param content
* @return
*/
@Override
public ResultVo sendApplyReturnFeeMsg(String communityId, String userId, JSONObject content) {
String accessToken = wechatTemplateImpl.getAccessToken(communityId);
StaffAppAuthDto staffAppAuthDto = new StaffAppAuthDto();
staffAppAuthDto.setStaffId(userId);
staffAppAuthDto.setAppType("WECHAT");
List<StaffAppAuthDto> staffAppAuthDtos = staffAppAuthInnerServiceSMOImpl.queryStaffAppAuths(staffAppAuthDto);
if (ListUtil.isNull(staffAppAuthDtos)) {
throw new IllegalArgumentException("员工未认证,没有获取到微信openId");
}
String openId = staffAppAuthDtos.get(0).getOpenId();
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_PROCESS_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_PROCESS_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(communityId, mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_PROCESS_TEMPLATE));
String url = sendMsgUrl + accessToken;
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing2", new Content("退费申请审批"));
data.put("time10", new Content(DateUtil.getNow(DateUtil.DATE_FORMATE_STRING_B)));
data.put("thing9", new Content(content.getString("name")));
templateMessage.setData(data);
//获取员工公众号地址
String wechatUrl = MappingCache.getValue(MappingConstant.URL_DOMAIN, "STAFF_WECHAT_URL");
templateMessage.setUrl(wechatUrl);
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
/**
* 欠费通知
*
|
9750b443
王彪总
fix(config): 更新配置...
|
143
|
* @param communityId 项目
|
88e030b7
王彪总
init project
|
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
|
* @param userId 用户
* @param contents [{
* "feeTypeName",
* "payerObjName",
* "billAmountOwed",
* "date",
* url
* }]
* @return
*/
@Override
public ResultVo sendOweFeeMsg(String communityId, String userId, String ownerId, List<JSONObject> contents) {
if (StringUtil.isEmpty(userId) || userId.startsWith("-")) {
throw new IllegalArgumentException("业主未绑定,没有获取到微信openId");
}
String accessToken = wechatTemplateImpl.getAccessToken(communityId);
OwnerAppUserDto ownerAppUserDto = new OwnerAppUserDto();
ownerAppUserDto.setCommunityId(communityId);
ownerAppUserDto.setAppType(OwnerAppUserDto.APP_TYPE_WECHAT);
ownerAppUserDto.setUserId(userId);
List<OwnerAppUserDto> ownerAppUserDtos = ownerAppUserInnerServiceSMOImpl.queryOwnerAppUsers(ownerAppUserDto);
if (ListUtil.isNull(ownerAppUserDtos)) {
throw new IllegalArgumentException("业主未绑定,没有获取到微信openId");
}
String openId = ownerAppUserDtos.get(0).getOpenId();
if (StringUtil.isEmpty(openId) || openId.startsWith("-")) {
throw new IllegalArgumentException("没有获取到微信openId");
}
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_OWE_FEE_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_OWE_FEE_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(communityId, mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_OWE_FEE_TEMPLATE));
String url = sendMsgUrl + accessToken;
JSONObject paramOut = null;
for (JSONObject content : contents) {
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing2", new Content(content.getString("feeTypeName")));
String payerObjName = content.getString("payerObjName");
if (!StringUtil.isEmpty(payerObjName) && payerObjName.length() > 20) {
payerObjName = payerObjName.substring(0, 20);
}
data.put("thing12", new Content(payerObjName));
data.put("amount3", new Content(content.getString("billAmountOwed")));
data.put("time19", new Content(content.getString("date")));
templateMessage.setData(data);
templateMessage.setUrl(content.getString("url") + "&wAppId=" + wechatTemplateImpl.getAppId(communityId));
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
paramOut = JSONObject.parseObject(responseEntity.getBody());
if (paramOut.getIntValue("errcode") != 0) {
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
}
return new ResultVo(ResultVo.CODE_OK, "成功");
}
@Override
public ResultVo sendPayFeeMsg(String communityId, String userId, JSONObject content, String role) {
String accessToken = wechatTemplateImpl.getAccessToken(communityId);
String url = sendMsgUrl + accessToken;
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_SUCCESS_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_SUCCESS_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(communityId, mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_SUCCESS_TEMPLATE));
String openId = "";
if (MsgNotifyFactory.ROLE_OWNER.equals(role)) {
OwnerAppUserDto ownerAppUserDto = new OwnerAppUserDto();
ownerAppUserDto.setCommunityId(communityId);
ownerAppUserDto.setAppType(OwnerAppUserDto.APP_TYPE_WECHAT);
ownerAppUserDto.setUserId(userId);
List<OwnerAppUserDto> ownerAppUserDtos = ownerAppUserInnerServiceSMOImpl.queryOwnerAppUsers(ownerAppUserDto);
if (ListUtil.isNull(ownerAppUserDtos)) {
throw new IllegalArgumentException("业主未绑定,没有获取到微信openId");
}
openId = ownerAppUserDtos.get(0).getOpenId();
} else {
StaffAppAuthDto staffAppAuthDto = new StaffAppAuthDto();
staffAppAuthDto.setStaffId(userId);
staffAppAuthDto.setAppType("WECHAT");
List<StaffAppAuthDto> staffAppAuthDtos = staffAppAuthInnerServiceSMOImpl.queryStaffAppAuths(staffAppAuthDto);
if (ListUtil.isNull(staffAppAuthDtos)) {
throw new IllegalArgumentException("员工未认证,没有获取到微信openId");
}
openId = staffAppAuthDtos.get(0).getOpenId();
}
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
String thing10 = content.getString("payFeeRoom");
if (thing10.length() > 20) {
thing10 = thing10.substring(0, 19);
}
// data.put("thing2", new Content(content.getString("feeTypeCdName")));
data.put("thing2", new Content(content.getString("feeName")));
data.put("thing10", new Content(thing10));
data.put("time18", new Content(content.getString("payFeeTime")));
data.put("amount6", new Content(content.getString("receivedAmount")));
templateMessage.setData(data);
templateMessage.setUrl(content.getString("url"));
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
/**
* 业主报修时
*
|
9750b443
王彪总
fix(config): 更新配置...
|
272
|
* @param communityId 项目
|
88e030b7
王彪总
init project
|
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
|
* @param userId 用户
* @param content {
* repairTypeName,
* repairObjName,
* repairName,
* url
* }
* @return
*/
@Override
public ResultVo sendAddOwnerRepairMsg(String communityId, String userId, JSONObject content) {
String accessToken = wechatTemplateImpl.getAccessToken(communityId);
StaffAppAuthDto staffAppAuthDto = new StaffAppAuthDto();
staffAppAuthDto.setStaffId(userId);
staffAppAuthDto.setAppType("WECHAT");
List<StaffAppAuthDto> staffAppAuthDtos = staffAppAuthInnerServiceSMOImpl.queryStaffAppAuths(staffAppAuthDto);
if (ListUtil.isNull(staffAppAuthDtos)) {
throw new IllegalArgumentException("员工未认证,没有获取到微信openId");
}
String openId = staffAppAuthDtos.get(0).getOpenId();
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_WORK_ORDER_REMIND_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_WORK_ORDER_REMIND_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(communityId, mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_WORK_ORDER_REMIND_TEMPLATE));
String url = sendMsgUrl + accessToken;
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing8", new Content(content.getString("repairTypeName")));
data.put("thing11", new Content(content.getString("repairObjName")));
String context = content.getString("context");
if (!StringUtil.isEmpty(context) && context.length() > 20) {
context = context.substring(0, 20);
}
data.put("thing10", new Content(context));
templateMessage.setData(data);
templateMessage.setUrl(content.getString("url"));
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
/**
* 派单给维修师傅
*
|
9750b443
王彪总
fix(config): 更新配置...
|
327
|
* @param communityId 项目
|
88e030b7
王彪总
init project
|
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
|
* @param userId 用户
* @param content {
* repairName,
* tel,
* time,
* address
* }
* @return
*/
@Override
public ResultVo sendDistributeRepairStaffMsg(String communityId, String userId, JSONObject content) {
String accessToken = wechatTemplateImpl.getAccessToken(communityId);
StaffAppAuthDto staffAppAuthDto = new StaffAppAuthDto();
staffAppAuthDto.setStaffId(userId);
staffAppAuthDto.setAppType("WECHAT");
List<StaffAppAuthDto> staffAppAuthDtos = staffAppAuthInnerServiceSMOImpl.queryStaffAppAuths(staffAppAuthDto);
if (ListUtil.isNull(staffAppAuthDtos)) {
throw new IllegalArgumentException("员工未认证,没有获取到微信openId");
}
String openId = staffAppAuthDtos.get(0).getOpenId();
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_DISPATCH_REMIND_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_DISPATCH_REMIND_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(communityId, mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_DISPATCH_REMIND_TEMPLATE));
String url = sendMsgUrl + accessToken;
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing7", new Content(content.getString("repairName")));
data.put("phone_number3", new Content(content.getString("tel")));
data.put("time13", new Content(content.getString("time")));
data.put("thing9", new Content(content.getString("address")));
templateMessage.setData(data);
templateMessage.setUrl(content.getString("url"));
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
/**
* 通知员工
*
* @param noticeStaffDto
* @return
*/
@Override
public ResultVo sendStaffMsg(NoticeStaffDto noticeStaffDto) {
String accessToken = wechatTemplateImpl.getAccessToken(noticeStaffDto.getCommunityId());
StaffAppAuthDto staffAppAuthDto = new StaffAppAuthDto();
staffAppAuthDto.setStaffId(noticeStaffDto.getStaffId());
staffAppAuthDto.setAppType("WECHAT");
List<StaffAppAuthDto> staffAppAuthDtos = staffAppAuthInnerServiceSMOImpl.queryStaffAppAuths(staffAppAuthDto);
if (ListUtil.isNull(staffAppAuthDtos)) {
throw new IllegalArgumentException("员工未认证,没有获取到微信openId");
}
String openId = staffAppAuthDtos.get(0).getOpenId();
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_PROCESS_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_PROCESS_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(noticeStaffDto.getCommunityId(), mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_PROCESS_TEMPLATE));
String url = sendMsgUrl + accessToken;
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing2", new Content(noticeStaffDto.getTitle()));
data.put("time10", new Content(DateUtil.getNow(DateUtil.DATE_FORMATE_STRING_B)));
data.put("thing9", new Content(noticeStaffDto.getNotifyUserName()));
templateMessage.setData(data);
//获取员工公众号地址
String wechatUrl = MappingCache.getValue(MappingConstant.URL_DOMAIN, "STAFF_WECHAT_URL");
templateMessage.setUrl(wechatUrl);
if (!StringUtil.isEmpty(noticeStaffDto.getUrl())) {
templateMessage.setUrl(noticeStaffDto.getUrl());
}
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
@Override
public ResultVo sendWechatMsg(NoticeWechatDto noticeWechatDto) {
String accessToken = wechatTemplateImpl.getAccessToken(noticeWechatDto.getCommunityId());
String openId = noticeWechatDto.getOpenId();
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_PROCESS_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_PROCESS_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(noticeWechatDto.getCommunityId(), mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_PROCESS_TEMPLATE));
String url = sendMsgUrl + accessToken;
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing2", new Content(noticeWechatDto.getTitle()));
data.put("time10", new Content(DateUtil.getNow(DateUtil.DATE_FORMATE_STRING_B)));
data.put("thing9", new Content(noticeWechatDto.getNotifyUserName()));
templateMessage.setData(data);
//获取员工公众号地址
String wechatUrl = UrlCache.getOwnerUrl();
templateMessage.setUrl(wechatUrl);
if (!StringUtil.isEmpty(noticeWechatDto.getUrl())) {
templateMessage.setUrl(noticeWechatDto.getUrl());
}
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
/**
* 派单给业主通知
*
|
9750b443
王彪总
fix(config): 更新配置...
|
468
|
* @param communityId 项目
|
88e030b7
王彪总
init project
|
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
|
* @param userId 用户
* @param content {
* name,
* tel,
* time,
* url
* }
* @return
*/
@Override
public ResultVo sendDistributeRepairOwnerMsg(String communityId, String userId, JSONObject content) {
String accessToken = wechatTemplateImpl.getAccessToken(communityId);
String url = sendMsgUrl + accessToken;
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_SCHEDULE_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_SCHEDULE_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(communityId, mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_SCHEDULE_TEMPLATE));
String openId = "";
OwnerAppUserDto ownerAppUserDto = new OwnerAppUserDto();
ownerAppUserDto.setCommunityId(communityId);
ownerAppUserDto.setAppType(OwnerAppUserDto.APP_TYPE_WECHAT);
ownerAppUserDto.setUserId(userId);
List<OwnerAppUserDto> ownerAppUserDtos = ownerAppUserInnerServiceSMOImpl.queryOwnerAppUsers(ownerAppUserDto);
if (ListUtil.isNull(ownerAppUserDtos)) {
throw new IllegalArgumentException("业主未绑定,没有获取到微信openId");
}
openId = ownerAppUserDtos.get(0).getOpenId();
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing6", new Content(content.getString("name")));
data.put("phone_number9", new Content(content.getString("tel")));
data.put("time3", new Content(content.getString("time")));
templateMessage.setData(data);
templateMessage.setUrl(content.getString("url"));
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
/**
* 报修完成给业主通知
*
|
9750b443
王彪总
fix(config): 更新配置...
|
521
|
* @param communityId 项目
|
88e030b7
王彪总
init project
|
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
|
* @param userId 用户
* @param content {
* repairObjName,
* staffName,
* time,
* url
* }
* @return
*/
@Override
public ResultVo sendFinishRepairOwnerMsg(String communityId, String userId, JSONObject content) {
String accessToken = wechatTemplateImpl.getAccessToken(communityId);
String url = sendMsgUrl + accessToken;
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_WORK_ORDER_END_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_WORK_ORDER_END_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(communityId, mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_WORK_ORDER_END_TEMPLATE));
String openId = "";
OwnerAppUserDto ownerAppUserDto = new OwnerAppUserDto();
ownerAppUserDto.setCommunityId(communityId);
ownerAppUserDto.setAppType(OwnerAppUserDto.APP_TYPE_WECHAT);
ownerAppUserDto.setUserId(userId);
List<OwnerAppUserDto> ownerAppUserDtos = ownerAppUserInnerServiceSMOImpl.queryOwnerAppUsers(ownerAppUserDto);
if (ListUtil.isNull(ownerAppUserDtos)) {
throw new IllegalArgumentException("业主未绑定,没有获取到微信openId");
}
openId = ownerAppUserDtos.get(0).getOpenId();
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing9", new Content(content.getString("repairObjName")));
data.put("thing10", new Content(content.getString("staffName")));
data.put("time5", new Content(content.getString("time")));
templateMessage.setData(data);
templateMessage.setUrl(content.getString("url"));
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
@Override
public ResultVo sendReturnRepairMsg(String communityId, String userId, JSONObject content) {
String accessToken = wechatTemplateImpl.getAccessToken(communityId);
StaffAppAuthDto staffAppAuthDto = new StaffAppAuthDto();
staffAppAuthDto.setStaffId(userId);
staffAppAuthDto.setAppType("WECHAT");
List<StaffAppAuthDto> staffAppAuthDtos = staffAppAuthInnerServiceSMOImpl.queryStaffAppAuths(staffAppAuthDto);
if (staffAppAuthDtos == null || staffAppAuthDtos.size() < 1) {
throw new IllegalArgumentException("员工未认证,没有获取到微信openId");
}
String openId = staffAppAuthDtos.get(0).getOpenId();
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_WORK_ORDER_REMIND_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_WORK_ORDER_REMIND_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(communityId, mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_WORK_ORDER_REMIND_TEMPLATE));
String url = sendMsgUrl + accessToken;
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing8", new Content(content.getString("repairTypeName")));
data.put("thing11", new Content(content.getString("repairObjName")));
data.put("thing10", new Content(content.getString("repairName")));
templateMessage.setData(data);
templateMessage.setUrl(content.getString("url"));
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
/**
* oa 流程待审批通知
*
|
9750b443
王彪总
fix(config): 更新配置...
|
611
|
* @param communityId 项目
|
88e030b7
王彪总
init project
|
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
|
* @param userId 用户
* @param content {
* flowName,
* create_user_name,
* create_time,
* url
* }
* @return
*/
@Override
public ResultVo sendOaDistributeMsg(String communityId, String userId, JSONObject content) {
String accessToken = wechatTemplateImpl.getAccessToken(communityId);
StaffAppAuthDto staffAppAuthDto = new StaffAppAuthDto();
staffAppAuthDto.setStaffId(userId);
staffAppAuthDto.setAppType("WECHAT");
List<StaffAppAuthDto> staffAppAuthDtos = staffAppAuthInnerServiceSMOImpl.queryStaffAppAuths(staffAppAuthDto);
if (ListUtil.isNull(staffAppAuthDtos)) {
throw new IllegalArgumentException("员工未认证,没有获取到微信openId");
}
String openId = staffAppAuthDtos.get(0).getOpenId();
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_OA_WORKFLOW_AUDIT_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_OA_WORKFLOW_AUDIT_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(communityId, mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_OA_WORKFLOW_AUDIT_TEMPLATE));
String url = sendMsgUrl + accessToken;
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing2", new Content(content.getString("flowName")));
data.put("thing9", new Content(content.getString("create_user_name")));
data.put("time10", new Content(content.getString("create_time")));
templateMessage.setData(data);
templateMessage.setUrl(content.getString("url"));
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
/**
* oa 流程通知发起人
*
|
9750b443
王彪总
fix(config): 更新配置...
|
662
|
* @param communityId 项目
|
88e030b7
王彪总
init project
|
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
|
* @param userId 用户
* @param content {
* flowName,
* staffName,
* url
* }
* @return
*/
@Override
public ResultVo sendOaCreateStaffMsg(String communityId, String userId, JSONObject content) {
String accessToken = wechatTemplateImpl.getAccessToken(communityId);
StaffAppAuthDto staffAppAuthDto = new StaffAppAuthDto();
staffAppAuthDto.setStaffId(userId);
staffAppAuthDto.setAppType("WECHAT");
List<StaffAppAuthDto> staffAppAuthDtos = staffAppAuthInnerServiceSMOImpl.queryStaffAppAuths(staffAppAuthDto);
if (staffAppAuthDtos == null || staffAppAuthDtos.size() < 1) {
throw new IllegalArgumentException("员工未认证,没有获取到微信openId");
}
String openId = staffAppAuthDtos.get(0).getOpenId();
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_OA_WORKFLOW_AUDIT_FINISH_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_OA_WORKFLOW_AUDIT_FINISH_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(communityId, mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_OA_WORKFLOW_AUDIT_FINISH_TEMPLATE));
String url = sendMsgUrl + accessToken;
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing2", new Content(content.getString("flowName")));
data.put("thing6", new Content(content.getString("staffName")));
templateMessage.setData(data);
templateMessage.setUrl(content.getString("url"));
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
/**
* 投诉通知员工
*
|
9750b443
王彪总
fix(config): 更新配置...
|
711
|
* @param communityId 项目
|
88e030b7
王彪总
init project
|
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
|
* @param userId 用户
* @param content {
* complainName
* }
* @return
*/
@Override
public ResultVo sendComplaintMsg(String communityId, String userId, JSONObject content) {
String accessToken = wechatTemplateImpl.getAccessToken(communityId);
StaffAppAuthDto staffAppAuthDto = new StaffAppAuthDto();
staffAppAuthDto.setStaffId(userId);
staffAppAuthDto.setAppType("WECHAT");
List<StaffAppAuthDto> staffAppAuthDtos = staffAppAuthInnerServiceSMOImpl.queryStaffAppAuths(staffAppAuthDto);
if (ListUtil.isNull(staffAppAuthDtos)) {
throw new IllegalArgumentException("员工未认证,没有获取到微信openId");
}
String openId = staffAppAuthDtos.get(0).getOpenId();
Mapping mapping = MappingCache.getMapping(MappingConstant.WECHAT_DOMAIN, SPEC_CD_WECHAT_PROCESS_TEMPLATE);
if (mapping == null) {
throw new IllegalArgumentException("开发者账户编码映射未配置域为=" + MappingConstant.WECHAT_DOMAIN + ",键为=" + SPEC_CD_WECHAT_PROCESS_TEMPLATE);
}
String templateId = wechatTemplateImpl.getTemplateId(communityId, mapping.getValue(), mapping.getName(), templateKeys.get(SPEC_CD_WECHAT_PROCESS_TEMPLATE));
String url = sendMsgUrl + accessToken;
JSONObject data = new JSONObject();
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
templateMessage.setTemplate_id(templateId);
templateMessage.setTouser(openId);
data.put("thing2", new Content("投诉单处理流程"));
data.put("time10", new Content(DateUtil.getNow(DateUtil.DATE_FORMATE_STRING_B)));
data.put("thing9", new Content(content.getString("complaintName")));
templateMessage.setData(data);
//获取员工公众号地址
String wechatUrl = MappingCache.getValue(MappingConstant.URL_DOMAIN, "STAFF_WECHAT_URL");
templateMessage.setUrl(wechatUrl);
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
logger.info("微信模板返回内容:{}", responseEntity);
JSONObject paramOut = JSONObject.parseObject(responseEntity.getBody());
return new ResultVo(paramOut.getIntValue("errcode"), paramOut.getString("errmsg"));
}
}
|