|
@@ -8,6 +8,7 @@ import com.chelvc.cloud.vehicle.api.param.OrderPagingParam;
|
|
|
import com.chelvc.cloud.vehicle.api.service.IOmsOrderReturnApplyService;
|
|
|
import com.chelvc.cloud.vehicle.api.service.IOmsOrderService;
|
|
|
import com.chelvc.framework.base.annotation.ResponseWrapping;
|
|
|
+import com.chelvc.framework.base.context.SessionContextHolder;
|
|
|
import com.chelvc.framework.common.model.Pagination;
|
|
|
import org.apache.dubbo.config.annotation.DubboReference;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
@@ -140,5 +141,13 @@ public class OmsOrderController {
|
|
|
return this.omsOrderService.getOrderQuantity();
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ /**
|
|
|
+ * 商家订单核验
|
|
|
+ * @param orderId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping("/order/verification")
|
|
|
+ public void orderVerification(@PathVariable("orderId") Long orderId) {
|
|
|
+ this.omsOrderService.orderVerification(orderId, SessionContextHolder.getId());
|
|
|
+ }
|
|
|
}
|