Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
B
byh-family-doctor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
包
包
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
杨凯
byh-family-doctor
Commits
2fef010d
提交
2fef010d
authored
3月 25, 2024
作者:
杨凯
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:家庭医生初始化
上级
1c2240a5
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
26 行增加
和
6 行删除
+26
-6
Components.java
...ava/com/ebaiyihui/family/doctor/common/bo/Components.java
+2
-0
ImChatTemplateImpl.java
...family/doctor/server/service/impl/ImChatTemplateImpl.java
+20
-2
ThirdOrderPushUtil.java
...aiyihui/family/doctor/server/util/ThirdOrderPushUtil.java
+4
-4
没有找到文件。
family-doctor-common/src/main/java/com/ebaiyihui/family/doctor/common/bo/Components.java
浏览文件 @
2fef010d
...
...
@@ -17,4 +17,6 @@ public class Components {
private
String
content
;
private
Integer
conditionFlag
;
}
family-doctor-server/src/main/java/com/ebaiyihui/family/doctor/server/service/impl/ImChatTemplateImpl.java
浏览文件 @
2fef010d
...
...
@@ -10,6 +10,7 @@ import com.doctoruser.api.pojo.vo.UserInfoByUserIdRespVO;
import
com.ebaiyihui.family.doctor.common.bo.*
;
import
com.ebaiyihui.family.doctor.common.dto.AbnormalDataDTO
;
import
com.ebaiyihui.family.doctor.common.dto.DoctorIdDTO
;
import
com.ebaiyihui.family.doctor.common.dto.HealthInfoDTO
;
import
com.ebaiyihui.family.doctor.common.dto.SendImMsgDTO
;
import
com.ebaiyihui.family.doctor.server.common.constants.CommonConstants
;
import
com.ebaiyihui.family.doctor.server.common.constants.IMInformConstants
;
...
...
@@ -162,6 +163,23 @@ public class ImChatTemplateImpl implements ImChatTemplate {
if
(!
StringUtils
.
isEmpty
(
sendImMsgDTO
.
getOldAdmId
()))
{
PatientSignInfo
oldPatientSignInfo
=
getPatientSignInfo
(
sendImMsgDTO
.
getOldAdmId
());
content
=
MessageFormat
.
format
(
content
,
oldPatientSignInfo
.
getDoctorName
(),
patientSignInfo
.
getDoctorName
());
// 改签的时候判断患者健康计划是否开启,开启则不发送健康计划信息
if
(
MsgTempTypeEnum
.
UP_SUC
.
getValue
().
equals
(
sendImMsgDTO
.
getType
()))
{
if
(!
Objects
.
nonNull
(
componentsList
.
get
(
i
).
getConditionFlag
())
&&
CommonConstants
.
STATUS_VALID
.
equals
(
componentsList
.
get
(
i
).
getConditionFlag
()))
{
// 查询用户健康计划是否开启状态
HealthInfoDTO
healthInfoDTO
=
new
HealthInfoDTO
();
healthInfoDTO
.
setPhone
(
patientSignInfo
.
getPatientPhone
());
String
result
=
thirdOrderPushUtil
.
getHealthSchStatus
(
healthInfoDTO
);
if
(!
StringUtils
.
isEmpty
(
result
))
{
Result
<
String
>
hssResult
=
JSON
.
parseObject
(
result
,
Result
.
class
);
if
(
hssResult
.
isSuccess
())
{
continue
;
}
}
}
}
}
// 报告异常特殊处理
...
...
@@ -170,9 +188,9 @@ public class ImChatTemplateImpl implements ImChatTemplate {
abnormalDataDTO
.
setPhone
(
patientSignInfo
.
getPatientPhone
());
abnormalDataDTO
.
setAbnormalId
(
sendImMsgDTO
.
getAbnormalId
());
String
result
=
thirdOrderPushUtil
.
getAbnormalData
(
abnormalDataDTO
);
if
(!
StringUtils
.
isEmpty
(
result
)){
if
(!
StringUtils
.
isEmpty
(
result
))
{
Result
<
String
>
abResult
=
JSON
.
parseObject
(
result
,
Result
.
class
);
if
(
abResult
.
isSuccess
()){
if
(
abResult
.
isSuccess
())
{
content
=
MessageFormat
.
format
(
content
,
patientSignInfo
.
getDoctorName
(),
abResult
.
getData
());
}
}
...
...
family-doctor-server/src/main/java/com/ebaiyihui/family/doctor/server/util/ThirdOrderPushUtil.java
浏览文件 @
2fef010d
...
...
@@ -164,16 +164,17 @@ public class ThirdOrderPushUtil {
*
* @param healthInfoDTO
*/
public
void
getHealthSchStatus
(
HealthInfoDTO
healthInfoDTO
)
{
public
String
getHealthSchStatus
(
HealthInfoDTO
healthInfoDTO
)
{
String
result
=
""
;
try
{
String
param
=
JSONObject
.
toJSONString
(
healthInfoDTO
);
log
.
info
(
"getHealthSchStatus请求入参{}"
,
param
);
String
result
=
HttpKit
.
jsonPost
(
projProperties
.
getFamilyDoctorThirdUrl
()
+
UrlConstants
.
HEALTH_SCHEDULE_STATUS_URL
,
param
,
getThirdHead
(
healthInfoDTO
));
result
=
HttpKit
.
jsonPost
(
projProperties
.
getFamilyDoctorThirdUrl
()
+
UrlConstants
.
HEALTH_SCHEDULE_STATUS_URL
,
param
,
getThirdHead
(
healthInfoDTO
));
log
.
info
(
"getHealthSchStatus请求返参{}"
,
param
);
}
catch
(
Exception
e
)
{
log
.
error
(
"getHealthSchStatus请求失败:{}"
,
e
);
}
return
result
;
}
/**
...
...
@@ -183,7 +184,6 @@ public class ThirdOrderPushUtil {
*/
public
String
getHealthRecordWhetherUpdate
(
HealthInfoDTO
healthInfoDTO
)
{
String
result
=
""
;
try
{
String
param
=
JSONObject
.
toJSONString
(
healthInfoDTO
);
log
.
info
(
"getHealthRecordWhetherUpdate请求入参{}"
,
param
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论