新增:订单取消支付-1未支付、取消订单-问诊/检测/服务包
This commit is contained in:
@@ -61,5 +61,4 @@ class OrderServicePackageController extends AbstractController
|
||||
$data = $OrderServicePackageService->addServiceInquiryOrder();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -297,5 +297,36 @@ class PatientOrderController extends AbstractController
|
||||
return $this->response->json($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 服务包订单取消支付-1未支付
|
||||
* @return ResponseInterface
|
||||
*/
|
||||
public function putPatientServiceOrderCancelPay(): ResponseInterface
|
||||
{
|
||||
$PatientOrderService = new PatientOrderService();
|
||||
$data = $PatientOrderService->putPatientServiceOrderCancelPay();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 订单取消支付-1未支付
|
||||
* @return ResponseInterface
|
||||
*/
|
||||
public function putPatientOrderCancelPay(): ResponseInterface
|
||||
{
|
||||
$PatientOrderService = new PatientOrderService();
|
||||
$data = $PatientOrderService->putPatientOrderCancelPay();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 取消订单-问诊/检测/服务包
|
||||
* @return ResponseInterface
|
||||
*/
|
||||
public function putCancelPatientOrder(): ResponseInterface
|
||||
{
|
||||
$PatientOrderService = new PatientOrderService();
|
||||
$data = $PatientOrderService->putCancelPatientOrder();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user