2023-10-19
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user