修改质量月报汇总

This commit is contained in:
2023-09-12 17:09:35 +08:00
parent 1c0cdfc7e3
commit c24c1811e2
4 changed files with 1542 additions and 5 deletions
@@ -162,7 +162,7 @@ namespace FineUIPro.Web.JDGL.Check
}
else if (e.Node.CommandName == "WorkPackage") //展开工作包节点
{
var workPackages = from x in Funs.DB.WBS_WorkPackage where x.SuperWorkPackageId == e.Node.NodeID && x.IsApprove == true orderby x.WorkPackageCode select x;
var workPackages = from x in Funs.DB.WBS_WorkPackage where x.SuperWorkPackageId == e.Node.NodeID && x.IsApprove == true orderby x.WorkPackageCode, x.WorkPackageId select x;
if (workPackages.Count() > 0) //存在子单位工程
{
foreach (var workPackage in workPackages)