|
|
@@ -160,7 +160,7 @@ public class StoreCommentAppealSupplementJobService {
|
|
|
log.info("【用户补充申诉】用户赢,申诉驳回,申诉ID: {}", appeal.getId());
|
|
|
}
|
|
|
|
|
|
- storeCommentAppealMapper.updateByRecordId(appeal.getRecordId(),
|
|
|
+ storeCommentAppealMapper.updateByRecordIdNew(appeal.getId(),
|
|
|
updateAppeal.getAppealStatus(), updateAppeal.getFinalResult());
|
|
|
boolean merchantWins = merchantConfidence > userConfidence;
|
|
|
sendAppealResultNotifications(appeal, merchantWins);
|
|
|
@@ -198,7 +198,10 @@ public class StoreCommentAppealSupplementJobService {
|
|
|
contextJson.put("message", message);
|
|
|
contextJson.put("appealId", appeal.getId());
|
|
|
contextJson.put("commentId", appeal.getCommentId());
|
|
|
- insertSystemNotice(receiverId, appeal.getId(), "商家申诉通知", contextJson.toJSONString());
|
|
|
+ String title = merchantWins
|
|
|
+ ? "您的评价已被删除"
|
|
|
+ : "商家申诉已被驳回";
|
|
|
+ insertSystemNotice(receiverId, appeal.getId(), title, contextJson.toJSONString());
|
|
|
log.info("【用户补充申诉】用户申诉结果通知发送成功,appealId={}, merchantWins={}", appeal.getId(), merchantWins);
|
|
|
} catch (Exception e) {
|
|
|
log.error("【用户补充申诉】用户申诉结果通知发送失败,appealId={}", appeal.getId(), e);
|