新增 获取问诊订单病例缺少字段

This commit is contained in:
2023-11-29 16:33:11 +08:00
parent 9d7701f454
commit f7ccb78efa
6 changed files with 145 additions and 7 deletions
+16
View File
@@ -45,4 +45,20 @@ class PatientCaseController extends AbstractController
$data = $PatientCaseService->getPatientFamilyInquiryCase();
return $this->response->json($data);
}
/**
* 获取问诊订单病例缺少字段
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function getPatientFamilyInquiryCaseUnfilledFields(): ResponseInterface
{
$request = $this->container->get(PatientCaseRequest::class);
$request->scene('getPatientFamilyInquiryCaseUnfilledFields')->validateResolved();
$PatientCaseService = new PatientCaseService();
$data = $PatientCaseService->getPatientFamilyInquiryCaseUnfilledFields();
return $this->response->json($data);
}
}