ปรับปรุงรายงานให้ดูง่ายขึ้น
This commit is contained in:
@@ -34,9 +34,9 @@ namespace TodoAPI2.Models
|
||||
public rep_position_salaryWithSelectionViewModel GetBlankItem()
|
||||
{
|
||||
var i = new rep_position_salaryWithSelectionViewModel();
|
||||
i.item_employee_id = (from x in emp.GetListByemployee_type(null,null) select x).ToList();
|
||||
i.item_position_id = (from x in ext.GetPositionForReport() select x).ToList();
|
||||
i.item_org_id = (from x in ext.GetDepartmentDataForReport() select x).ToList();
|
||||
i.item_employee_id = (from x in emp.GetListByemployee_type(null,null) orderby x.fullname select x).ToList();
|
||||
i.item_position_id = (from x in ext.GetPositionForReport() orderby x.external_name select x).ToList();
|
||||
i.item_org_id = (from x in ext.GetDepartmentDataForReport() orderby x.external_name select x).ToList();
|
||||
|
||||
|
||||
return i;
|
||||
|
||||
Reference in New Issue
Block a user