| | |
| | | String title = Constant.znxConfig.getShareOrderStatisticedTitle();
|
| | | String content = Constant.znxConfig.getShareOrderStatisticedMsg();
|
| | | content = content.replace("[订单类型]", Constant.getSourceName(sourceType))
|
| | | .replace("[订单号]", orderId.substring(0, orderId.length() - 6) + "******")
|
| | | .replace("[订单号]",UserUtil.filterOrderId(orderId))
|
| | | .replace("[金额]", money.toString());
|
| | | return new PushContentDTO(title, content);
|
| | | }
|
| | |
| | | String title = Constant.znxConfig.getInviteOrderStatisticedTitle();
|
| | | String content = Constant.znxConfig.getInviteOrderStatisticedMsg();
|
| | | content = content.replace("[订单类型]", Constant.getSourceName(sourceType))
|
| | | .replace("[订单号]", orderId.substring(0, orderId.length() - 6) + "******")
|
| | | .replace("[订单号]",UserUtil.filterOrderId(orderId))
|
| | | .replace("[金额]", money.toString());
|
| | | return new PushContentDTO(title, content);
|
| | | }
|
| | |
| | | String title = Constant.znxConfig.getMoneyWeiquanTitle();
|
| | | String content = Constant.znxConfig.getMoneyWeiquanMsg();
|
| | | content = content.replace("[订单类型]", Constant.getSourceName(sourceType))
|
| | | .replace("[订单号]", orderId.substring(0, orderId.length() - 6) + "******")
|
| | | .replace("[订单号]", UserUtil.filterOrderId(orderId))
|
| | | .replace("[部分]", part ? "部分" : "").replace("[金额]", money.toString());
|
| | | return new PushContentDTO(title, content);
|
| | | }
|