Commit 1eb60652 by 李承祥

根据绩效是否解析成功生成二次绩效

parent afbdbe8f
...@@ -365,7 +365,7 @@ public List<AgainAllotResponse> GetAllotList(int userid) ...@@ -365,7 +365,7 @@ public List<AgainAllotResponse> GetAllotList(int userid)
var hospital = perforUserhospitalRepository.GetEntity(t => t.UserID == userid); var hospital = perforUserhospitalRepository.GetEntity(t => t.UserID == userid);
if (hospital == null) if (hospital == null)
throw new NotImplementedException("人员未选择医院"); throw new NotImplementedException("人员未选择医院");
var allot = perforPerallotRepository.GetEntities(t => t.HospitalId == hospital.HospitalID); var allot = perforPerallotRepository.GetEntities(t => t.HospitalId == hospital.HospitalID && t.States == 6);
if (allot == null) if (allot == null)
throw new NotImplementedException("该医院未生成绩效"); throw new NotImplementedException("该医院未生成绩效");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment