新增:订单取消支付-1未支付、取消订单-问诊/检测/服务包

This commit is contained in:
2024-04-12 11:37:32 +08:00
parent 7010cc5f60
commit ead795094c
5 changed files with 347 additions and 1 deletions
@@ -61,5 +61,4 @@ class OrderServicePackageController extends AbstractController
$data = $OrderServicePackageService->addServiceInquiryOrder();
return $this->response->json($data);
}
}
+31
View File
@@ -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);
}
}