|
@@ -1057,6 +1057,7 @@ func (srv StaffAssessServeice) getAssessSelfInfoUncompleted(transactionContext a |
|
@@ -1057,6 +1057,7 @@ func (srv StaffAssessServeice) getAssessSelfInfoUncompleted(transactionContext a |
1057
|
ritem := domain.AssessContemtRemark{
|
1057
|
ritem := domain.AssessContemtRemark{
|
1058
|
Title: vv.Title,
|
1058
|
Title: vv.Title,
|
1059
|
HintText: vv.HintText,
|
1059
|
HintText: vv.HintText,
|
|
|
1060
|
+ Definition: vv.Definition,
|
1060
|
RemarkText: "",
|
1061
|
RemarkText: "",
|
1061
|
}
|
1062
|
}
|
1062
|
remarks = append(remarks, ritem)
|
1063
|
remarks = append(remarks, ritem)
|
|
@@ -1696,14 +1697,12 @@ func (srv StaffAssessServeice) SaveAssessInfo(param *command.SaveAssessInfoComma |
|
@@ -1696,14 +1697,12 @@ func (srv StaffAssessServeice) SaveAssessInfo(param *command.SaveAssessInfoComma |
1696
|
continue
|
1697
|
continue
|
1697
|
}
|
1698
|
}
|
1698
|
v.Value = item.Value
|
1699
|
v.Value = item.Value
|
1699
|
- if len(item.Value) > 0 {
|
|
|
1700
|
- //填入评估值描述
|
|
|
1701
|
- reteResult, err := v.Rule.ScoreOrRating(&v.Value)
|
|
|
1702
|
- if err != nil {
|
|
|
1703
|
- return nil, application.ThrowError(application.BUSINESS_ERROR, err.Error())
|
|
|
1704
|
- }
|
|
|
1705
|
- v.ReteResult = reteResult
|
1700
|
+ //填入评估值描述
|
|
|
1701
|
+ reteResult, err := v.Rule.ScoreOrRating(&v.Value)
|
|
|
1702
|
+ if err != nil {
|
|
|
1703
|
+ return nil, application.ThrowError(application.BUSINESS_ERROR, err.Error())
|
1706
|
}
|
1704
|
}
|
|
|
1705
|
+ v.ReteResult = reteResult
|
1707
|
for ii := range v.Remark {
|
1706
|
for ii := range v.Remark {
|
1708
|
for _, vvv := range item.Remark {
|
1707
|
for _, vvv := range item.Remark {
|
1709
|
if v.Remark[ii].Title == vvv.Title {
|
1708
|
if v.Remark[ii].Title == vvv.Title {
|