|
|
@ -2603,13 +2603,13 @@ WHERE A.IsEnable = 1 AND C.IsEnable = 1 AND C.Status = A.Status"; |
|
|
|
header.Add(obj); |
|
|
|
header.Add(obj); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
obj = new(); |
|
|
|
//obj = new(); |
|
|
|
obj.Add(new JProperty("title", "评价")); |
|
|
|
//obj.Add(new JProperty("title", "评价")); |
|
|
|
obj.Add(new JProperty("field", "EvaluateContent")); |
|
|
|
//obj.Add(new JProperty("field", "EvaluateContent")); |
|
|
|
obj.Add(new JProperty("align", "center")); |
|
|
|
//obj.Add(new JProperty("align", "center")); |
|
|
|
obj.Add(new JProperty("width", 120)); |
|
|
|
//obj.Add(new JProperty("width", 120)); |
|
|
|
obj.Add(new JProperty("fixed", null)); |
|
|
|
//obj.Add(new JProperty("fixed", null)); |
|
|
|
header.Add(obj); |
|
|
|
//header.Add(obj); |
|
|
|
|
|
|
|
|
|
|
|
result.Header = header; |
|
|
|
result.Header = header; |
|
|
|
#endregion |
|
|
|
#endregion |
|
|
@ -2630,9 +2630,52 @@ WHERE A.IsEnable = 1 AND C.IsEnable = 1 AND C.Status = A.Status"; |
|
|
|
obj.Add(new JProperty("Score" + (i + 1), null)); |
|
|
|
obj.Add(new JProperty("Score" + (i + 1), null)); |
|
|
|
obj.Add(new JProperty("CanEdit" + (i + 1), null)); |
|
|
|
obj.Add(new JProperty("CanEdit" + (i + 1), null)); |
|
|
|
} |
|
|
|
} |
|
|
|
obj.Add(new JProperty("EvaluateContent", null)); |
|
|
|
//obj.Add(new JProperty("EvaluateContent", null)); |
|
|
|
body.Add(obj); |
|
|
|
body.Add(obj); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
obj = new(); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type1", "TotalScore")); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type1Text", "总分")); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type2", null)); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type2Text", null)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < records.Count; i++) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
var record = records[i]; |
|
|
|
|
|
|
|
obj.Add(new JProperty("Score" + (i + 1), null)); |
|
|
|
|
|
|
|
obj.Add(new JProperty("CanEdit" + (i + 1), null)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
body.Add(obj); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
obj = new(); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type1", "EvaluateContent")); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type1Text", "总体评价")); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type2", null)); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type2Text", null)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < records.Count; i++) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
var record = records[i]; |
|
|
|
|
|
|
|
obj.Add(new JProperty("Score" + (i + 1), null)); |
|
|
|
|
|
|
|
obj.Add(new JProperty("CanEdit" + (i + 1), null)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
body.Add(obj); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
obj = new(); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type1", "IsPass")); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type1Text", "面试结果")); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type2", null)); |
|
|
|
|
|
|
|
obj.Add(new JProperty("Type2Text", null)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < records.Count; i++) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
var record = records[i]; |
|
|
|
|
|
|
|
obj.Add(new JProperty("Score" + (i + 1), null)); |
|
|
|
|
|
|
|
obj.Add(new JProperty("CanEdit" + (i + 1), null)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
body.Add(obj); |
|
|
|
|
|
|
|
|
|
|
|
result.Body = body; |
|
|
|
result.Body = body; |
|
|
|
#endregion |
|
|
|
#endregion |
|
|
|
|
|
|
|
|
|
|
|