20241023 合同管理

This commit is contained in:
2024-10-23 09:51:34 +08:00
parent 592238bd07
commit 80e534050e
30 changed files with 3790 additions and 370 deletions
+12
View File
@@ -35,6 +35,12 @@ namespace BLL
newContractManagement.UploadDate = contractManagement.UploadDate;
newContractManagement.Remark = contractManagement.Remark;
newContractManagement.AttachUrl = contractManagement.AttachUrl;
newContractManagement.SupplementedBudget = contractManagement.SupplementedBudget;
newContractManagement.TotalBudget = contractManagement.TotalBudget;
newContractManagement.StartDate = contractManagement.StartDate;
newContractManagement.EndDate = contractManagement.EndDate;
newContractManagement.AuditDate = contractManagement.AuditDate;
newContractManagement.AuditResult = contractManagement.AuditResult;
Funs.DB.FC_ContractManagement.InsertOnSubmit(newContractManagement);
Funs.DB.SubmitChanges();
}
@@ -57,6 +63,12 @@ namespace BLL
newContractManagement.UploadDate = contractManagement.UploadDate;
newContractManagement.Remark = contractManagement.Remark;
newContractManagement.AttachUrl = contractManagement.AttachUrl;
newContractManagement.SupplementedBudget = contractManagement.SupplementedBudget;
newContractManagement.TotalBudget = contractManagement.TotalBudget;
newContractManagement.StartDate = contractManagement.StartDate;
newContractManagement.EndDate = contractManagement.EndDate;
newContractManagement.AuditDate = contractManagement.AuditDate;
newContractManagement.AuditResult = contractManagement.AuditResult;
Funs.DB.SubmitChanges();
}
}
+8
View File
@@ -104,6 +104,10 @@ namespace BLL
newSESRelatedData.ExceedLimit = SESRelatedData.ExceedLimit;
newSESRelatedData.CreateDate = SESRelatedData.CreateDate;
newSESRelatedData.CreatePerson = SESRelatedData.CreatePerson;
newSESRelatedData.InitialBudget = SESRelatedData.InitialBudget;
newSESRelatedData.IfExtend = SESRelatedData.IfExtend;
newSESRelatedData.PreviousFO = SESRelatedData.PreviousFO;
newSESRelatedData.InitialAllocation = SESRelatedData.InitialAllocation;
Funs.DB.FC_SESRelatedData.InsertOnSubmit(newSESRelatedData);
Funs.DB.SubmitChanges();
@@ -167,6 +171,10 @@ namespace BLL
newSESRelatedData.ExceedLimit = SESRelatedData.ExceedLimit;
newSESRelatedData.ModifyDate = SESRelatedData.ModifyDate;
newSESRelatedData.ModifyPerson = SESRelatedData.ModifyPerson;
newSESRelatedData.InitialBudget = SESRelatedData.InitialBudget;
newSESRelatedData.IfExtend = SESRelatedData.IfExtend;
newSESRelatedData.PreviousFO = SESRelatedData.PreviousFO;
newSESRelatedData.InitialAllocation = SESRelatedData.InitialAllocation;
Funs.DB.SubmitChanges();
}