1
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Configuration;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using BLL;
|
||||
@@ -14,6 +15,11 @@ namespace FineUIPro.Web.ZHGL.Information
|
||||
{
|
||||
if (!IsPostBack)
|
||||
{
|
||||
string loginform = ConfigurationManager.AppSettings["LoginForm"];
|
||||
if (!string.IsNullOrWhiteSpace(loginform) &&loginform == "Login_ZJ.aspx")
|
||||
{//判断是否是重机客户,如果是重定向页面
|
||||
Response.Redirect("MillionsMonthlyReportZJ.aspx");
|
||||
}
|
||||
|
||||
BLL.ConstValue.InitConstValueDropDownList(this.drpMonth, ConstValue.Group_0009, false);
|
||||
BLL.ConstValue.InitConstValueDropDownList(this.drpYear, ConstValue.Group_0008, false);
|
||||
@@ -65,7 +71,7 @@ namespace FineUIPro.Web.ZHGL.Information
|
||||
{
|
||||
upState = "(未上报)";
|
||||
}
|
||||
this.SimpleForm1.Title = "企业企业安全数据统计月报" + report.MonthStr + report.YearStr + upState;
|
||||
this.SimpleForm1.Title = "企业安全数据统计月报" + report.MonthStr + report.YearStr + upState;
|
||||
lbUnitName.Text = "填报企业:" + report.UnitName;
|
||||
if (report.FillingDate != null)
|
||||
{
|
||||
@@ -85,6 +91,18 @@ namespace FineUIPro.Web.ZHGL.Information
|
||||
this.lbHandleMan.Hidden = false;
|
||||
lbHandleMan.Text = "下一步办理人:" + report.UserName;
|
||||
}
|
||||
if (report.KeyWorkNum != null)
|
||||
{
|
||||
txtKeyWorkNum.Text = report.KeyWorkNum.ToString();
|
||||
}
|
||||
if (report.KeyWorkOKNum != null)
|
||||
{
|
||||
txtKeyWorkOKNum.Text = report.KeyWorkOKNum.ToString();
|
||||
}
|
||||
if (!string.IsNullOrEmpty(report.KeyWorkOKRate))
|
||||
{
|
||||
txtKeyWorkOKRate.Text = report.KeyWorkOKRate;
|
||||
}
|
||||
lbRecordableIncidentRate.Text = "百万工时总可记录事件率:" + (report.RecordableIncidentRate ?? 0).ToString();
|
||||
lbLostTimeRate.Text = "百万工时损失工时率:" + (report.LostTimeRate ?? 0).ToString();
|
||||
lbLostTimeInjuryRate.Text = "百万工时损失工时伤害事故率:" + (report.LostTimeInjuryRate ?? 0).ToString();
|
||||
@@ -109,7 +127,7 @@ namespace FineUIPro.Web.ZHGL.Information
|
||||
yearTotalItem.SeriousInjuriesPersonNum = yearSumItems.Sum(x => x.SeriousInjuriesPersonNum ?? 0);
|
||||
yearTotalItem.SeriousInjuriesLossHour = yearSumItems.Sum(x => x.SeriousInjuriesLossHour ?? 0);
|
||||
yearTotalItem.MinorAccidentNum = yearSumItems.Sum(x => x.MinorAccidentNum ?? 0);
|
||||
yearTotalItem.MinorAccidentPersonNum = yearSumItems.Sum(x => x.MinorAccidentPersonNum ?? 0);
|
||||
yearTotalItem.MinorAccidentPersonNum = yearSumItems.Sum(x => x.MinorAccidentPersonNum ?? 0);
|
||||
yearTotalItem.MinorAccidentLossHour = yearSumItems.Sum(x => x.MinorAccidentLossHour ?? 0);
|
||||
yearTotalItem.DeathAccidentNum = yearSumItems.Sum(x => x.DeathAccidentNum ?? 0);
|
||||
yearTotalItem.DeathAccidentPersonNum = yearSumItems.Sum(x => x.DeathAccidentPersonNum ?? 0);
|
||||
@@ -140,7 +158,7 @@ namespace FineUIPro.Web.ZHGL.Information
|
||||
Grid1.Rows[Grid1.Rows.Count - 1].Values[0] = "";
|
||||
Grid1.Rows[Grid1.Rows.Count - 1].Values[1] = "";
|
||||
}
|
||||
var report2 = from x in Funs.DB.Information_MillionsMonthlyReport where x.MillionsMonthlyReportId== report.MillionsMonthlyReportId select x;
|
||||
var report2 = from x in Funs.DB.Information_MillionsMonthlyReport where x.MillionsMonthlyReportId == report.MillionsMonthlyReportId select x;
|
||||
Grid2.DataSource = report2;
|
||||
Grid2.DataBind();
|
||||
}
|
||||
@@ -220,10 +238,10 @@ namespace FineUIPro.Web.ZHGL.Information
|
||||
{
|
||||
this.btnDelete.Hidden = false;
|
||||
}
|
||||
if (buttonList.Contains(BLL.Const.BtnIn))
|
||||
{
|
||||
this.btnImport.Hidden = false;
|
||||
}
|
||||
//if (buttonList.Contains(BLL.Const.BtnIn))
|
||||
//{
|
||||
// this.btnImport.Hidden = false;
|
||||
//}
|
||||
if (buttonList.Contains(BLL.Const.BtnPrint))
|
||||
{
|
||||
this.btnPrint.Hidden = false;
|
||||
@@ -733,13 +751,13 @@ namespace FineUIPro.Web.ZHGL.Information
|
||||
var millionsMonthlyReport = Funs.DB.InformationProject_MillionsMonthlyReport.FirstOrDefault(x => x.ProjectId == item.ProjectId && x.Year == date.Year && x.Month == date.Month);
|
||||
if (millionsMonthlyReport == null)
|
||||
{
|
||||
info += item.ProjectCode + ":" + item.ProjectName + ",未填写报表;</br>";
|
||||
info += /*item.ProjectCode + ":" +*/ item.ProjectName + ",未填写报表;</br>";
|
||||
}
|
||||
else
|
||||
{
|
||||
if (millionsMonthlyReport.States != BLL.Const.State_2)
|
||||
{
|
||||
info += item.ProjectCode + ":" + item.ProjectName + "报表未报;";
|
||||
info += /*item.ProjectCode + ":" +*/ item.ProjectName + "报表未报;";
|
||||
var flows = (from x in Funs.DB.Sys_FlowOperate
|
||||
join y in Funs.DB.Person_Persons on x.OperaterId equals y.PersonId
|
||||
where x.DataId == millionsMonthlyReport.MillionsMonthlyReportId && x.IsClosed != false
|
||||
|
||||
Reference in New Issue
Block a user