202305291、修改奖励通知单、奖惩通知单。
This commit is contained in:
@@ -50,187 +50,80 @@ namespace FineUIPro.Web.HSSE.CostGoods
|
||||
{
|
||||
this.ProjectId = this.CurrUser.LoginProjectId;
|
||||
this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
|
||||
this.hdProjectA1.Text = "0";
|
||||
this.hdProjectA2.Text = "0";
|
||||
this.hdProjectA3.Text = "0";
|
||||
this.hdProjectA4.Text = "0";
|
||||
this.hdProjectA5.Text = "0";
|
||||
this.hdProjectA6.Text = "0";
|
||||
this.hdProjectB1.Text = "0";
|
||||
this.hdProjectB2.Text = "0";
|
||||
this.hdProjectB3.Text = "0";
|
||||
this.InitDropDownList();
|
||||
this.ExpenseId = Request.Params["ExpenseId"];
|
||||
if (!string.IsNullOrEmpty(this.ExpenseId))
|
||||
BLL.UnitService.InitUnitDropDownList(this.drpUnit, this.ProjectId, false);
|
||||
if (!string.IsNullOrEmpty(this.CurrUser.UnitId) && !CommonService.IsSedinOrSub(this.CurrUser.UnitId))
|
||||
{
|
||||
Model.CostGoods_Expense expense = BLL.ExpenseService.GetExpenseById(this.ExpenseId);
|
||||
if (expense != null)
|
||||
this.drpUnit.SelectedValue = this.CurrUser.UnitId;
|
||||
this.drpUnit.Readonly = true;
|
||||
}
|
||||
|
||||
this.ExpenseId = Request.Params["ExpenseId"];
|
||||
if (string.IsNullOrEmpty(this.ExpenseId))
|
||||
{
|
||||
this.drpUnit.SelectedValue = this.CurrUser.UnitId ?? Const.UnitId_SEDIN;
|
||||
this.txtYear.Text = DateTime.Now.Year.ToString();
|
||||
this.txtReportDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
|
||||
var getEx = Funs.DB.CostGoods_Expense.FirstOrDefault(x => x.UnitId == this.drpUnit.SelectedValue && x.Year == Funs.GetNewInt(this.txtYear.Text));
|
||||
if (getEx != null)
|
||||
{
|
||||
this.ProjectId = expense.ProjectId;
|
||||
if (this.ProjectId != this.CurrUser.LoginProjectId)
|
||||
this.ExpenseId = getEx.ExpenseId;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (CommonService.IsSedinOrSub(this.drpUnit.SelectedValue))
|
||||
{
|
||||
this.InitDropDownList();
|
||||
this.lbSortIndex.Text = "1";
|
||||
}
|
||||
if (expense.Months != null)
|
||||
else
|
||||
{
|
||||
//this.txtMonths.Text = string.Format("{0:yyyy-MM}", expense.Months);
|
||||
this.drpYear.SelectedValue = Convert.ToString(expense.Months.Value.Year);
|
||||
this.drpMonths.SelectedValue = Convert.ToString(expense.Months.Value.Month);
|
||||
var index = Funs.DB.CostGoods_Expense.Where(x => x.Year.ToString() == this.txtYear.Text).Max(x => x.SortIndex);
|
||||
if (index.HasValue)
|
||||
{
|
||||
this.lbSortIndex.Text = (index.Value + 1).ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.lbSortIndex.Text = "2";
|
||||
}
|
||||
}
|
||||
this.txtExpenseCode.Text = CodeRecordsService.ReturnCodeByDataId(this.ExpenseId);
|
||||
if (!string.IsNullOrEmpty(expense.UnitId))
|
||||
|
||||
Model.CostGoods_Expense newExpense = new Model.CostGoods_Expense
|
||||
{
|
||||
this.drpUnitId.SelectedValue = expense.UnitId;
|
||||
}
|
||||
if (expense.ReportDate != null)
|
||||
{
|
||||
this.txtReportDate.Text = string.Format("{0:yyyy-MM-dd}", expense.ReportDate);
|
||||
}
|
||||
//this.txtCompileMan.Text = expense.CompileMan;
|
||||
//if (expense.CompileDate != null)
|
||||
//{
|
||||
// this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", expense.CompileDate);
|
||||
//}
|
||||
//this.txtCheckMan.Text = expense.CheckMan;
|
||||
//if (expense.CheckDate != null)
|
||||
//{
|
||||
// this.txtCheckDate.Text = string.Format("{0:yyyy-MM-dd}", expense.CheckDate);
|
||||
//}
|
||||
//this.txtApproveMan.Text = expense.ApproveMan;
|
||||
//if (expense.ApproveDate != null)
|
||||
//{
|
||||
// this.txtApproveDate.Text = string.Format("{0:yyyy-MM-dd}", expense.ApproveDate);
|
||||
//}
|
||||
decimal totalA = 0, totalB = 0, totalProjectA = 0, totalProjectB = 0;
|
||||
Model.Base_Project project = BLL.ProjectService.GetProjectByProjectId(this.ProjectId);
|
||||
List<Model.CostGoods_ExpenseDetail> projectDetails = BLL.ExpenseDetailService.GetCostDetailsByUnitId(expense.UnitId, project != null ? Convert.ToDateTime(project.StartDate) : Convert.ToDateTime("2000-01-01"), Convert.ToDateTime(expense.Months));
|
||||
List<Model.CostGoods_ExpenseDetail> details = BLL.ExpenseDetailService.GetExpenseDetailsByExpenseId(this.ExpenseId);
|
||||
Model.CostGoods_ExpenseDetail a1 = details.FirstOrDefault(x => x.CostType == "A1");
|
||||
this.hdProjectA1.Text = (from x in projectDetails where x.CostType == "A1" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectA2.Text = (from x in projectDetails where x.CostType == "A2" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectA3.Text = (from x in projectDetails where x.CostType == "A3" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectA4.Text = (from x in projectDetails where x.CostType == "A4" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectA5.Text = (from x in projectDetails where x.CostType == "A5" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectA6.Text = (from x in projectDetails where x.CostType == "A6" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectB1.Text = (from x in projectDetails where x.CostType == "B1" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectB2.Text = (from x in projectDetails where x.CostType == "B2" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectB3.Text = (from x in projectDetails where x.CostType == "B3" select x.CostMoney ?? 0).Sum().ToString();
|
||||
if (a1 != null)
|
||||
{
|
||||
this.nbA1.Text = (a1.CostMoney ?? 0).ToString();
|
||||
totalA += Funs.GetNewDecimalOrZero(this.nbA1.Text);
|
||||
this.nbProjectA1.Text = ((from x in projectDetails where x.CostType == "A1" select x.CostMoney ?? 0).Sum() + a1.CostMoney ?? 0).ToString();
|
||||
totalProjectA += Funs.GetNewDecimalOrZero(this.nbProjectA1.Text);
|
||||
this.txtDefA1.Text = a1.CostDef;
|
||||
}
|
||||
Model.CostGoods_ExpenseDetail a2 = details.FirstOrDefault(x => x.CostType == "A2");
|
||||
if (a2 != null)
|
||||
{
|
||||
this.nbA2.Text = (a2.CostMoney ?? 0).ToString();
|
||||
totalA += Funs.GetNewDecimalOrZero(this.nbA2.Text);
|
||||
this.nbProjectA2.Text = ((from x in projectDetails where x.CostType == "A2" select x.CostMoney ?? 0).Sum() + a2.CostMoney ?? 0).ToString();
|
||||
totalProjectA += Funs.GetNewDecimalOrZero(this.nbProjectA2.Text);
|
||||
this.txtDefA2.Text = a2.CostDef;
|
||||
}
|
||||
Model.CostGoods_ExpenseDetail a3 = details.FirstOrDefault(x => x.CostType == "A3");
|
||||
if (a3 != null)
|
||||
{
|
||||
this.nbA3.Text = (a3.CostMoney ?? 0).ToString();
|
||||
totalA += Funs.GetNewDecimalOrZero(this.nbA3.Text);
|
||||
this.nbProjectA3.Text = ((from x in projectDetails where x.CostType == "A3" select x.CostMoney ?? 0).Sum() + a3.CostMoney ?? 0).ToString();
|
||||
totalProjectA += Funs.GetNewDecimalOrZero(this.nbProjectA3.Text);
|
||||
this.txtDefA3.Text = a3.CostDef;
|
||||
}
|
||||
Model.CostGoods_ExpenseDetail a4 = details.FirstOrDefault(x => x.CostType == "A4");
|
||||
if (a4 != null)
|
||||
{
|
||||
this.nbA4.Text = (a4.CostMoney ?? 0).ToString();
|
||||
totalA += Funs.GetNewDecimalOrZero(this.nbA4.Text);
|
||||
this.nbProjectA4.Text = ((from x in projectDetails where x.CostType == "A4" select x.CostMoney ?? 0).Sum() + a4.CostMoney ?? 0).ToString();
|
||||
totalProjectA += Funs.GetNewDecimalOrZero(this.nbProjectA4.Text);
|
||||
this.txtDefA4.Text = a4.CostDef;
|
||||
}
|
||||
Model.CostGoods_ExpenseDetail a5 = details.FirstOrDefault(x => x.CostType == "A5");
|
||||
if (a5 != null)
|
||||
{
|
||||
this.nbA5.Text = (a5.CostMoney ?? 0).ToString();
|
||||
totalA += Funs.GetNewDecimalOrZero(this.nbA5.Text);
|
||||
this.nbProjectA5.Text = ((from x in projectDetails where x.CostType == "A5" select x.CostMoney ?? 0).Sum() + a5.CostMoney ?? 0).ToString();
|
||||
totalProjectA += Funs.GetNewDecimalOrZero(this.nbProjectA5.Text);
|
||||
this.txtDefA5.Text = a5.CostDef;
|
||||
}
|
||||
Model.CostGoods_ExpenseDetail a6 = details.FirstOrDefault(x => x.CostType == "A6");
|
||||
if (a6 != null)
|
||||
{
|
||||
this.nbA6.Text = (a6.CostMoney ?? 0).ToString();
|
||||
totalA += Funs.GetNewDecimalOrZero(this.nbA6.Text);
|
||||
this.nbProjectA6.Text = ((from x in projectDetails where x.CostType == "A6" select x.CostMoney ?? 0).Sum() + a6.CostMoney ?? 0).ToString();
|
||||
totalProjectA += Funs.GetNewDecimalOrZero(this.nbProjectA6.Text);
|
||||
this.txtDefA6.Text = a6.CostDef;
|
||||
}
|
||||
this.nbA.Text = totalA.ToString();
|
||||
this.nbProjectA.Text = totalProjectA.ToString();
|
||||
Model.CostGoods_ExpenseDetail b1 = details.FirstOrDefault(x => x.CostType == "B1");
|
||||
if (b1 != null)
|
||||
{
|
||||
this.nbB1.Text = (b1.CostMoney ?? 0).ToString();
|
||||
totalB += Funs.GetNewDecimalOrZero(this.nbB1.Text);
|
||||
this.nbProjectB1.Text = ((from x in projectDetails where x.CostType == "B1" select x.CostMoney ?? 0).Sum() + b1.CostMoney ?? 0).ToString();
|
||||
totalProjectB += Funs.GetNewDecimalOrZero(this.nbProjectB1.Text);
|
||||
this.txtDefB1.Text = b1.CostDef;
|
||||
}
|
||||
Model.CostGoods_ExpenseDetail b2 = details.FirstOrDefault(x => x.CostType == "B2");
|
||||
if (b2 != null)
|
||||
{
|
||||
this.nbB2.Text = (b2.CostMoney ?? 0).ToString();
|
||||
totalB += Funs.GetNewDecimalOrZero(this.nbB2.Text);
|
||||
this.nbProjectB2.Text = ((from x in projectDetails where x.CostType == "B2" select x.CostMoney ?? 0).Sum() + b2.CostMoney ?? 0).ToString();
|
||||
totalProjectB += Funs.GetNewDecimalOrZero(this.nbProjectB2.Text);
|
||||
this.txtDefB2.Text = b2.CostDef;
|
||||
}
|
||||
Model.CostGoods_ExpenseDetail b3 = details.FirstOrDefault(x => x.CostType == "B3");
|
||||
if (b3 != null)
|
||||
{
|
||||
this.nbB3.Text = (b3.CostMoney ?? 0).ToString();
|
||||
totalB += Funs.GetNewDecimalOrZero(this.nbB3.Text);
|
||||
this.nbProjectB3.Text = ((from x in projectDetails where x.CostType == "B3" select x.CostMoney ?? 0).Sum() + b3.CostMoney ?? 0).ToString();
|
||||
totalProjectB += Funs.GetNewDecimalOrZero(this.nbProjectB3.Text);
|
||||
this.txtDefB3.Text = b3.CostDef;
|
||||
}
|
||||
this.nbB.Text = totalB.ToString();
|
||||
this.nbProjectB.Text = totalProjectB.ToString();
|
||||
this.nbAB.Text = (totalA + totalB).ToString();
|
||||
this.nbProjectAB.Text = (totalProjectA + totalProjectB).ToString();
|
||||
ExpenseId = SQLHelper.GetNewID(),
|
||||
ProjectId = this.ProjectId,
|
||||
UnitId = this.drpUnit.SelectedValue,
|
||||
ReportDate = DateTime.Now,
|
||||
CreateDate = DateTime.Now,
|
||||
CompileMan =this.CurrUser.PersonId,
|
||||
CompileDate = DateTime.Now,
|
||||
Year =Funs.GetNewInt(this.txtYear.Text),
|
||||
SortIndex=Funs.GetNewIntOrZero(this.lbSortIndex.Text),
|
||||
};
|
||||
|
||||
ExpenseService.AddExpense(newExpense);
|
||||
ExpenseDetailService.AddCostDetail(newExpense.ExpenseId);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
this.drpYear.SelectedValue = Convert.ToString(DateTime.Now.Year);
|
||||
this.drpMonths.SelectedValue = Convert.ToString(DateTime.Now.Month);
|
||||
//this.txtMonths.Text = DateTime.Now.ToString("yyyy-MM");
|
||||
//this.txtCompileMan.Text = this.CurrUser.PersonName;
|
||||
this.txtReportDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
|
||||
//this.txtCompileDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
|
||||
////自动生成编码
|
||||
this.txtExpenseCode.Text = BLL.CodeRecordsService.ReturnCodeByMenuIdProjectId(BLL.Const.ProjectExpenseMenuId, this.ProjectId, this.CurrUser.UnitId);
|
||||
}
|
||||
///初始化审核菜单
|
||||
this.ctlAuditFlow.MenuId = BLL.Const.ProjectExpenseMenuId;
|
||||
this.ctlAuditFlow.DataId = this.ExpenseId;
|
||||
this.ctlAuditFlow.ProjectId = this.ProjectId;
|
||||
this.ctlAuditFlow.UnitId = this.CurrUser.UnitId;
|
||||
|
||||
SetPage(BLL.ExpenseService.GetExpenseById(this.ExpenseId));
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// 初始化下拉框
|
||||
///
|
||||
/// </summary>
|
||||
private void InitDropDownList()
|
||||
private void SetPage(Model.CostGoods_Expense expense)
|
||||
{
|
||||
BLL.UnitService.InitUnitDropDownList(this.drpUnitId, this.ProjectId, true);
|
||||
BLL.ConstValue.InitConstValueDropDownList(this.drpYear, BLL.ConstValue.Group_0008, true);
|
||||
BLL.ConstValue.InitConstValueDropDownList(this.drpMonths, BLL.ConstValue.Group_0009, true);
|
||||
if (expense != null)
|
||||
{
|
||||
this.ExpenseId = expense.ExpenseId;
|
||||
this.ProjectId = expense.ProjectId;
|
||||
this.drpUnit.SelectedValue = expense.UnitId;
|
||||
this.txtYear.Text = expense.Year.ToString();
|
||||
this.lbSortIndex.Text=expense.SortIndex.ToString();
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#region 保存
|
||||
@@ -241,36 +134,15 @@ namespace FineUIPro.Web.HSSE.CostGoods
|
||||
/// <param name="e"></param>
|
||||
protected void btnSave_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpYear.SelectedValue == BLL.Const._Null || this.drpMonths.SelectedValue == BLL.Const._Null)
|
||||
if (this.drpUnit.SelectedValue == BLL.Const._Null || string.IsNullOrEmpty(this.txtYear.Text))
|
||||
{
|
||||
Alert.ShowInTop("请选择月份", MessageBoxIcon.Warning);
|
||||
Alert.ShowInTop("请选择单位、年度!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
this.SaveData(BLL.Const.BtnSave);
|
||||
PageContext.RegisterStartupScript(ActiveWindow.GetHideRefreshReference());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 提交按钮
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void btnSubmit_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpYear.SelectedValue == BLL.Const._Null || this.drpMonths.SelectedValue == BLL.Const._Null)
|
||||
{
|
||||
Alert.ShowInTop("请选择月份", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
if (this.ctlAuditFlow.NextStep == BLL.Const.State_1 && this.ctlAuditFlow.NextPerson == BLL.Const._Null)
|
||||
{
|
||||
ShowNotify("请选择下一步办理人!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
this.SaveData(BLL.Const.BtnSubmit);
|
||||
PageContext.RegisterStartupScript(ActiveWindow.GetHideRefreshReference());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 保存数据
|
||||
/// </summary>
|
||||
@@ -279,37 +151,18 @@ namespace FineUIPro.Web.HSSE.CostGoods
|
||||
{
|
||||
Model.CostGoods_Expense expense = new Model.CostGoods_Expense
|
||||
{
|
||||
ProjectId = this.ProjectId
|
||||
ProjectId = this.ProjectId,
|
||||
UnitId = this.drpUnit.SelectedValue,
|
||||
ReportDate = Funs.GetNewDateTime(this.txtReportDate.Text.Trim()),
|
||||
CompileDate = DateTime.Now,
|
||||
CompileMan = this.CurrUser.PersonId,
|
||||
SortIndex = Funs.GetNewInt(this.lbSortIndex.Text),
|
||||
Year =Funs.GetNewInt(this.txtYear.Text),
|
||||
|
||||
};
|
||||
//if (!string.IsNullOrEmpty(this.txtMonths.Text))
|
||||
//{
|
||||
// expense.Months = Funs.GetNewDateTime(this.txtMonths.Text + "-01");
|
||||
//}
|
||||
if (this.drpYear.SelectedValue != BLL.Const._Null && this.drpMonths.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
expense.Months = Funs.GetNewDateTime(this.drpYear.SelectedValue + "-" + this.drpMonths.SelectedValue);
|
||||
}
|
||||
expense.ExpenseCode = this.txtExpenseCode.Text.Trim();
|
||||
if (this.drpUnitId.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
expense.UnitId = this.drpUnitId.SelectedValue;
|
||||
}
|
||||
expense.ReportDate = Funs.GetNewDateTime(this.txtReportDate.Text.Trim());
|
||||
|
||||
//expense.CheckMan = this.txtCheckMan.Text;
|
||||
//expense.CheckDate = Funs.GetNewDateTime(this.txtCheckDate.Text.Trim());
|
||||
//expense.ApproveMan = this.txtApproveMan.Text;
|
||||
//expense.ApproveDate = Funs.GetNewDateTime(this.txtApproveDate.Text.Trim());
|
||||
////单据状态
|
||||
expense.States = BLL.Const.State_0;
|
||||
if (type == BLL.Const.BtnSubmit)
|
||||
{
|
||||
expense.States = this.ctlAuditFlow.NextStep;
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(this.ExpenseId))
|
||||
{
|
||||
expense.CompileDate = DateTime.Now;
|
||||
expense.CompileMan = this.CurrUser.PersonId;
|
||||
expense.ExpenseId = this.ExpenseId;
|
||||
BLL.ExpenseService.UpdateExpense(expense);
|
||||
BLL.LogService.AddSys_Log(this.CurrUser, expense.ExpenseCode, expense.ExpenseId, BLL.Const.ProjectExpenseMenuId, BLL.Const.BtnModify);
|
||||
@@ -317,25 +170,13 @@ namespace FineUIPro.Web.HSSE.CostGoods
|
||||
}
|
||||
else
|
||||
{
|
||||
this.ExpenseId = SQLHelper.GetNewID(typeof(Model.CostGoods_Expense));
|
||||
this.ExpenseId = SQLHelper.GetNewID();
|
||||
expense.ExpenseId = this.ExpenseId;
|
||||
expense.CompileMan = this.CurrUser.PersonName;
|
||||
expense.CompileDate = DateTime.Now;
|
||||
expense.CreateDate = DateTime.Now;
|
||||
BLL.ExpenseService.AddExpense(expense);
|
||||
BLL.LogService.AddSys_Log(this.CurrUser, expense.ExpenseCode, expense.ExpenseId, BLL.Const.ProjectExpenseMenuId, BLL.Const.BtnAdd);
|
||||
}
|
||||
//保存费用明细
|
||||
BLL.ExpenseDetailService.AddCostDetail(expense.ExpenseId, "A1", Funs.GetNewDecimalOrZero(this.nbA1.Text), this.txtDefA1.Text.Trim());
|
||||
BLL.ExpenseDetailService.AddCostDetail(expense.ExpenseId, "A2", Funs.GetNewDecimalOrZero(this.nbA2.Text), this.txtDefA2.Text.Trim());
|
||||
BLL.ExpenseDetailService.AddCostDetail(expense.ExpenseId, "A3", Funs.GetNewDecimalOrZero(this.nbA3.Text), this.txtDefA3.Text.Trim());
|
||||
BLL.ExpenseDetailService.AddCostDetail(expense.ExpenseId, "A4", Funs.GetNewDecimalOrZero(this.nbA4.Text), this.txtDefA4.Text.Trim());
|
||||
BLL.ExpenseDetailService.AddCostDetail(expense.ExpenseId, "A5", Funs.GetNewDecimalOrZero(this.nbA5.Text), this.txtDefA5.Text.Trim());
|
||||
BLL.ExpenseDetailService.AddCostDetail(expense.ExpenseId, "A6", Funs.GetNewDecimalOrZero(this.nbA6.Text), this.txtDefA6.Text.Trim());
|
||||
BLL.ExpenseDetailService.AddCostDetail(expense.ExpenseId, "B1", Funs.GetNewDecimalOrZero(this.nbB1.Text), this.txtDefB1.Text.Trim());
|
||||
BLL.ExpenseDetailService.AddCostDetail(expense.ExpenseId, "B2", Funs.GetNewDecimalOrZero(this.nbB2.Text), this.txtDefB2.Text.Trim());
|
||||
BLL.ExpenseDetailService.AddCostDetail(expense.ExpenseId, "B3", Funs.GetNewDecimalOrZero(this.nbB3.Text), this.txtDefB3.Text.Trim());
|
||||
////保存流程审核数据
|
||||
this.ctlAuditFlow.btnSaveData(this.ProjectId, BLL.Const.ProjectExpenseMenuId, this.ExpenseId, (type == BLL.Const.BtnSubmit ? true : false), expense.ExpenseCode, "../CostGoods/ExpenseView.aspx?ExpenseId={0}");
|
||||
|
||||
}
|
||||
#endregion
|
||||
|
||||
@@ -355,214 +196,7 @@ namespace FineUIPro.Web.HSSE.CostGoods
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 输入框变化事件
|
||||
/// <summary>
|
||||
/// 输入框变化事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void nbA1_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpUnitId.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
this.nbProjectA1.Text = (Funs.GetNewDecimalOrZero(this.hdProjectA1.Text) + Funs.GetNewDecimalOrZero(this.nbA1.Text)).ToString();
|
||||
this.nbA.Text = (Funs.GetNewDecimalOrZero(this.nbA1.Text) + Funs.GetNewDecimalOrZero(this.nbA2.Text) + Funs.GetNewDecimalOrZero(this.nbA3.Text) + Funs.GetNewDecimalOrZero(this.nbA4.Text) + Funs.GetNewDecimalOrZero(this.nbA5.Text) + Funs.GetNewDecimalOrZero(this.nbA6.Text)).ToString();
|
||||
this.nbProjectA.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA1.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA2.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA3.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA4.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA5.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA6.Text)).ToString();
|
||||
this.nbAB.Text = (Funs.GetNewDecimalOrZero(this.nbA.Text) + Funs.GetNewDecimalOrZero(this.nbB.Text)).ToString();
|
||||
this.nbProjectAB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB.Text)).ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.nbA1.Text = string.Empty;
|
||||
Alert.ShowInTop("请先选择填报单位!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 输入框变化事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void nbA2_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpUnitId.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
this.nbProjectA2.Text = (Funs.GetNewDecimalOrZero(this.hdProjectA2.Text) + Funs.GetNewDecimalOrZero(this.nbA2.Text)).ToString();
|
||||
this.nbA.Text = (Funs.GetNewDecimalOrZero(this.nbA1.Text) + Funs.GetNewDecimalOrZero(this.nbA2.Text) + Funs.GetNewDecimalOrZero(this.nbA3.Text) + Funs.GetNewDecimalOrZero(this.nbA4.Text) + Funs.GetNewDecimalOrZero(this.nbA5.Text) + Funs.GetNewDecimalOrZero(this.nbA6.Text)).ToString();
|
||||
this.nbProjectA.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA1.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA2.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA3.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA4.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA5.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA6.Text)).ToString();
|
||||
this.nbAB.Text = (Funs.GetNewDecimalOrZero(this.nbA.Text) + Funs.GetNewDecimalOrZero(this.nbB.Text)).ToString();
|
||||
this.nbProjectAB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB.Text)).ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.nbA2.Text = string.Empty;
|
||||
Alert.ShowInTop("请先选择填报单位!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 输入框变化事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void nbA3_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpUnitId.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
this.nbProjectA3.Text = (Funs.GetNewDecimalOrZero(this.hdProjectA3.Text) + Funs.GetNewDecimalOrZero(this.nbA3.Text)).ToString();
|
||||
this.nbA.Text = (Funs.GetNewDecimalOrZero(this.nbA1.Text) + Funs.GetNewDecimalOrZero(this.nbA2.Text) + Funs.GetNewDecimalOrZero(this.nbA3.Text) + Funs.GetNewDecimalOrZero(this.nbA4.Text) + Funs.GetNewDecimalOrZero(this.nbA5.Text) + Funs.GetNewDecimalOrZero(this.nbA6.Text)).ToString();
|
||||
this.nbProjectA.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA1.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA2.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA3.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA4.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA5.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA6.Text)).ToString();
|
||||
this.nbAB.Text = (Funs.GetNewDecimalOrZero(this.nbA.Text) + Funs.GetNewDecimalOrZero(this.nbB.Text)).ToString();
|
||||
this.nbProjectAB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB.Text)).ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.nbA3.Text = string.Empty;
|
||||
Alert.ShowInTop("请先选择填报单位!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 输入框变化事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void nbA4_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpUnitId.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
this.nbProjectA4.Text = (Funs.GetNewDecimalOrZero(this.hdProjectA4.Text) + Funs.GetNewDecimalOrZero(this.nbA4.Text)).ToString();
|
||||
this.nbA.Text = (Funs.GetNewDecimalOrZero(this.nbA1.Text) + Funs.GetNewDecimalOrZero(this.nbA2.Text) + Funs.GetNewDecimalOrZero(this.nbA3.Text) + Funs.GetNewDecimalOrZero(this.nbA4.Text) + Funs.GetNewDecimalOrZero(this.nbA5.Text) + Funs.GetNewDecimalOrZero(this.nbA6.Text)).ToString();
|
||||
this.nbProjectA.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA1.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA2.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA3.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA4.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA5.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA6.Text)).ToString();
|
||||
this.nbAB.Text = (Funs.GetNewDecimalOrZero(this.nbA.Text) + Funs.GetNewDecimalOrZero(this.nbB.Text)).ToString();
|
||||
this.nbProjectAB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB.Text)).ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.nbA4.Text = string.Empty;
|
||||
Alert.ShowInTop("请先选择填报单位!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 输入框变化事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void nbA5_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpUnitId.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
this.nbProjectA5.Text = (Funs.GetNewDecimalOrZero(this.hdProjectA5.Text) + Funs.GetNewDecimalOrZero(this.nbA5.Text)).ToString();
|
||||
this.nbA.Text = (Funs.GetNewDecimalOrZero(this.nbA1.Text) + Funs.GetNewDecimalOrZero(this.nbA2.Text) + Funs.GetNewDecimalOrZero(this.nbA3.Text) + Funs.GetNewDecimalOrZero(this.nbA4.Text) + Funs.GetNewDecimalOrZero(this.nbA5.Text) + Funs.GetNewDecimalOrZero(this.nbA6.Text)).ToString();
|
||||
this.nbProjectA.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA1.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA2.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA3.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA4.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA5.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA6.Text)).ToString();
|
||||
this.nbAB.Text = (Funs.GetNewDecimalOrZero(this.nbA.Text) + Funs.GetNewDecimalOrZero(this.nbB.Text)).ToString();
|
||||
this.nbProjectAB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB.Text)).ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.nbA5.Text = string.Empty;
|
||||
Alert.ShowInTop("请先选择填报单位!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 输入框变化事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void nbA6_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpUnitId.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
this.nbProjectA6.Text = (Funs.GetNewDecimalOrZero(this.hdProjectA6.Text) + Funs.GetNewDecimalOrZero(this.nbA6.Text)).ToString();
|
||||
this.nbA.Text = (Funs.GetNewDecimalOrZero(this.nbA1.Text) + Funs.GetNewDecimalOrZero(this.nbA2.Text) + Funs.GetNewDecimalOrZero(this.nbA3.Text) + Funs.GetNewDecimalOrZero(this.nbA4.Text) + Funs.GetNewDecimalOrZero(this.nbA5.Text) + Funs.GetNewDecimalOrZero(this.nbA6.Text)).ToString();
|
||||
this.nbProjectA.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA1.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA2.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA3.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA4.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA5.Text) + Funs.GetNewDecimalOrZero(this.nbProjectA6.Text)).ToString();
|
||||
this.nbAB.Text = (Funs.GetNewDecimalOrZero(this.nbA.Text) + Funs.GetNewDecimalOrZero(this.nbB.Text)).ToString();
|
||||
this.nbProjectAB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB.Text)).ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.nbA6.Text = string.Empty;
|
||||
Alert.ShowInTop("请先选择填报单位!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 输入框变化事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void nbB1_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpUnitId.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
this.nbProjectB1.Text = (Funs.GetNewDecimalOrZero(this.hdProjectB1.Text) + Funs.GetNewDecimalOrZero(this.nbB1.Text)).ToString();
|
||||
this.nbB.Text = (Funs.GetNewDecimalOrZero(this.nbB1.Text) + Funs.GetNewDecimalOrZero(this.nbB2.Text) + Funs.GetNewDecimalOrZero(this.nbB3.Text)).ToString();
|
||||
this.nbProjectB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectB1.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB2.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB3.Text)).ToString();
|
||||
this.nbAB.Text = (Funs.GetNewDecimalOrZero(this.nbA.Text) + Funs.GetNewDecimalOrZero(this.nbB.Text)).ToString();
|
||||
this.nbProjectAB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB.Text)).ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.nbB1.Text = string.Empty;
|
||||
Alert.ShowInTop("请先选择填报单位!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 输入框变化事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void nbB2_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpUnitId.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
this.nbProjectB2.Text = (Funs.GetNewDecimalOrZero(this.hdProjectB2.Text) + Funs.GetNewDecimalOrZero(this.nbB2.Text)).ToString();
|
||||
this.nbB.Text = (Funs.GetNewDecimalOrZero(this.nbB1.Text) + Funs.GetNewDecimalOrZero(this.nbB2.Text) + Funs.GetNewDecimalOrZero(this.nbB3.Text)).ToString();
|
||||
this.nbProjectB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectB1.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB2.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB3.Text)).ToString();
|
||||
this.nbAB.Text = (Funs.GetNewDecimalOrZero(this.nbA.Text) + Funs.GetNewDecimalOrZero(this.nbB.Text)).ToString();
|
||||
this.nbProjectAB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB.Text)).ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.nbB2.Text = string.Empty;
|
||||
Alert.ShowInTop("请先选择填报单位!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 输入框变化事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void nbB3_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpUnitId.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
this.nbProjectB3.Text = (Funs.GetNewDecimalOrZero(this.hdProjectB3.Text) + Funs.GetNewDecimalOrZero(this.nbB3.Text)).ToString();
|
||||
this.nbB.Text = (Funs.GetNewDecimalOrZero(this.nbB1.Text) + Funs.GetNewDecimalOrZero(this.nbB2.Text) + Funs.GetNewDecimalOrZero(this.nbB3.Text)).ToString();
|
||||
this.nbProjectB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectB1.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB2.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB3.Text)).ToString();
|
||||
this.nbAB.Text = (Funs.GetNewDecimalOrZero(this.nbA.Text) + Funs.GetNewDecimalOrZero(this.nbB.Text)).ToString();
|
||||
this.nbProjectAB.Text = (Funs.GetNewDecimalOrZero(this.nbProjectA.Text) + Funs.GetNewDecimalOrZero(this.nbProjectB.Text)).ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.nbB3.Text = string.Empty;
|
||||
Alert.ShowInTop("请先选择填报单位!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 单位变化事件
|
||||
/// <summary>
|
||||
@@ -570,33 +204,11 @@ namespace FineUIPro.Web.HSSE.CostGoods
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void drpUnitId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
protected void drpUnit_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (this.drpUnitId.SelectedValue != BLL.Const._Null)
|
||||
if (this.drpUnit.SelectedValue != Const._Null && !string.IsNullOrEmpty(this.txtYear.Text))
|
||||
{
|
||||
Model.Base_Project project = BLL.ProjectService.GetProjectByProjectId(this.ProjectId);
|
||||
List<Model.CostGoods_ExpenseDetail> projectDetails = BLL.ExpenseDetailService.GetCostDetailsByUnitId(this.drpUnitId.SelectedValue, project != null ? Convert.ToDateTime(project.StartDate) : Convert.ToDateTime("2000-01-01"), Convert.ToDateTime(this.drpYear.SelectedValue + "-" + this.drpMonths.SelectedValue + "-01"));
|
||||
this.hdProjectA1.Text = (from x in projectDetails where x.CostType == "A1" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectA2.Text = (from x in projectDetails where x.CostType == "A2" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectA3.Text = (from x in projectDetails where x.CostType == "A3" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectA4.Text = (from x in projectDetails where x.CostType == "A4" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectA5.Text = (from x in projectDetails where x.CostType == "A5" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectA6.Text = (from x in projectDetails where x.CostType == "A6" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectB1.Text = (from x in projectDetails where x.CostType == "B1" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectB2.Text = (from x in projectDetails where x.CostType == "B2" select x.CostMoney ?? 0).Sum().ToString();
|
||||
this.hdProjectB3.Text = (from x in projectDetails where x.CostType == "B3" select x.CostMoney ?? 0).Sum().ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.hdProjectA1.Text = "0";
|
||||
this.hdProjectA2.Text = "0";
|
||||
this.hdProjectA3.Text = "0";
|
||||
this.hdProjectA4.Text = "0";
|
||||
this.hdProjectA5.Text = "0";
|
||||
this.hdProjectA6.Text = "0";
|
||||
this.hdProjectB1.Text = "0";
|
||||
this.hdProjectB2.Text = "0";
|
||||
this.hdProjectB3.Text = "0";
|
||||
SetPage(Funs.DB.CostGoods_Expense.FirstOrDefault(x => x.UnitId == this.drpUnit.SelectedValue && x.Year.ToString() == this.txtYear.Text));
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user