|
@ -636,7 +636,17 @@ public class SynergyManageService extends BaseJpaService {
|
|
|
}
|
|
|
//组装jsonObject内容
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
jsonObject.put("type", workorderDO.getType());
|
|
|
Integer servicerType = workorderDO.getType();
|
|
|
//协同服务类型
|
|
|
if(servicerType == 1){
|
|
|
jsonObject.put("type", "健康教育");
|
|
|
}else if(servicerType == 3){
|
|
|
jsonObject.put("type", "随访");
|
|
|
}else if(servicerType == 4){
|
|
|
jsonObject.put("type", "调查问卷");
|
|
|
}else if(servicerType == 5){
|
|
|
jsonObject.put("type", "疾病筛查");
|
|
|
}
|
|
|
if(type == 26){
|
|
|
jsonObject.put("returnedRemark", workorderDO.getReturnedRemark());
|
|
|
}else if(type == 25){
|