|
|
|
@ -715,6 +715,23 @@ public class RetailAppServiceImp implements RetailAppService {
|
|
|
|
|
LocaleSupport.localeMessage("app.message.title.daily_notice"), trade_date + ": 总交易额 "
|
|
|
|
|
+ PlatformEnvironment.getEnv().getForeignCurrency() + total_amount + ", 订单数:" + total_orders + ", 付款人数:" + customers,
|
|
|
|
|
token, tradeInfo, type);
|
|
|
|
|
AppMsgSender sender = senderMap.get(devToken.getString("client_type"));
|
|
|
|
|
if (token == null || sender == null) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
JSONObject managerMsg = new JSONObject();
|
|
|
|
|
managerMsg.put("title", LocaleSupport.localeMessage("app.message.title.daily_notice"));
|
|
|
|
|
managerMsg.put("body", trade_date + ": 总交易额 "
|
|
|
|
|
+ PlatformEnvironment.getEnv().getForeignCurrency() + total_amount + ", 订单数:" + total_orders + ", 付款人数:" + customers);
|
|
|
|
|
managerMsg.put("type", type);
|
|
|
|
|
managerMsg.put("data", tradeInfo);
|
|
|
|
|
managerMsg.put("msgType", "daily_notice");
|
|
|
|
|
AppMessage appMessage = new AppManagerMessageBuilder(managerMsg).buildMessage();
|
|
|
|
|
sender.sendMessage(appMessage, devToken);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
log.put("status", 2);
|
|
|
|
|
appMessageLogMapper.update(log);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|