From 3dfbfc9647481d0a9d49986abfbe4e6c0b5b7425 Mon Sep 17 00:00:00 2001 From: wangning <164851225@qq.com> Date: Fri, 20 Apr 2018 17:33:02 +0800 Subject: [PATCH] update --- .../payment/manage/task/PostponeClientTask.java | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/main/java/au/com/royalpay/payment/manage/task/PostponeClientTask.java b/src/main/java/au/com/royalpay/payment/manage/task/PostponeClientTask.java index 5c9d0861d..55fca3cc2 100644 --- a/src/main/java/au/com/royalpay/payment/manage/task/PostponeClientTask.java +++ b/src/main/java/au/com/royalpay/payment/manage/task/PostponeClientTask.java @@ -7,7 +7,6 @@ import au.com.royalpay.payment.manage.tradelog.refund.events.NewRefundReviewEven import au.com.royalpay.payment.tools.connections.mpsupport.MpWechatApi; import au.com.royalpay.payment.tools.connections.mpsupport.MpWechatApiProvider; import au.com.royalpay.payment.tools.connections.mpsupport.beans.TemplateMessage; -import au.com.royalpay.payment.tools.env.PlatformEnvironment; import com.alibaba.fastjson.JSONObject; @@ -76,13 +75,13 @@ public class PostponeClientTask { expiryClients.keySet().forEach(p -> { List adminAccounts = clientAccountMapper.listAdminAccounts(p); adminAccounts.forEach(o -> { - sendPostponeNotify(o); + sendClientPostponeNotify(o); }); }); } - private void sendPostponeNotify(JSONObject account) { + private void sendClientPostponeNotify(JSONObject account) { JSONObject client = clientManager.getClientInfo(account.getIntValue("client_id")); try { @@ -100,11 +99,15 @@ public class PostponeClientTask { } } + private void sendComplianceNotify(Map clients){ + clients.values().forEach(p->{ + }); + + } + private TemplateMessage initMessage(NewRefundReviewEvent newRefundReviewEvent, String operatorName, JSONObject client, JSONObject review, String templateId, String wechatOpenid) { - String uri = "/api/payment/v1.0/refund/review/" + review.getString("review_id"); - String loginUrl = PlatformEnvironment.getEnv().concatUrl("/global/userstatus/manager_signin_wechat") + "?target=" + uri; - TemplateMessage notice = new TemplateMessage(wechatOpenid, templateId, loginUrl); + TemplateMessage notice = new TemplateMessage(wechatOpenid, templateId, "asd"); notice.put("first", operatorName + "提交了订单的退款申请,请审核", "#ff0000"); notice.put("keyword1", review.getString("currency") + newRefundReviewEvent.getRefundOrder().getDoubleValue("amount"), "#ff0000"); notice.put("keyword2", operatorName, "#0000ff");