...
|
...
|
@@ -549,6 +549,9 @@ func GetChanceSelfChecks(chanceInfo *models.Chance) []protocol.SelfCheck { |
|
|
switch chanceInfo.CheckResultStatus {
|
|
|
case protocol.None: //未提交筛查结果
|
|
|
utils.JsonUnmarshal(chanceInfo.SelfChecks, &selfChecks)
|
|
|
if len(selfChecks) != 0 {
|
|
|
protocol.SelfChecks(selfChecks).SetSelfChecksLevel1ByRule()
|
|
|
}
|
|
|
break
|
|
|
case protocol.Waiting: //未通过审核的返回所有筛查结果(一级/二级)
|
|
|
utils.JsonUnmarshal(chanceInfo.CheckResult, &selfChecks)
|
...
|
...
|
|