修正路由

This commit is contained in:
2023-11-20 15:16:20 +08:00
parent 142375a752
commit 083484aad6
5 changed files with 46 additions and 65 deletions
@@ -250,4 +250,15 @@ class PatientFamilyController extends AbstractController
$data = $patientFamilyService->getFamilyCase();
return $this->response->json($data);
}
/**
* 检测家庭成员是否存在病情记录
* @return ResponseInterface
*/
public function existFamilyPathography(): ResponseInterface
{
$patientFamilyService = new PatientFamilyService();
$data = $patientFamilyService->existFamilyPathography();
return $this->response->json($data);
}
}
@@ -1,23 +0,0 @@
<?php
namespace App\Controller;
use App\Services\PatientPathographyService;
use Psr\Http\Message\ResponseInterface;
/**
* 病情记录
*/
class PatientPathographyController extends AbstractController
{
/**
* 检测家庭成员是否存在病情记录
* @return ResponseInterface
*/
public function existFamilyPathography(): ResponseInterface
{
$PatientPathographyService = new PatientPathographyService();
$data = $PatientPathographyService->existFamilyPathography();
return $this->response->json($data);
}
}
+25
View File
@@ -1043,4 +1043,29 @@ class PatientFamilyService extends BaseService
return success($result);
}
/**
* 检测家庭成员是否存在病情记录
* @return array
*/
public function existFamilyPathography(): array
{
$user_info = $this->request->getAttribute("userInfo") ?? [];
$family_id = $this->request->route('family_id');
$result = array();
$result['is_exist'] = 0;
// 获取病情记录
$params = array();
$params['user_id'] = $user_info['user_id'];
$params['patient_id'] = $user_info['client_user_id'];
$params['family_id'] = $family_id;
$patient_pathography = PatientPathography::getLastOne($params);
if (!empty($patient_pathography)){
$result['is_exist'] = 1;
}
return success($result);
}
}
@@ -1,36 +0,0 @@
<?php
namespace App\Services;
use App\Model\PatientPathography;
/**
* 病情记录
*/
class PatientPathographyService extends BaseService
{
/**
* 检测家庭成员是否存在病情记录
* @return array
*/
public function existFamilyPathography(): array
{
$user_info = $this->request->getAttribute("userInfo") ?? [];
$family_id = $this->request->route('family_id');
$result = array();
$result['is_exist'] = 0;
// 获取病情记录
$params = array();
$params['user_id'] = $user_info['user_id'];
$params['patient_id'] = $user_info['client_user_id'];
$params['family_id'] = $family_id;
$patient_pathography = PatientPathography::getLastOne($params);
if (!empty($patient_pathography)){
$result['is_exist'] = 1;
}
return success($result);
}
}