2023-03-29 001 合同招标文件台账修改

This commit is contained in:
2023-03-29 16:51:16 +08:00
parent 8b0c9fdef0
commit eb3a6ac1fa
20 changed files with 334 additions and 77 deletions
@@ -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();
}