2023-03-29 001 合同招标文件台账修改
This commit is contained in:
@@ -42,6 +42,8 @@ namespace BLL
|
||||
(string.IsNullOrEmpty(table.BidWinner) || x.BidWinner.Contains(table.BidWinner)) &&
|
||||
(string.IsNullOrEmpty(table.SetSubReviewCode) || x.SetSubReviewCode.Contains(table.SetSubReviewCode)) &&
|
||||
(string.IsNullOrEmpty(table.ProjectId) || x.ProjectId.Contains(table.ProjectId))&&
|
||||
(string.IsNullOrEmpty(table.BidNoticeCode) || x.BidNoticeCode.Contains(table.BidNoticeCode))&&
|
||||
(string.IsNullOrEmpty(table.BidUnitFileCode) || x.BidUnitFileCode.Contains(table.BidUnitFileCode))&&
|
||||
(table.State == null||x.State==table.State)
|
||||
select x
|
||||
;
|
||||
@@ -84,7 +86,9 @@ namespace BLL
|
||||
x.BidWinner,
|
||||
x.SetSubReviewCode,
|
||||
x.ProjectId,
|
||||
x.State
|
||||
x.State,
|
||||
x.BidNoticeCode,
|
||||
x.BidUnitFileCode
|
||||
|
||||
};
|
||||
}
|
||||
@@ -119,6 +123,8 @@ namespace BLL
|
||||
SetSubReviewCode = newtable.SetSubReviewCode,
|
||||
ProjectId= newtable.ProjectId,
|
||||
State=newtable.State,
|
||||
BidNoticeCode=newtable.BidNoticeCode,
|
||||
BidUnitFileCode=newtable.BidUnitFileCode,
|
||||
};
|
||||
db.PHTGL_BidDocumentsStandingBook.InsertOnSubmit(table);
|
||||
db.SubmitChanges();
|
||||
@@ -156,6 +162,8 @@ namespace BLL
|
||||
table.SetSubReviewCode = newtable.SetSubReviewCode;
|
||||
table.ProjectId=newtable.ProjectId;
|
||||
table.State=newtable.State;
|
||||
table.BidNoticeCode= newtable.BidNoticeCode;
|
||||
table.BidUnitFileCode=newtable.BidUnitFileCode;
|
||||
db.SubmitChanges();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user