This commit is contained in:
2023-03-13 13:49:31 +08:00
parent 802a5081fb
commit 6d2c0374a3
6 changed files with 245 additions and 6 deletions
+22
View File
@@ -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);
}
}