Commit 43c303d1 authored by chenyuxi's avatar chenyuxi

feat: 改配置信息+修复消息空值展示

parent 4bc776eb
......@@ -228,7 +228,12 @@ public class TInsuranceUnpurchaseApplyAuditProcess extends AbastractAuditProcess
reasonTypeMap.put("1", "已购买社保");
reasonTypeMap.put("2", "人员已离职");
description.append("不购买原因:").append(reasonTypeMap.get(insuranceUnpurchaseApply.getReasonType())).append("<br>");
description.append("不购买人数:").append(insuranceUnpurchaseApply.getUnbuyNum()).append("<br>");
String unbuyNum = CommonConstants.ZERO_STRING;
if(Common.isNotNull(insuranceUnpurchaseApply.getUnbuyNum())){
unbuyNum = insuranceUnpurchaseApply.getUnbuyNum();
}
description.append("不购买人数:").append(unbuyNum).append("<br>");
textcard.put("description", description.toString());
requestMap.put("touser", sendUser);
......
......@@ -19,8 +19,6 @@ wx:
corpid: wwbcb090af0dfe50e5
corpsecret: 16kqEL_eU-ARwYyqLgEBWHgxm8gXVnkzv_eJMLy9NpU
agentid: 1000010
authUrl: https://test-worfu.com/yifu-auth/method/oauth/wxLogin
authUrl: https://test-wx.worfu.com/yifu-auth/method/oauth/wxLogin
......@@ -31,4 +31,4 @@ wx:
corpid: wwbcb090af0dfe50e5
corpsecret: 16kqEL_eU-ARwYyqLgEBWHgxm8gXVnkzv_eJMLy9NpU
agentid: 1000010
authUrl: https://test-worfu.com/yifu-auth/method/oauth/wxLogin
authUrl: https://test-wx.worfu.com/yifu-auth/method/oauth/wxLogin
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment