no message
This commit is contained in:
parent
b9814bd346
commit
d356332718
11 changed files with 515 additions and 75 deletions
|
|
@ -713,7 +713,34 @@ namespace BMA.EHR.Retirement.Service.Controllers
|
|||
RemarkHorizontal = r.RemarkHorizontal,
|
||||
RemarkVertical = r.RemarkVertical,
|
||||
}).ToList();
|
||||
return Success(report_data);
|
||||
|
||||
var result = new List<dynamic>();
|
||||
|
||||
foreach (var r in report_data)
|
||||
{
|
||||
result.Add(r);
|
||||
string? _null = null;
|
||||
result.Add(new {
|
||||
No = _null,
|
||||
FullName = r.RemarkHorizontal,
|
||||
Education = _null,
|
||||
OldOc = _null,
|
||||
OldPositionType = _null,
|
||||
OldPositionLevel = _null,
|
||||
OldPositionNumber = _null,
|
||||
OldSalary = _null,
|
||||
LeaveDate = _null,
|
||||
NewOc = _null,
|
||||
NewPositionType = _null,
|
||||
NewPositionLevel = _null,
|
||||
NewPositionNumber = _null,
|
||||
NewSalary = _null,
|
||||
AppointDate = _null,
|
||||
RemarkHorizontal = _null,
|
||||
RemarkVertical = _null,
|
||||
});
|
||||
}
|
||||
return Success(result);
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
|
@ -886,7 +913,35 @@ namespace BMA.EHR.Retirement.Service.Controllers
|
|||
RemarkHorizontal = r.RemarkHorizontal,
|
||||
RemarkVertical = r.RemarkVertical,
|
||||
}).ToList();
|
||||
return Success(report_data);
|
||||
|
||||
var result = new List<dynamic>();
|
||||
|
||||
foreach (var r in report_data)
|
||||
{
|
||||
result.Add(r);
|
||||
string? _null = null;
|
||||
result.Add(new {
|
||||
No = _null,
|
||||
FullName = r.RemarkHorizontal,
|
||||
Education = _null,
|
||||
OldOc = _null,
|
||||
OldPositionType = _null,
|
||||
OldPositionLevel = _null,
|
||||
OldPositionNumber = _null,
|
||||
OldSalary = _null,
|
||||
LeaveDate = _null,
|
||||
MilitaryDate = _null,
|
||||
NewOc = _null,
|
||||
NewPositionType = _null,
|
||||
NewPositionLevel = _null,
|
||||
NewPositionNumber = _null,
|
||||
NewSalary = _null,
|
||||
AppointDate = _null,
|
||||
RemarkHorizontal = _null,
|
||||
RemarkVertical = _null,
|
||||
});
|
||||
}
|
||||
return Success(result);
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue