Browse Source

代码提交

huangwenjie 5 years ago
parent
commit
071c94baf7

+ 1 - 1
business/im-service/src/main/java/com/yihu/jw/im/service/ImService.java

@ -1329,7 +1329,7 @@ public class ImService {
			ConsultDo consultDo = consultDao.findOne(consult);
			
			//如果是复诊咨询,或者协同门诊,则修改成已评价
			if("9".equals(consultDo.getType()) || "13".equals(consultDo.getType()) ){
			if(9 == consultDo.getType() || 13 == consultDo.getType() ){
				WlyyOutpatientDO wlyyOutpatientDO = outpatientDao.findOne(consultTeamDo.getRelationCode());
				wlyyOutpatientDO.setEvaluateStatus("1");
				outpatientDao.save(wlyyOutpatientDO);