public ProjectCostingSheetAddTDS.UnitsInformationDataTable GetUnitsInformation() { unitsInformation = (ProjectCostingSheetAddTDS.UnitsInformationDataTable)Session["unitsInformationDummy"]; if (unitsInformation == null) { unitsInformation = (ProjectCostingSheetAddTDS.UnitsInformationDataTable)Session["unitsInformation"]; } return unitsInformation; }
// //////////////////////////////////////////////////////////////////////// // STEP5 - TRUCKS EQUIPMENT INFORMATION - METHODS // private void StepTrucksEquipmentInformationIn() { // Set instruction Label instruction = (Label)this.Master.FindControl("lblInstruction"); instruction.Text = "Please verify Truck / Equipment information"; // Load ProjectCostingSheetAddUnitsInformation model = new ProjectCostingSheetAddUnitsInformation(projectCostingSheetAddTDS); if (projectCostingSheetAddTDS.UnitsInformation.Rows.Count <= 0) { ArrayList works = new ArrayList(); if (cbxRehabAssessmentData.Checked) works.Add("Rehab Assessment"); if (cbxFullLengthLiningData.Checked) works.Add("Full Length"); if (cbxPointRepairData.Checked) { works.Add("Point Lining"); works.Add("Grouting"); } if (cbxJunctionLiningData.Checked) works.Add("Junction Lining"); if (cbxManholeRehabData.Checked) works.Add("MH Rehab"); if (cbxMobilizationData.Checked) works.Add("Mobilization"); if (cbxOtherData.Checked) { works.Add("Other"); works.Add("Downtime"); works.Add("Office"); works.Add("Office / Shop"); works.Add("R & D"); works.Add("Special Projects"); works.Add("Subcontractor"); works.Add("Watermain Relining"); works.Add("SOTA"); } model.Load(works, int.Parse(hdfProjectId.Value), tkrdpFrom.SelectedDate.Value, tkrdpTo.SelectedDate.Value, int.Parse(hdfCompanyId.Value)); } // Store tables Session.Remove("unitsInformationDummy"); unitsInformation = (ProjectCostingSheetAddTDS.UnitsInformationDataTable)model.Table; Session["unitsInformation"] = unitsInformation; Session["projectCostingSheetAddTDS"] = projectCostingSheetAddTDS; // Validate grid columns int projectId = Int32.Parse(hdfProjectId.Value); ProjectGateway projectGateway = new ProjectGateway(); projectGateway.LoadByProjectId(projectId); if (projectGateway.GetCountryID(projectId) == 1) //Canada { // Units Grid grdUnits.Columns[11].Visible = true; grdUnits.Columns[12].Visible = true; grdUnits.Columns[13].Visible = false; grdUnits.Columns[14].Visible = false; lblUnitsTotalCosts.Text = "Total Cost (CAD) : "; tbxUnitsTotalCostsCAD.Visible = true; tbxUnitsTotalCostsUSD.Visible = false; } else { // Units Grid grdUnits.Columns[11].Visible = false; grdUnits.Columns[12].Visible = false; grdUnits.Columns[13].Visible = true; grdUnits.Columns[14].Visible = true; lblUnitsTotalCosts.Text = "Total Cost (USD) : "; tbxUnitsTotalCostsCAD.Visible = false; tbxUnitsTotalCostsUSD.Visible = true; } grdUnits.DataBind(); StepTrucksEquipmentInformationProcessGrid(); }
protected void UnitsInformationEmptyFix(GridView grdView) { if (grdView.Rows.Count == 0) { ProjectCostingSheetAddTDS.UnitsInformationDataTable dt = new ProjectCostingSheetAddTDS.UnitsInformationDataTable(); dt.AddUnitsInformationRow(0, "", 0, 0, "", 0, 0, 0, 0, 0, false, 3, false, "", "", DateTime.Now, DateTime.Now, false, "", "", "", "", "", 0, 0); Session["unitsInformationDummy"] = dt; grdView.DataBind(); } // Normally executes at all postbacks if (grdView.Rows.Count == 1) { ProjectCostingSheetAddTDS.UnitsInformationDataTable dt = (ProjectCostingSheetAddTDS.UnitsInformationDataTable)Session["unitsInformationDummy"]; if (dt != null) { // Hide row grdView.Rows[0].Visible = false; grdView.Rows[0].Controls.Clear(); } } }
// //////////////////////////////////////////////////////////////////////// // INITIAL EVENTS // protected void Page_Load(object sender, EventArgs e) { // Register client scripts this.RegisterClientScripts(); if (!IsPostBack) { // Security check if (!Convert.ToBoolean(Session["sgLFS_PROJECTS_COSTINGSHEETS_ADMIN"])) { if (!(Convert.ToBoolean(Session["sgLFS_PROJECTS_COSTINGSHEETS_VIEW"]) && Convert.ToBoolean(Session["sgLFS_PROJECTS_COSTINGSHEETS_ADD"]))) { Response.Redirect("./../../error_page.aspx?error=" + "You are not authorized to view this page. Contact your system administrator."); } } // Validate query string if (((string)Request.QueryString["source_page"] == null) || ((string)Request.QueryString["project_id"] == null)) { Response.Redirect("./../../error_page.aspx?error=" + "Invalid query string in project_costing_sheets_add.aspx"); } // Tag Page TagPage(); // Initialize viewstate variables ViewState["StepFrom"] = "Out"; Session.Remove("labourHoursInformationDummy"); Session.Remove("labourHoursInformation"); Session.Remove("unitsInformationDummy"); Session.Remove("unitsInformation"); Session.Remove("subcontractorsInformationDummy"); Session.Remove("subcontractorsInformation"); Session.Remove("materialsInformationDummy"); Session.Remove("materialsInformation"); Session.Remove("otherCostsInformationDummy"); Session.Remove("otherCostsInformation"); Session.Remove("revenueInformationDummy"); Session.Remove("revenueInformation"); Session.Remove("templateInformationDummy"); Session.Remove("templateInformation"); Session.Remove("hotelsInformationDummy"); Session.Remove("hotelsInformation"); Session.Remove("bondingsInformationDummy"); Session.Remove("bondingsInformation"); Session.Remove("insurancesInformationDummy"); Session.Remove("insurancesInformation"); Session.Remove("otherCategoryInformationDummy"); Session.Remove("otherCategoryInformation"); // ... Initialize tables projectCostingSheetAddTDS = new ProjectCostingSheetAddTDS(); labourHoursInformation = new ProjectCostingSheetAddTDS.LabourHoursInformationDataTable(); unitsInformation = new ProjectCostingSheetAddTDS.UnitsInformationDataTable(); subcontractorsInformation = new ProjectCostingSheetAddTDS.SubcontractorsInformationDataTable(); materialsInformation = new ProjectCostingSheetAddTDS.MaterialsInformationDataTable(); otherCostsInformation = new ProjectCostingSheetAddTDS.OtherCostsInformationDataTable(); revenueInformation = new ProjectCostingSheetAddTDS.RevenueInformationDataTable(); templateInformation = new ProjectCostingSheetAddTDS.TemplateInformationDataTable(); hotelsInformation = new ProjectCostingSheetAddTDS.HotelsInformationDataTable(); bondingsInformation = new ProjectCostingSheetAddTDS.BondingsInformationDataTable(); insurancesInformation = new ProjectCostingSheetAddTDS.InsurancesInformationDataTable(); otherCategoryInformation = new ProjectCostingSheetAddTDS.OtherCategoryInformationDataTable(); tbxTeamMembersTotalCostCAD.Text = "0"; tbxTeamMembersTotalCostUSD.Text = "0"; tbxUnitsTotalCostsCAD.Text = "0"; tbxUnitsTotalCostsUSD.Text = "0"; tbxSubcontractorsTotalCostsCAD.Text = "0"; tbxSubcontractorsTotalCostsUSD.Text = "0"; tbxMaterialsTotalCostsCAD.Text = "0"; tbxMaterialsTotalCostsUSD.Text = "0"; tbxOtherCostsTotalCostsCAD.Text = "0"; tbxOtherCostsTotalCostsUSD.Text = "0"; tbxRevenueTotal.Text = "0"; tbxGradRevenue.Text = "0"; tbxGrandProfit.Text = "0"; tbxGrandGrossMargin.Text = "0"; tbxHotelsTotalCostsCAD.Text = "0"; tbxHotelsTotalCostsUSD.Text = "0"; tbxBondingsTotalCostsCAD.Text = "0"; tbxBondingsTotalCostsUSD.Text = "0"; tbxInsurancesTotalCostsCAD.Text = "0"; tbxInsurancesTotalCostsUSD.Text = "0"; tbxOtherCategoryTotalCostsCAD.Text = "0"; tbxOtherCategoryTotalCostsUSD.Text = "0"; // ... Store tables Session["projectCostingSheetAddTDS"] = projectCostingSheetAddTDS; Session["labourHoursInformation"] = labourHoursInformation; Session["unitsInformation"] = unitsInformation; Session["subcontractorsInformation"] = subcontractorsInformation; Session["materialsInformation"] = materialsInformation; Session["otherCostsInformation"] = otherCostsInformation; Session["revenueInformation"] = revenueInformation; Session["templateInformation"] = templateInformation; Session["hotelsInformation"] = hotelsInformation; Session["bondingsInformation"] = bondingsInformation; Session["insurancesInformation"] = insurancesInformation; Session["otherCategoryInformation"] = otherCategoryInformation; // StepGeneralInformation wzProjectCostinsSheetsAdd.ActiveStepIndex = 0; } else { // Restore tables projectCostingSheetAddTDS = (ProjectCostingSheetAddTDS)Session["projectCostingSheetAddTDS"]; labourHoursInformation = (ProjectCostingSheetAddTDS.LabourHoursInformationDataTable)Session["labourHoursInformation"]; unitsInformation = (ProjectCostingSheetAddTDS.UnitsInformationDataTable)Session["unitsInformation"]; subcontractorsInformation = (ProjectCostingSheetAddTDS.SubcontractorsInformationDataTable)Session["subcontractorsInformation"]; materialsInformation = (ProjectCostingSheetAddTDS.MaterialsInformationDataTable)Session["materialsInformation"]; otherCostsInformation = (ProjectCostingSheetAddTDS.OtherCostsInformationDataTable)Session["otherCostsInformation"]; revenueInformation = (ProjectCostingSheetAddTDS.RevenueInformationDataTable)Session["revenueInformation"]; templateInformation = (ProjectCostingSheetAddTDS.TemplateInformationDataTable)Session["templateInformation"]; hotelsInformation = (ProjectCostingSheetAddTDS.HotelsInformationDataTable)Session["hotelsInformation"]; bondingsInformation = (ProjectCostingSheetAddTDS.BondingsInformationDataTable)Session["bondingsInformation"]; insurancesInformation = (ProjectCostingSheetAddTDS.InsurancesInformationDataTable)Session["insurancesInformation"]; otherCategoryInformation = (ProjectCostingSheetAddTDS.OtherCategoryInformationDataTable)Session["otherCategoryInformation"]; } }
protected void grdUnits_RowUpdating(object sender, GridViewUpdateEventArgs e) { // Validate general data Page.Validate("unitsEdit"); int projectId = Int32.Parse(hdfProjectId.Value); ProjectGateway projectGateway = new ProjectGateway(); if (Page.IsValid) { // Validate costs projectGateway.LoadByProjectId(projectId); if (projectGateway.GetCountryID(projectId) == 1) //Canada { Page.Validate("unitsCadEdit"); } else { Page.Validate("unitsUsdEdit"); } } if (Page.IsValid) { int costingSheetId = (int)e.Keys["CostingSheetID"]; string work_ = (string)e.Keys["Work_"]; int unitId = (int)e.Keys["UnitID"]; int refId = (int)e.Keys["RefID"]; int companyId = Int32.Parse(hdfCompanyId.Value); string unitOfMeasurement = ((DropDownList)grdUnits.Rows[e.RowIndex].Cells[0].FindControl("ddlUnitOfMeasurementUnitsEdit")).SelectedValue; double quantity = double.Parse(((TextBox)grdUnits.Rows[e.RowIndex].Cells[0].FindControl("tbxQuantityEdit")).Text.Trim()); decimal costCad = 0.0M; decimal totalCostCad = 0.0M; decimal costUsd = 0.0M; decimal totalCostUsd = 0.0M; if (projectGateway.GetCountryID(projectId) == 1) //Canada { costCad = Decimal.Parse(((TextBox)grdUnits.Rows[e.RowIndex].Cells[0].FindControl("tbxCostCADEdit")).Text.Trim()); totalCostCad = (costCad * decimal.Parse(quantity.ToString())); totalCostCad = Decimal.Round(totalCostCad, 2); } else { costUsd = Decimal.Parse(((TextBox)grdUnits.Rows[e.RowIndex].Cells[0].FindControl("tbxCostUSDEdit")).Text.Trim()); totalCostUsd = (costUsd * decimal.Parse(quantity.ToString())); totalCostUsd = Decimal.Round(totalCostUsd, 2); } LFSLive.DA.FleetManagement.Units.UnitsGateway u = new LiquiForce.LFSLive.DA.FleetManagement.Units.UnitsGateway(); u.LoadByUnitId(unitId, companyId); string unitDescription = u.GetDescription(unitId); string unitCode = u.GetUnitCode(unitId); DateTime startDate = ((RadDatePicker)grdUnits.Rows[e.RowIndex].Cells[0].FindControl("tkrdpStartDateEdit")).SelectedDate.Value; DateTime endDate = ((RadDatePicker)grdUnits.Rows[e.RowIndex].Cells[0].FindControl("tkrdpEndDateEdit")).SelectedDate.Value; string workFunctionConcat = ""; string function_ = ""; workFunctionConcat = ((DropDownList)grdUnits.Rows[e.RowIndex].Cells[0].FindControl("ddlWorkFunctionEdit")).SelectedValue; if (workFunctionConcat != "(Select)") { string[] workFunction = workFunctionConcat.ToString().Trim().Split('.'); function_ = workFunction[1].Trim(); } // Update data ProjectCostingSheetAddUnitsInformation model = new ProjectCostingSheetAddUnitsInformation(projectCostingSheetAddTDS); model.Update(costingSheetId, work_, unitId, refId, unitOfMeasurement, quantity, costCad, totalCostCad, costUsd, totalCostUsd, false, companyId, unitCode, unitDescription, startDate, endDate, workFunctionConcat, function_); // Store dataset unitsInformation = (ProjectCostingSheetAddTDS.UnitsInformationDataTable)model.Table; Session["unitsInformation"] = unitsInformation; Session["projectCostingSheetAddTDS"] = projectCostingSheetAddTDS; StepTrucksEquipmentInformationProcessGrid(); } else { e.Cancel = true; } }
protected void grdUnits_RowDeleting(object sender, GridViewDeleteEventArgs e) { // Units Gridview, if the gridview is edition mode if (grdUnits.EditIndex >= 0) { grdUnits.UpdateRow(grdUnits.EditIndex, true); } // Delete Unit Cost int costingSheetId = (int)e.Keys["CostingSheetID"]; string work_ = (string)e.Keys["Work_"]; int unitId = (int)e.Keys["UnitID"]; int refId = (int)e.Keys["RefID"]; ProjectCostingSheetAddUnitsInformation model = new ProjectCostingSheetAddUnitsInformation(projectCostingSheetAddTDS); model.Delete(costingSheetId, work_, unitId, refId); // Store dataset unitsInformation = (ProjectCostingSheetAddTDS.UnitsInformationDataTable)model.Table; Session["unitsInformation"] = unitsInformation; Session["projectCostingSheetAddTDS"] = projectCostingSheetAddTDS; StepTrucksEquipmentInformationProcessGrid(); }
// ///////////////////////////////////////////////////////////////////////////////////////////////////// // // STEP5 - TRUCKS EQUIPMENT INFORMATION // // //////////////////////////////////////////////////////////////////////// // STEP5 - TRUCKS EQUIPMENT INFORMATION - EVENTS // protected void grdUnits_RowCommand(object sender, GridViewCommandEventArgs e) { switch (e.CommandName) { case "Add": // Units Gridview, if the gridview is edition mode if (grdUnits.EditIndex >= 0) { grdUnits.UpdateRow(grdUnits.EditIndex, true); } // Validate general data Page.Validate("unitsNew"); int projectId = Int32.Parse(hdfProjectId.Value); ProjectGateway projectGateway = new ProjectGateway(); if (Page.IsValid) { // Validate costs projectGateway.LoadByProjectId(projectId); if (projectGateway.GetCountryID(projectId) == 1) //Canada { Page.Validate("unitsCadNew"); } else { Page.Validate("unitsUsdNew"); } } if (Page.IsValid) { int companyId = Int32.Parse(hdfCompanyId.Value); string typeOfWork = ((DropDownList)grdUnits.FooterRow.FindControl("ddlTypeOfWork_New")).SelectedValue; int unitId = Int32.Parse(((DropDownList)grdUnits.FooterRow.FindControl("ddlUnitCodeNew")).SelectedValue); string unitCode = ((DropDownList)grdUnits.FooterRow.FindControl("ddlUnitCodeNew")).SelectedItem.Text; string unitOfMeasurement = ((DropDownList)grdUnits.FooterRow.FindControl("ddlUnitOfMeasurementUnitsNew")).SelectedValue; double quantity = double.Parse(((TextBox)grdUnits.FooterRow.FindControl("tbxQuantityNew")).Text.Trim()); decimal costCad = 0.0M; decimal totalCostCad = 0.0M; decimal costUsd = 0.0M; decimal totalCostUsd = 0.0M; if (projectGateway.GetCountryID(projectId) == 1) //Canada { costCad = Decimal.Parse(((TextBox)grdUnits.FooterRow.FindControl("tbxCostCADNew")).Text.Trim()); totalCostCad = (costCad * decimal.Parse(quantity.ToString())); totalCostCad = Decimal.Round(totalCostCad, 2); } else { costUsd = Decimal.Parse(((TextBox)grdUnits.FooterRow.FindControl("tbxCostUSDNew")).Text.Trim()); totalCostUsd = (costUsd * decimal.Parse(quantity.ToString())); totalCostUsd = Decimal.Round(totalCostUsd, 2); } LFSLive.DA.FleetManagement.Units.UnitsGateway u = new LiquiForce.LFSLive.DA.FleetManagement.Units.UnitsGateway(); u.LoadByUnitId(unitId, companyId); string unitDescription = u.GetDescription(unitId); DateTime startDate = ((RadDatePicker)grdUnits.FooterRow.FindControl("tkrdpStartDateNew")).SelectedDate.Value; DateTime endDate = ((RadDatePicker)grdUnits.FooterRow.FindControl("tkrdpEndDateNew")).SelectedDate.Value; string workFunctionConcat = ""; string function_ = ""; workFunctionConcat = ((DropDownList)grdUnits.FooterRow.FindControl("ddlWorkFunctionNew")).SelectedValue; if (workFunctionConcat != "(Select)") { string[] workFunction = workFunctionConcat.ToString().Trim().Split('.'); function_ = workFunction[1].Trim(); } ProjectCostingSheetAddUnitsInformation model = new ProjectCostingSheetAddUnitsInformation(projectCostingSheetAddTDS); model.Insert(0, typeOfWork, unitId, unitOfMeasurement, quantity, costCad, totalCostCad, costUsd, totalCostUsd, false, companyId, unitCode, unitDescription, startDate, endDate, workFunctionConcat, function_); Session.Remove("unitsInformationDummy"); unitsInformation = (ProjectCostingSheetAddTDS.UnitsInformationDataTable)model.Table; Session["unitsInformation"] = unitsInformation; Session["projectCostingSheetAddTDS"] = projectCostingSheetAddTDS; grdUnits.DataBind(); StepTrucksEquipmentInformationProcessGrid(); } break; } }