作者 tangxvhui

修正变量错误

... ... @@ -93,7 +93,7 @@ func (srv *SummaryEvaluationService) EditEvaluationByHrCheck(param *command.Edit
newItemValue := domain.SummaryEvaluationValue{}
newItemValue.SetBlankValue(evalutionHrbp, val)
newItemValue.Remark = itemValueParam[val.Id].Remark
evaluationSuper.FillItemValue(val, &newItemValue, itemValueParam[val.Id].Value)
evalutionHrbp.FillItemValue(val, &newItemValue, itemValueParam[val.Id].Value)
newHrbpItemValueList = append(newHrbpItemValueList, &newItemValue)
}
if val.EvaluatorId > 0 {
... ... @@ -106,7 +106,7 @@ func (srv *SummaryEvaluationService) EditEvaluationByHrCheck(param *command.Edit
newItemValue := domain.SummaryEvaluationValue{}
newItemValue.SetBlankValue(evaluation360, val)
newItemValue.Remark = itemValueParam[val.Id].Remark
evaluationSuper.FillItemValue(val, &newItemValue, itemValueParam[val.Id].Value)
evaluation360.FillItemValue(val, &newItemValue, itemValueParam[val.Id].Value)
itemValue360List = append(itemValue360List, &newItemValue)
new360ItemValueList[evaluation360.Executor.UserId] = itemValue360List
}
... ...