订单申诉完成是,无需进行撤销申诉操作

This commit is contained in:
Chopper
2021-08-12 00:28:46 +08:00
parent d5b6ba5d00
commit 9e3eb1f74e
3 changed files with 7 additions and 2 deletions

View File

@@ -71,10 +71,9 @@ public class OrderComplaintStoreController {
@ApiOperation(value = "修改申诉信息")
@PutMapping
public ResultMessage<OrderComplaintVO> update(OrderComplaintVO orderComplainVO) {
orderComplainVO.setStoreId(UserContext.getCurrentUser().getId());
orderComplainVO.setStoreId(UserContext.getCurrentUser().getStoreId());
orderComplaintService.updateOrderComplain(orderComplainVO);
return ResultUtil.data(orderComplainVO);
}
@ApiOperation(value = "申诉")