合并最新
This commit is contained in:
@@ -60,6 +60,7 @@ namespace BLL
|
||||
newConstructSolution.UnitWorkIds = constructSolution.UnitWorkIds;
|
||||
newConstructSolution.CNProfessionalCodes = constructSolution.CNProfessionalCodes;
|
||||
newConstructSolution.AttachUrl = constructSolution.AttachUrl;
|
||||
newConstructSolution.IsHSSE = constructSolution.IsHSSE;
|
||||
newConstructSolution.CompileMan = constructSolution.CompileMan;
|
||||
newConstructSolution.CompileDate = constructSolution.CompileDate;
|
||||
newConstructSolution.State = constructSolution.State;
|
||||
@@ -67,6 +68,27 @@ namespace BLL
|
||||
newConstructSolution.SpecialSchemeTypeId = constructSolution.SpecialSchemeTypeId;
|
||||
db.Solution_CQMSConstructSolution.InsertOnSubmit(newConstructSolution);
|
||||
db.SubmitChanges();
|
||||
if (newConstructSolution.IsHSSE == true)
|
||||
{
|
||||
Model.Solution_HSSEConstructSolution newHSSEConstructSolution = new Model.Solution_HSSEConstructSolution();
|
||||
newHSSEConstructSolution.ConstructSolutionId = SQLHelper.GetNewID();
|
||||
newHSSEConstructSolution.Code = constructSolution.Code;
|
||||
newHSSEConstructSolution.ProjectId = constructSolution.ProjectId;
|
||||
newHSSEConstructSolution.UnitId = constructSolution.UnitId;
|
||||
newHSSEConstructSolution.SolutionName = constructSolution.SolutionName;
|
||||
newHSSEConstructSolution.SolutionType = constructSolution.SolutionType;
|
||||
newHSSEConstructSolution.UnitWorkIds = constructSolution.UnitWorkIds;
|
||||
newHSSEConstructSolution.CNProfessionalCodes = constructSolution.CNProfessionalCodes;
|
||||
newHSSEConstructSolution.AttachUrl = constructSolution.AttachUrl;
|
||||
newHSSEConstructSolution.CompileMan = constructSolution.CompileMan;
|
||||
newHSSEConstructSolution.CompileDate = constructSolution.CompileDate;
|
||||
newHSSEConstructSolution.State = constructSolution.State;
|
||||
newHSSEConstructSolution.Edition = constructSolution.Edition;
|
||||
newHSSEConstructSolution.SpecialSchemeTypeId = constructSolution.SpecialSchemeTypeId;
|
||||
newHSSEConstructSolution.CQMSConstructSolutionId= constructSolution.ConstructSolutionId;
|
||||
db.Solution_HSSEConstructSolution.InsertOnSubmit(newHSSEConstructSolution);
|
||||
db.SubmitChanges();
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// 修改方案审查信息
|
||||
@@ -91,6 +113,7 @@ namespace BLL
|
||||
newConstructSolution.UnitWorkIds = constructSolution.UnitWorkIds;
|
||||
newConstructSolution.CNProfessionalCodes = constructSolution.CNProfessionalCodes;
|
||||
newConstructSolution.AttachUrl = constructSolution.AttachUrl;
|
||||
newConstructSolution.IsHSSE = constructSolution.IsHSSE;
|
||||
newConstructSolution.State = constructSolution.State;
|
||||
newConstructSolution.Edition = constructSolution.Edition;
|
||||
newConstructSolution.SpecialSchemeTypeId = constructSolution.SpecialSchemeTypeId;
|
||||
|
||||
Reference in New Issue
Block a user