修改合同流程

This commit is contained in:
2024-10-27 16:30:44 +08:00
parent d717b110a7
commit 119de48bd5
13 changed files with 81 additions and 52 deletions
@@ -384,14 +384,14 @@ namespace FineUIPro.Web.PHTGL.BiddingManagement
}
else
{
var Bid = PHTGL_BidDocumentsReviewService.GetPHTGL_BidDocumentsReviewById(BidDocumentsReviewId);
Model.PHTGL_BidApproveUserReview newtable = new Model.PHTGL_BidApproveUserReview();
newtable.ApproveUserReviewID = SQLHelper.GetNewID(typeof(Model.PHTGL_BidApproveUserReview));
newtable.BidDocumentsReviewId = BidDocumentsReviewId;
newtable.ProjectId = Bid.ProjectId;
newtable.ActionPlanID = Bid.ActionPlanID;
newtable.State = Const.ContractCreating;
PHTGL_BidApproveUserReviewService.AddPHTGL_BidApproveUserReview(newtable);
//var Bid = PHTGL_BidDocumentsReviewService.GetPHTGL_BidDocumentsReviewById(BidDocumentsReviewId);
//Model.PHTGL_BidApproveUserReview newtable = new Model.PHTGL_BidApproveUserReview();
//newtable.ApproveUserReviewID = SQLHelper.GetNewID(typeof(Model.PHTGL_BidApproveUserReview));
//newtable.BidDocumentsReviewId = BidDocumentsReviewId;
//newtable.ProjectId = Bid.ProjectId;
//newtable.ActionPlanID = Bid.ActionPlanID;
//newtable.State = Const.ContractCreating;
//PHTGL_BidApproveUserReviewService.AddPHTGL_BidApproveUserReview(newtable);
ChangeState(Const.ContractReview_Complete);
}
}