Authored by qinchao

短信模板更改

... ... @@ -314,7 +314,7 @@ public class AppraiseService {
//
SellerOrderGoods sellerOrderGoods = sellerOrderGoodsMapper.selectByPrimaryKey(skup);
inBoxFacade.noticeSellerWhenAppraiseFail(sellerUid, sellerOrderGoods.getProductName());
inBoxFacade.buyerGetEarnestMoneyWhenAppraiseFail(buyerUid, buyerOrder.getOrderCode());
inBoxFacade.buyerGetEarnestMoneyWhenAppraiseFail(buyerUid, buyerOrder.getOrderCode(), sellerOrderGoods.getProductName());
}catch (Exception ex){
LOGGER.warn("in appraiseFail ,refund fail,req {}", req, ex);
BillLogEvent buyererBillLogEvent = bleb.tradeStatus(200)
... ...
... ... @@ -185,7 +185,7 @@ public class InBoxFacade {
* @param buyerUid
* @param orderCode
*/
public void buyerGetEarnestMoneyWhenAppraiseFail(int buyerUid, long orderCode) {
public void buyerGetEarnestMoneyWhenAppraiseFail(int buyerUid, long orderCode,String prdName) {
try {
executorService.execute(()->{
InboxBusinessTypeEnum ibt = InboxBusinessTypeEnum.PURCHASE_CLOSED_PLATFORM;
... ... @@ -204,7 +204,7 @@ public class InBoxFacade {
}
List<String> mobileList = Arrays.asList(phone);
SmsContentEnum smsIbt=SmsContentEnum.SMS_CLOSED_PLATFORM;
String content=smsIbt.getReplacedContent(orderCode);
String content=smsIbt.getReplacedContent(prdName);
sendSmsService.smsSendByMobile(content,mobileList);
logger.info("record buyerGetEarnestMoneyWhenAppraiseFail inbox sms msg, buyerUid {}, orderCode {}",
buyerUid, orderCode);
... ...