1
This commit is contained in:
@@ -395,7 +395,19 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
|
||||
|
||||
#endregion
|
||||
|
||||
var ContuructionAllList = db.Report_Construction_Plan.Where(x => x.ReportId == Id).OrderBy(x => x.UnitOrMajor).ToList();
|
||||
//var ContuructionAllList = db.Report_Construction_Plan.Where(x => x.ReportId == Id).OrderBy(x => x.UnitOrMajor).ToList();
|
||||
var ContuructionAllList = db.Report_Construction_Plan.Where(x => x.ReportId == Id).Select(x => new
|
||||
{
|
||||
ReportId = x.ReportId,
|
||||
ReType = x.ReType,
|
||||
UnitOrMajor = x.UnitOrMajor,
|
||||
Quantity1 = x.Quantity1,
|
||||
Quantity2 = x.Quantity2,
|
||||
Quantity3 = x.Quantity3,
|
||||
Remarks = x.Remarks,
|
||||
QuaRate = x.QuaRate,
|
||||
Quantity4 = x.Quantity4
|
||||
}).Distinct().OrderBy(x => x.UnitOrMajor).ToList();
|
||||
|
||||
#region 3.施工方案及检验试验计划审批情况
|
||||
|
||||
|
||||
Reference in New Issue
Block a user