|
|
@@ -75,8 +75,6 @@ public class CommentAppealServiceImpl extends ServiceImpl<CommentAppealMapper, C
|
|
|
if (orderReview.getOrderId() != null) {
|
|
|
commentAppeal.setOrderId(orderReview.getOrderId());
|
|
|
}
|
|
|
- orderReview.setAppealStatus(1);
|
|
|
- orderReviewMapper.insert(orderReview);
|
|
|
}
|
|
|
|
|
|
// 设置默认值
|
|
|
@@ -90,6 +88,11 @@ public class CommentAppealServiceImpl extends ServiceImpl<CommentAppealMapper, C
|
|
|
if (result) {
|
|
|
log.info("提交申诉成功,id={}", commentAppeal.getId());
|
|
|
|
|
|
+ if(orderReview != null){
|
|
|
+ orderReview.setAppealId(commentAppeal.getId().toString());
|
|
|
+ orderReviewMapper.insert(orderReview);
|
|
|
+ }
|
|
|
+
|
|
|
// 更新订单表的申诉状态为2(申诉中)
|
|
|
if (commentAppeal.getOrderId() != null) {
|
|
|
LambdaUpdateWrapper<LawyerConsultationOrder> lambdaUpdateWrapper = new LambdaUpdateWrapper<>();
|