@@ -165,7 +165,9 @@ var bootstrap = function ($, learun) { | |||||
label: "公式计算结果", name: "Result", width: 150, align: "left" | label: "公式计算结果", name: "Result", width: 150, align: "left" | ||||
}, | }, | ||||
{ | { | ||||
label: "填报时间", name: "ReportTime", width: 150, align: "left" | |||||
label: "填报时间", name: "ReportTime", width: 150, align: "left", formatter: function (cellvalue) { | |||||
return learun.formatDate(cellvalue, 'yyyy-MM'); | |||||
} | |||||
}, | }, | ||||
{ | { | ||||
label: "状态", name: "Status", width: 150, align: "left", | label: "状态", name: "Status", width: 150, align: "left", | ||||
@@ -157,7 +157,10 @@ var bootstrap = function ($, learun) { | |||||
label: "公式计算结果", name: "Result", width: 150, align: "left" | label: "公式计算结果", name: "Result", width: 150, align: "left" | ||||
}, | }, | ||||
{ | { | ||||
label: "填报时间", name: "ReportTime", width: 150, align: "left" | |||||
label: "填报时间", name: "ReportTime", width: 150, align: "left", | |||||
formatter: function (cellvalue) { | |||||
return learun.formatDate(cellvalue, 'yyyy-MM'); | |||||
} | |||||
}, | }, | ||||
{ | { | ||||
label: "状态", name: "Status", width: 150, align: "left", | label: "状态", name: "Status", width: 150, align: "left", | ||||
@@ -173,7 +176,9 @@ var bootstrap = function ($, learun) { | |||||
}, | }, | ||||
], | ], | ||||
mainId: 'Id', | mainId: 'Id', | ||||
isPage: true | |||||
isPage: true, | |||||
sidx: 'ReportTime', | |||||
sord: 'DESC', | |||||
}); | }); | ||||
page.search(); | page.search(); | ||||
}, | }, | ||||
@@ -4,6 +4,7 @@ using Learun.Util; | |||||
using System; | using System; | ||||
using System.Collections.Generic; | using System.Collections.Generic; | ||||
using System.Data; | using System.Data; | ||||
using System.Linq; | |||||
using System.Text; | using System.Text; | ||||
namespace Learun.Application.TwoDevelopment.LR_Desktop | namespace Learun.Application.TwoDevelopment.LR_Desktop | ||||
@@ -84,7 +85,7 @@ namespace Learun.Application.TwoDevelopment.LR_Desktop | |||||
strSql.Append($" AND a.FillInFromId='{queryParam["FillInFromId"].ToString()}' "); | strSql.Append($" AND a.FillInFromId='{queryParam["FillInFromId"].ToString()}' "); | ||||
} | } | ||||
return this.BaseRepository("CollegeMIS").FindList<QualityReportMainEntity>(strSql.ToString(), dp); | |||||
return this.BaseRepository("CollegeMIS").FindList<QualityReportMainEntity>(strSql.ToString(), dp).OrderByDescending(x => x.ReportTime); | |||||
} | } | ||||
catch (Exception ex) | catch (Exception ex) | ||||
{ | { | ||||