|
@@ -198,7 +198,10 @@ public class StoreCommentAppealSupplementJobService {
|
|
|
contextJson.put("message", message);
|
|
contextJson.put("message", message);
|
|
|
contextJson.put("appealId", appeal.getId());
|
|
contextJson.put("appealId", appeal.getId());
|
|
|
contextJson.put("commentId", appeal.getCommentId());
|
|
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);
|
|
log.info("【用户补充申诉】用户申诉结果通知发送成功,appealId={}, merchantWins={}", appeal.getId(), merchantWins);
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
|
log.error("【用户补充申诉】用户申诉结果通知发送失败,appealId={}", appeal.getId(), e);
|
|
log.error("【用户补充申诉】用户申诉结果通知发送失败,appealId={}", appeal.getId(), e);
|