2023-10-19

This commit is contained in:
2023-10-19 23:19:38 +08:00
parent 10477778a8
commit fea620424d
6 changed files with 128 additions and 7 deletions
@@ -249,7 +249,7 @@ namespace BLL
public static Model.Solution_CQMSConstructSolutionApprove GetThisApproveByConstructSolutionId( string constructSolutionId)
{
var q = (from x in Funs.DB.Solution_CQMSConstructSolutionApprove
where x.ConstructSolutionId == constructSolutionId && x.ApproveDate != null
where x.ConstructSolutionId == constructSolutionId && x.ApproveDate == null
orderby x.Order
select x).FirstOrDefault();
return q;
@@ -258,7 +258,7 @@ namespace BLL
{
string name = "";
var q = (from x in Funs.DB.Solution_CQMSConstructSolutionApprove
where x.ConstructSolutionId == constructSolutionId.ToString() && x.ApproveDate != null
where x.ConstructSolutionId == constructSolutionId.ToString() && x.ApproveDate == null
orderby x.Order
select x).FirstOrDefault();
if (q!=null)