0923-04-gaofei

This commit is contained in:
gaofei
2021-09-23 17:31:16 +08:00
parent b538f1eb58
commit 82af498870
2 changed files with 30 additions and 30 deletions
@@ -37,11 +37,11 @@ namespace FineUIPro.Web.JDGL.WBS
{
if (!string.IsNullOrEmpty(this.txtMonths.Text.Trim()))
{
this.Grid1.Columns[5].HeaderText = "本月计划完成量(B)";
this.Grid1.Columns[6].HeaderText = "本月完成量(C)";
this.Grid1.Columns[8].HeaderText = "本月已完工作实际费用-ACWP(A*C)";
this.Grid1.Columns[9].HeaderText = "本月计划工作预算费用-BCWS(B*D)";
this.Grid1.Columns[10].HeaderText = "本月已完工作预算费用-BCWP(C*D)";
this.Grid1.Columns[5].HeaderText = "本月计划完成量(WS)";
this.Grid1.Columns[6].HeaderText = "本月实际完成量(WP)";
this.Grid1.Columns[8].HeaderText = "本月已完工作实际费用-ACWP";
this.Grid1.Columns[9].HeaderText = "本月计划工作预算费用-BCWS";
this.Grid1.Columns[10].HeaderText = "本月已完工作预算费用-BCWP";
this.drpWeek.Items.Clear();
DateTime months = Convert.ToDateTime(this.txtMonths.Text.Trim() + "-01");
string costControlId = BLL.CostControlDetailService.GetHasWeekPlanCostControlIdByProjectIdAndMonth(this.CurrUser.LoginProjectId, months);
@@ -199,19 +199,19 @@ namespace FineUIPro.Web.JDGL.WBS
{
if (this.drpWeek.SelectedValue == BLL.Const._Null)
{
this.Grid1.Columns[5].HeaderText = "本月计划完成量(B)";
this.Grid1.Columns[6].HeaderText = "本月完成量(C)";
this.Grid1.Columns[8].HeaderText = "本月已完工作实际费用-ACWP(A*C)";
this.Grid1.Columns[9].HeaderText = "本月计划工作预算费用-BCWS(B*D)";
this.Grid1.Columns[10].HeaderText = "本月已完工作预算费用-BCWP(C*D)";
this.Grid1.Columns[5].HeaderText = "本月计划完成量(WS)";
this.Grid1.Columns[6].HeaderText = "本月实际完成量(WP)";
this.Grid1.Columns[8].HeaderText = "本月已完工作实际费用-ACWP";
this.Grid1.Columns[9].HeaderText = "本月计划工作预算费用-BCWS";
this.Grid1.Columns[10].HeaderText = "本月已完工作预算费用-BCWP";
}
else
{
this.Grid1.Columns[5].HeaderText = "本周计划完成量(B)";
this.Grid1.Columns[6].HeaderText = "本周完成量(C)";
this.Grid1.Columns[8].HeaderText = "本周已完工作实际费用-ACWP(A*C)";
this.Grid1.Columns[9].HeaderText = "本周计划工作预算费用-BCWS(B*D)";
this.Grid1.Columns[10].HeaderText = "本周已完工作预算费用-BCWP(C*D)";
this.Grid1.Columns[5].HeaderText = "本周计划完成量(WS)";
this.Grid1.Columns[6].HeaderText = "本周实际完成量(WP)";
this.Grid1.Columns[8].HeaderText = "本周已完工作实际费用-ACWP";
this.Grid1.Columns[9].HeaderText = "本周计划工作预算费用-BCWS";
this.Grid1.Columns[10].HeaderText = "本周已完工作预算费用-BCWP";
}
}
}