|
@@ -92,6 +92,8 @@ public class OrderRefundController {
|
|
|
@Autowired
|
|
|
private SkuService skuService;
|
|
|
|
|
|
+
|
|
|
+
|
|
|
@GetMapping("getIsDistribution")
|
|
|
@ApiOperation(value = "获取是否在配送中")
|
|
|
public ResponseEntity<Boolean> getIsDistribution( String orderNumber){
|
|
@@ -671,7 +673,7 @@ public class OrderRefundController {
|
|
|
order.setRefundStatus(RefundStatusEnum.DISAGREE.value());
|
|
|
orderService.updateById(order);
|
|
|
}
|
|
|
-
|
|
|
+ orderRefundService.changeStatus(refundSn,40);
|
|
|
return ResponseEntity.ok("撤销成功");
|
|
|
}
|
|
|
|