1
This commit is contained in:
@@ -184,4 +184,26 @@ class PatientOrderController extends AbstractController
|
||||
$data = $PatientOrderService->getPatientPrescriptionOrderInfo();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取处方订单支付页详情
|
||||
* @return ResponseInterface
|
||||
*/
|
||||
public function getPatientPrescriptionOrderPayInfo(): ResponseInterface
|
||||
{
|
||||
$PatientOrderService = new PatientOrderService();
|
||||
$data = $PatientOrderService->getPatientPrescriptionOrderPayInfo();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除处方订单记录
|
||||
* @return ResponseInterface
|
||||
*/
|
||||
public function deletePatientPrescriptionOrder(): ResponseInterface
|
||||
{
|
||||
$PatientOrderService = new PatientOrderService();
|
||||
$data = $PatientOrderService->deletePatientPrescriptionOrder();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user