Commit 70967a56 by 李承祥

二次绩效详情,查询A班等数据 -- 调整

parent e64ee8f1
...@@ -32,6 +32,11 @@ public class ag_employee ...@@ -32,6 +32,11 @@ public class ag_employee
public Nullable<int> AgainAllotID { get; set; } public Nullable<int> AgainAllotID { get; set; }
/// <summary> /// <summary>
/// 行号
/// </summary>
public Nullable<int> RowNumber { get; set; }
/// <summary>
/// 姓名 /// 姓名
/// </summary> /// </summary>
public string Name { get; set; } public string Name { get; set; }
......
...@@ -275,7 +275,7 @@ public bool Generate(AgainAllotRequest request, UserIdentity user) ...@@ -275,7 +275,7 @@ public bool Generate(AgainAllotRequest request, UserIdentity user)
rowbody.Data.Add(new Cell(7, item.YearAttendanceFactor, 1, 1, false, false)); rowbody.Data.Add(new Cell(7, item.YearAttendanceFactor, 1, 1, false, false));
rowbody.Data.Add(new Cell(8, item.JobAttendancePerfor, 1, 1, false, false)); rowbody.Data.Add(new Cell(8, item.JobAttendancePerfor, 1, 1, false, false));
var againList = perAgainExcel.AgainData.Where(t => t.RowNumber == i); var againList = perAgainExcel.AgainData.Where(t => t.RowNumber == item.RowNumber);
startpoint = 9; startpoint = 9;
perAgainExcel.Header.Children.ForEach(t => perAgainExcel.Header.Children.ForEach(t =>
{ {
......
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