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
+15
View File
@@ -62,6 +62,21 @@
return lis;
}
/// <summary>
/// 审计结果下拉选项
/// </summary>
/// <returns></returns>
public static ListItem[] getAuditResultDropList()
{
ListItem [] lis = new ListItem[5];
lis[0] = new ListItem("红", "红");
lis[1] = new ListItem("红黄", "红黄");
lis[2] = new ListItem("黄", "黄");
lis[3] = new ListItem("黄绿", "黄绿");
lis[4] = new ListItem("绿", "绿");
return lis;
}
#endregion
}
+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();
}