20250310 total budget回填
This commit is contained in:
parent
3d62a6b335
commit
f6b3af99f6
|
@ -2,7 +2,7 @@
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ProjectView>ShowAllFiles</ProjectView>
|
<ProjectView>ShowAllFiles</ProjectView>
|
||||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||||
<UseIISExpress>true</UseIISExpress>
|
<UseIISExpress>true</UseIISExpress>
|
||||||
<Use64BitIISExpress>
|
<Use64BitIISExpress>
|
||||||
</Use64BitIISExpress>
|
</Use64BitIISExpress>
|
||||||
|
|
|
@ -45,7 +45,7 @@ namespace FineUIPro.Web.SES
|
||||||
|
|
||||||
private void BindGrid()
|
private void BindGrid()
|
||||||
{
|
{
|
||||||
string strSql = @"SELECT * FROM dbo.View_EMC_Punishment WHERE Flag='1' and DATEADD(year,1,PunishDate) >= GETDATE() ";
|
string strSql = @"SELECT * FROM dbo.View_EMC_Punishment WHERE Flag='1' ";
|
||||||
|
|
||||||
List<SqlParameter> listStr = new List<SqlParameter>();
|
List<SqlParameter> listStr = new List<SqlParameter>();
|
||||||
if (!string.IsNullOrEmpty(this.txtFO_NO.Text.Trim()))
|
if (!string.IsNullOrEmpty(this.txtFO_NO.Text.Trim()))
|
||||||
|
|
|
@ -102,7 +102,7 @@ namespace FineUIPro.Web.SES
|
||||||
//var u = string.Join(",", sesdata.Where(p => p.User_Representative != null).Select(p => p.User_Representative).Distinct());
|
//var u = string.Join(",", sesdata.Where(p => p.User_Representative != null).Select(p => p.User_Representative).Distinct());
|
||||||
//var m = string.Join(",", sesdata.Where(p => p.Main_Coordinator != null).Select(p => p.Main_Coordinator).Distinct());
|
//var m = string.Join(",", sesdata.Where(p => p.Main_Coordinator != null).Select(p => p.Main_Coordinator).Distinct());
|
||||||
string cruUser = CurrUser.UserId;
|
string cruUser = CurrUser.UserId;
|
||||||
string strSql = @"SELECT * from View_FC_SESRelatedData WHERE DATEADD(year,1,Expire_Date) >=GETDATE() ";
|
string strSql = @"SELECT * from View_FC_SESRelatedData ";
|
||||||
|
|
||||||
List<SqlParameter> listStr = new List<SqlParameter>();
|
List<SqlParameter> listStr = new List<SqlParameter>();
|
||||||
|
|
||||||
|
@ -4412,6 +4412,13 @@ namespace FineUIPro.Web.SES
|
||||||
var contracts = BLL.ContractManagementService.GetContractManagementById(rowID);
|
var contracts = BLL.ContractManagementService.GetContractManagementById(rowID);
|
||||||
if (contracts != null)
|
if (contracts != null)
|
||||||
{
|
{
|
||||||
|
//删除费用增补回写的Contract Budget随之变化
|
||||||
|
var data = BLL.SESRelatedDataService.GetSESRelatedDataById(contracts.FC_ID.ToString());
|
||||||
|
if (data != null)
|
||||||
|
{
|
||||||
|
data.Actual_Budget = data.Actual_Budget - contracts.TotalBudget;
|
||||||
|
BLL.SESRelatedDataService.UpdateSESRelatedData(data);
|
||||||
|
}
|
||||||
BLL.ContractManagementService.DeleteContractManagementById(rowID);
|
BLL.ContractManagementService.DeleteContractManagementById(rowID);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,12 +52,23 @@ namespace FineUIPro.Web.SES
|
||||||
|
|
||||||
BLL.DisciplineService.InitDropDownList(this.drpDiscispline, true); //专业
|
BLL.DisciplineService.InitDropDownList(this.drpDiscispline, true); //专业
|
||||||
BLL.DisciplineCategoryService.InitDropDownList(this.drpOriginal_WC, true);//专业类别
|
BLL.DisciplineCategoryService.InitDropDownList(this.drpOriginal_WC, true);//专业类别
|
||||||
BLL.ContractorService.InitDropDownList(this.drpContractor, true);//承包商
|
//BLL.ContractorService.InitDropDownList(this.drpContractor, true);//承包商
|
||||||
BLL.PriceSchemeService.InitDropDownList(this.drpPricing_Scheme, true);//价格方案
|
BLL.PriceSchemeService.InitDropDownList(this.drpPricing_Scheme, true);//价格方案
|
||||||
BLL.ItemService.InitDropDownList(this.drpItem, true);
|
BLL.ItemService.InitDropDownList(this.drpItem, true);
|
||||||
BLL.CurrencyService.InitDropDownList(this.drpCurrency, true); //币种
|
BLL.CurrencyService.InitDropDownList(this.drpCurrency, true); //币种
|
||||||
BLL.FOTypeService.InitDropDownList(this.drpFOTypeId, true);
|
BLL.FOTypeService.InitDropDownList(this.drpFOTypeId, true);
|
||||||
BLL.TypeService.InitDropDownList(this.drpType, true);
|
BLL.TypeService.InitDropDownList(this.drpType, true);
|
||||||
|
|
||||||
|
var contractorLists = from x in Funs.DB.FC_SESRelatedData
|
||||||
|
join y in Funs.DB.Base_Contractor on x.Contractor equals y.ContractorId
|
||||||
|
where x.Expire_Date.Value.AddYears(1) >= DateTime.Now
|
||||||
|
select new { y.ContractorId, Contractor = y.Contractor + y.ContractorCN };
|
||||||
|
this.drpContractor.DataTextField = "Contractor";
|
||||||
|
this.drpContractor.DataValueField = "ContractorId";
|
||||||
|
this.drpContractor.DataSource = contractorLists.Distinct();
|
||||||
|
this.drpContractor.DataBind();
|
||||||
|
Funs.FineUIPleaseSelect(this.drpContractor);
|
||||||
|
|
||||||
//合同员
|
//合同员
|
||||||
this.drpContract_Admin.DataTextField = "UserName";
|
this.drpContract_Admin.DataTextField = "UserName";
|
||||||
this.drpContract_Admin.DataValueField = "UserId";
|
this.drpContract_Admin.DataValueField = "UserId";
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
<add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
|
<add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
|
||||||
<add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91" validate="false"/>
|
<add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91" validate="false"/>
|
||||||
</httpHandlers>
|
</httpHandlers>
|
||||||
<compilation debug="true" targetFramework="4.6.1">
|
<compilation debug="false" targetFramework="4.6.1">
|
||||||
<buildProviders>
|
<buildProviders>
|
||||||
<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
|
<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
|
||||||
</buildProviders>
|
</buildProviders>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<IISExpressWindowsAuthentication />
|
<IISExpressWindowsAuthentication />
|
||||||
<IISExpressUseClassicPipelineMode />
|
<IISExpressUseClassicPipelineMode />
|
||||||
<UseGlobalApplicationHostFile />
|
<UseGlobalApplicationHostFile />
|
||||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ProjectExtensions>
|
<ProjectExtensions>
|
||||||
<VisualStudio>
|
<VisualStudio>
|
||||||
|
|
Loading…
Reference in New Issue