2023-04-28
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using BLL;
|
||||
using Model;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
@@ -38,12 +39,25 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
ViewState["ProjectId"] = value;
|
||||
}
|
||||
}
|
||||
//public List<View_CheckSpecialDetail> details
|
||||
//{
|
||||
// get
|
||||
// {
|
||||
// return (List<View_CheckSpecialDetail>)ViewState["details"];
|
||||
// }
|
||||
// set
|
||||
// {
|
||||
// ViewState["details"] = value;
|
||||
// }
|
||||
//}
|
||||
/// <summary>
|
||||
/// 定义集合
|
||||
/// </summary>
|
||||
//private static List<Model.View_CheckSpecialDetail> checkSpecialDetails = new List<Model.View_CheckSpecialDetail>();
|
||||
private static List<Model.View_CheckSpecialDetail> details = new List<Model.View_CheckSpecialDetail>();
|
||||
#endregion
|
||||
|
||||
|
||||
// public List<View_CheckSpecialDetail> details = new List<View_CheckSpecialDetail>();
|
||||
#region 加载页面
|
||||
/// <summary>
|
||||
/// 加载页面
|
||||
@@ -60,8 +74,11 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
this.InitCheckItemSetDropDownList();
|
||||
this.CheckSpecialId = Request.Params["CheckSpecialId"];
|
||||
var checkSpecial = Check_CheckSpecialService.GetCheckSpecialByCheckSpecialId(this.CheckSpecialId);
|
||||
Technique_CheckItemSetService.InitCheckItemSetNameDropDownList(this.drpSupCheckItemSet, "2", "0", false);
|
||||
|
||||
if (checkSpecial != null)
|
||||
{
|
||||
details.Clear();
|
||||
this.ProjectId = checkSpecial.ProjectId;
|
||||
if (this.ProjectId != this.CurrUser.LoginProjectId)
|
||||
{
|
||||
@@ -70,7 +87,7 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
|
||||
if (!String.IsNullOrEmpty(checkSpecial.CheckType))
|
||||
{
|
||||
this.rbType.SelectedValue = checkSpecial.CheckType;
|
||||
this.drpType.SelectedValue = checkSpecial.CheckType;
|
||||
}
|
||||
this.InitCheckItemSetDropDownList();
|
||||
this.txtCheckSpecialCode.Text = CodeRecordsService.ReturnCodeByDataId(this.CheckSpecialId);
|
||||
@@ -89,16 +106,17 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
}
|
||||
|
||||
var checkSpecialDetails = (from x in Funs.DB.View_CheckSpecialDetail
|
||||
where x.CheckSpecialId == this.CheckSpecialId
|
||||
where x.CheckSpecialId == this.CheckSpecialId
|
||||
orderby x.UnitName, x.SortIndex
|
||||
select x).ToList();
|
||||
if (checkSpecialDetails.Count() > 0)
|
||||
{
|
||||
this.drpSupCheckItemSet.Readonly = true;
|
||||
this.rbType.Readonly = true;
|
||||
this.drpType.Readonly = true;
|
||||
}
|
||||
|
||||
Grid1.DataSource = checkSpecialDetails;
|
||||
details = checkSpecialDetails;
|
||||
Grid1.DataSource = details;
|
||||
Grid1.DataBind();
|
||||
}
|
||||
else
|
||||
@@ -107,41 +125,83 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
this.txtCheckSpecialCode.Text = CodeRecordsService.ReturnCodeByMenuIdProjectId(BLL.Const.ProjectCheckSpecialMenuId, this.ProjectId, this.CurrUser.UnitId);
|
||||
this.txtCheckDate.Text = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
|
||||
this.drpSupCheckItemSet.SelectedIndex = 0;
|
||||
this.drpSupCheckItemSet.SelectedIndex = 0;
|
||||
}
|
||||
|
||||
// 删除选中单元格的客户端脚本
|
||||
string deleteScript = GetDeleteScript();
|
||||
// 新增数据初始值
|
||||
JObject defaultObj = new JObject
|
||||
{
|
||||
{ "CheckAreaName", "" },
|
||||
{ "UnitName", "" },
|
||||
{ "Unqualified", "" },
|
||||
{ "CheckItemName", "" },
|
||||
{ "CompleteStatusName", "" },
|
||||
{ "HandleStepStr", "" },
|
||||
{ "HiddenHazardTypeName", "" },
|
||||
{ "Delete", String.Format("<a href=\"javascript:;\" onclick=\"{0}\"><img src=\"{1}\"/></a>", deleteScript, IconHelper.GetResolvedIconUrl(Icon.Delete)) }
|
||||
};
|
||||
// 在第一行新增一条数据
|
||||
btnNew.OnClientClick = Grid1.GetAddNewRecordReference(defaultObj, true);
|
||||
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
protected void btnAdd_Click(object sender, EventArgs e)
|
||||
{
|
||||
//JObject defaultObj = new JObject
|
||||
// { { "CheckSpecialDetailId",Guid.NewGuid() },
|
||||
// { "CheckAreaName", "" },
|
||||
// { "UnitName", "" },
|
||||
// { "HSEManage",""},
|
||||
// { "Unqualified", "" },
|
||||
// { "attchUrl","上传" },
|
||||
// {"RiskLevel","" },
|
||||
// { "CompleteStatusName", "" },
|
||||
// {"LimitedDate","" },
|
||||
// { "Suggestions",""},
|
||||
// { "HandleStepStr", "" },
|
||||
// { "Delete", String.Format("<a href=\"javascript:;\" onclick=\"{0}\"><img src=\"{1}\"/></a>", deleteScript, IconHelper.GetResolvedIconUrl(Icon.Delete)) }
|
||||
// };
|
||||
//details = (from x in Funs.DB.View_CheckSpecialDetail
|
||||
// where x.CheckSpecialId == this.CheckSpecialId
|
||||
// orderby x.UnitName, x.SortIndex
|
||||
// select x).ToList();
|
||||
//if (details == null)
|
||||
// details = new List<View_CheckSpecialDetail>();
|
||||
//View_CheckSpecialDetail d = new View_CheckSpecialDetail();
|
||||
//d.CheckSpecialDetailId = Guid.NewGuid().ToString();
|
||||
//details.Add(d);
|
||||
//Grid1.DataSource= details;
|
||||
|
||||
/// <summary>
|
||||
/// 行点击
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
//Grid1.DataBind();
|
||||
|
||||
|
||||
JArray teamGroupData = Grid1.GetMergedData();
|
||||
List<JObject> list = new List<JObject>();
|
||||
foreach (JObject teamGroupRow in teamGroupData)
|
||||
{
|
||||
JObject values = teamGroupRow.Value<JObject>("values");
|
||||
values.Add("CheckSpecialDetailId", teamGroupRow.Value<string>("id"));
|
||||
list.Add(values);
|
||||
}
|
||||
JObject defaultObj = new JObject
|
||||
{ { "CheckSpecialDetailId",Guid.NewGuid() },
|
||||
{ "CheckAreaName", "" },
|
||||
{ "UnitName", "" },
|
||||
{ "HSEManage",""},
|
||||
{ "Unqualified", "" },
|
||||
{"RiskLevel","" },
|
||||
{ "CompleteStatusName", "" },
|
||||
{"LimitedDate","" },
|
||||
{ "Suggestions",""},
|
||||
{ "HandleStepStr", "" },
|
||||
{ "Delete", String.Format("<a href=\"javascript:;\" onclick=\"{0}\"><img src=\"{1}\"/></a>", GetDeleteScript(), IconHelper.GetResolvedIconUrl(Icon.Delete)) }
|
||||
};
|
||||
list.Add( defaultObj);
|
||||
Grid1.DataSource = list;
|
||||
Grid1.DataBind();
|
||||
// Grid1.GetAddNewRecordReference(defaultObj, true);
|
||||
|
||||
// 在第一行新增一条数据
|
||||
//btnNew.OnClientClick = Grid1.GetAddNewRecordReference(defaultObj, true);
|
||||
}
|
||||
protected void Grid1_RowCommand(object sender, GridCommandEventArgs e)
|
||||
{
|
||||
string itemId = Grid1.DataKeys[e.RowIndex][0].ToString();
|
||||
|
||||
if (e.CommandName == "attchUrl")
|
||||
{
|
||||
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/CheckSpecial&menuId={1}&edit=1", itemId, BLL.Const.ProjectCheckSpecialMenuId)));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -149,11 +209,21 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
/// </summary>
|
||||
private void InitDropDownList()
|
||||
{
|
||||
ListItem[] item = new ListItem[4];
|
||||
|
||||
item[0] = new ListItem("专项检查", "0");
|
||||
item[1] = new ListItem("安全周检", "1");
|
||||
item[2] = new ListItem("安全月检", "2");
|
||||
item[3] = new ListItem("节前节后安全检查", "3");
|
||||
this.drpType.DataValueField = "Value";
|
||||
this.drpType.DataTextField = "Text";
|
||||
this.drpType.DataSource = item;
|
||||
this.drpType.DataBind();
|
||||
//检查组成员
|
||||
UserService.InitUserDropDownList(this.drpPartInPersons, this.ProjectId, true);
|
||||
ConstValue.InitConstNameDropDownList(this.drpHandleStep, ConstValue.Group_HandleStep, true);
|
||||
// ConstValue.InitConstNameDropDownList(this.drpHandleStep, ConstValue.Group_HandleStep, true);
|
||||
///责任单位
|
||||
UnitService.InitUnitNameByProjectIdUnitTypeDropDownList(this.drpWorkUnit, this.ProjectId, Const.ProjectUnitType_2, false);
|
||||
UnitService.InitUnitNameByProjectIdUnitTypeDropDownList(this.drpWorkUnit, this.ProjectId, Const.ProjectUnitType_2, true);
|
||||
///单位工程
|
||||
UnitWorkService.InitUnitWorkNameDropDownList(this.drpCheckArea, this.ProjectId, false);
|
||||
}
|
||||
@@ -167,7 +237,7 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
{
|
||||
Model.Check_CheckSpecial checkSpecial = new Model.Check_CheckSpecial
|
||||
{
|
||||
CheckSpecialId = SQLHelper.GetNewID(),
|
||||
CheckSpecialId = SQLHelper.GetNewID(typeof(Model.Check_CheckSpecial)),
|
||||
CheckSpecialCode = this.txtCheckSpecialCode.Text.Trim(),
|
||||
ProjectId = this.ProjectId,
|
||||
CompileMan=this.CurrUser.UserId,
|
||||
@@ -210,7 +280,7 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
/// <param name="e"></param>
|
||||
protected void btnSubmit_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (this.rbType.SelectedValue == "0" && (string.IsNullOrEmpty(this.drpSupCheckItemSet.SelectedValue) || this.drpSupCheckItemSet.SelectedValue == Const._Null))
|
||||
if (this.drpType.SelectedValue == "0" && (string.IsNullOrEmpty(this.drpSupCheckItemSet.SelectedValue) || this.drpSupCheckItemSet.SelectedValue == Const._Null))
|
||||
{
|
||||
ShowNotify("请选择检查类别!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
@@ -219,7 +289,17 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
this.SaveData(Const.BtnSubmit);
|
||||
}
|
||||
#endregion
|
||||
|
||||
public string ConvertDate(object date)
|
||||
{
|
||||
if (date != null)
|
||||
{
|
||||
return string.Format("{0:yyyy-MM-dd}", Convert.ToDateTime(date));
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
#region 保存按钮
|
||||
/// <summary>
|
||||
/// 保存按钮
|
||||
@@ -228,7 +308,7 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
/// <param name="e"></param>
|
||||
protected void btnSave_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (this.rbType.SelectedValue == "0" && (string.IsNullOrEmpty(this.drpSupCheckItemSet.SelectedValue) || this.drpSupCheckItemSet.SelectedValue == Const._Null))
|
||||
if (this.drpType.SelectedValue == "0" && (string.IsNullOrEmpty(this.drpSupCheckItemSet.SelectedValue) || this.drpSupCheckItemSet.SelectedValue == Const._Null))
|
||||
{
|
||||
ShowNotify("请选择检查类别!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
@@ -251,7 +331,7 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
PartInPersonNames = this.txtPartInPersonNames.Text.Trim(),
|
||||
CheckTime = Funs.GetNewDateTime(this.txtCheckDate.Text.Trim()),
|
||||
CompileMan=this.CurrUser.UserId,
|
||||
CheckType=this.rbType.SelectedValue,
|
||||
CheckType=this.drpType.SelectedValue,
|
||||
////单据状态
|
||||
States = Const.State_0,
|
||||
};
|
||||
@@ -272,23 +352,28 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
checkSpecial.PartInPersonIds = partInPersonIds.Substring(0, partInPersonIds.LastIndexOf(","));
|
||||
checkSpecial.PartInPersons = partInPersons.Substring(0, partInPersons.LastIndexOf(","));
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(this.drpSupCheckItemSet.SelectedValue) && this.drpSupCheckItemSet.SelectedValue != Const._Null)
|
||||
var getCheckItem = Funs.DB.Technique_CheckItemSet.FirstOrDefault(x => x.CheckItemName == this.drpSupCheckItemSet.SelectedValue);
|
||||
if (getCheckItem != null)
|
||||
{
|
||||
checkSpecial.CheckItemSetId = this.drpSupCheckItemSet.SelectedValue;
|
||||
checkSpecial.CheckItemSetId = getCheckItem.CheckItemSetId;
|
||||
}
|
||||
//if (!string.IsNullOrEmpty(this.drpSupCheckItemSet.SelectedValue) && this.drpSupCheckItemSet.SelectedValue != Const._Null)
|
||||
//{
|
||||
// checkSpecial.CheckItemSetId = this.drpSupCheckItemSet.SelectedValue;
|
||||
//}
|
||||
if (!string.IsNullOrEmpty(this.CheckSpecialId))
|
||||
{
|
||||
checkSpecial.CheckSpecialId = this.CheckSpecialId;
|
||||
Check_CheckSpecialService.UpdateCheckSpecial(checkSpecial);
|
||||
LogService.AddSys_Log(this.CurrUser, checkSpecial.CheckSpecialCode, checkSpecial.CheckSpecialId, BLL.Const.ProjectCheckSpecialMenuId, BLL.Const.BtnModify);
|
||||
Check_CheckSpecialDetailService.DeleteCheckSpecialDetails(this.CheckSpecialId);
|
||||
// Check_CheckSpecialDetailService.DeleteCheckSpecialDetails(this.CheckSpecialId);
|
||||
}
|
||||
else
|
||||
{
|
||||
checkSpecial.CheckSpecialId = SQLHelper.GetNewID(typeof(Model.Check_CheckSpecial));
|
||||
this.CheckSpecialId = checkSpecial.CheckSpecialId;
|
||||
checkSpecial.CompileMan = this.CurrUser.UserId;
|
||||
|
||||
Check_CheckSpecialService.AddCheckSpecial(checkSpecial);
|
||||
LogService.AddSys_Log(this.CurrUser, checkSpecial.CheckSpecialCode, checkSpecial.CheckSpecialId, BLL.Const.ProjectCheckSpecialMenuId, BLL.Const.BtnAdd);
|
||||
}
|
||||
@@ -311,25 +396,57 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
x.UnitWorkId,
|
||||
UnitWorkName = BLL.UnitWorkService.GetUnitWorkALLName(x.UnitWorkId)
|
||||
};
|
||||
var olddetailLists = Check_CheckSpecialDetailService.GetCheckSpecialDetailByCheckSpecialId(this.CheckSpecialId);
|
||||
List<string> needRemove = new List<string>();
|
||||
foreach (var oldDetail in olddetailLists)
|
||||
{
|
||||
bool hasFind = false;
|
||||
for (int i = 0; i < Grid1.Rows.Count; i++)
|
||||
{
|
||||
if (oldDetail.CheckSpecialDetailId == Grid1.Rows[i].DataKeys[0].ToString())
|
||||
{
|
||||
hasFind = true;
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
if (!hasFind)
|
||||
{
|
||||
|
||||
Check_CheckSpecialDetailService.DeleteCheckSpecialDetailById(oldDetail.CheckSpecialDetailId);
|
||||
|
||||
}
|
||||
}
|
||||
List<Model.Check_CheckSpecialDetail> detailLists = new List<Model.Check_CheckSpecialDetail>();
|
||||
JArray teamGroupData = Grid1.GetMergedData();
|
||||
foreach (JObject teamGroupRow in teamGroupData)
|
||||
{
|
||||
JObject values = teamGroupRow.Value<JObject>("values");
|
||||
int rowIndex = teamGroupRow.Value<int>("index");
|
||||
string CheckSpecialDetailId = values.Value<string>("CheckSpecialDetailId");
|
||||
if (string.IsNullOrEmpty(CheckSpecialDetailId))
|
||||
{
|
||||
CheckSpecialDetailId = SQLHelper.GetNewID();
|
||||
}
|
||||
Model.Check_CheckSpecialDetail newDetail = new Model.Check_CheckSpecialDetail
|
||||
{
|
||||
CheckSpecialDetailId = CheckSpecialDetailId,
|
||||
CheckSpecialDetailId = values.Value<string>("CheckSpecialDetailId"),
|
||||
CheckSpecialId = this.CheckSpecialId,
|
||||
CheckContent = values.Value<string>("CheckItemName"),
|
||||
Unqualified = values.Value<string>("Unqualified"),
|
||||
// WorkArea = values.Value<string>("WorkArea"),
|
||||
Suggestions = values.Value<string>("Suggestions"),
|
||||
RectifyOpinion = values.Value<string>("RectifyOpinion"),
|
||||
ProposeUnitId = this.CurrUser.UnitId
|
||||
|
||||
};
|
||||
|
||||
if (!string.IsNullOrEmpty(values.Value<string>("RectifyOpinion")))
|
||||
{
|
||||
if(values.Value<string>("RectifyOpinion")=="")
|
||||
newDetail.HandleStep = "";
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(values.Value<string>("LimitedDate")))
|
||||
{
|
||||
newDetail.LimitedDate = values.Value<DateTime>("LimitedDate");
|
||||
}
|
||||
var HSE = Funs.DB.Sys_User.FirstOrDefault(x=>x.UserName== values.Value<string>("HSE"));
|
||||
var getUnit = Funs.DB.Base_Unit.FirstOrDefault(x => x.UnitName == values.Value<string>("UnitName"));
|
||||
if (getUnit != null)
|
||||
{
|
||||
@@ -348,36 +465,17 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
//{
|
||||
// newDetail.CheckArea = getUnitWork.UnitWorkId;
|
||||
//}
|
||||
string[] strs = values.Value<string>("HandleStepStr").Split(',');
|
||||
string handleStep = string.Empty;
|
||||
foreach (var item in strs)
|
||||
if (!string.IsNullOrEmpty(values.Value<string>("HSEManage")))
|
||||
{
|
||||
var getHandleStep = Funs.DB.Sys_Const.FirstOrDefault(x => x.GroupId == ConstValue.Group_HandleStep && x.ConstText == item);
|
||||
if (getHandleStep != null)
|
||||
string hsemange = values.Value<string>("HSEManage").Split('-')[0];
|
||||
Sys_User user = Funs.DB.Sys_User.FirstOrDefault(x => x.UserName == hsemange);
|
||||
|
||||
if (user != null)
|
||||
{
|
||||
handleStep += getHandleStep.ConstValue + ",";
|
||||
}
|
||||
}
|
||||
if (!string.IsNullOrEmpty(handleStep))
|
||||
{
|
||||
handleStep = handleStep.Substring(0, handleStep.LastIndexOf(","));
|
||||
}
|
||||
newDetail.HandleStep = handleStep;
|
||||
if (newDetail.HandleStep.Contains("1"))
|
||||
{
|
||||
if (values.Value<string>("HiddenHazardTypeName") == "较大")
|
||||
{
|
||||
newDetail.HiddenHazardType = "2";
|
||||
}
|
||||
else if (values.Value<string>("HiddenHazardTypeName") == "重大")
|
||||
{
|
||||
newDetail.HiddenHazardType = "3";
|
||||
}
|
||||
else
|
||||
{
|
||||
newDetail.HiddenHazardType = "1";
|
||||
newDetail.HSEManage = user.UserId;
|
||||
}
|
||||
}
|
||||
|
||||
if (values.Value<string>("CompleteStatusName") == "已整改")
|
||||
{
|
||||
newDetail.CompleteStatus = true;
|
||||
@@ -387,28 +485,42 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
{
|
||||
newDetail.CompleteStatus = false;
|
||||
}
|
||||
var getCheckItem = Funs.DB.Technique_CheckItemSet.FirstOrDefault(x => x.SupCheckItem == this.drpSupCheckItemSet.SelectedValue && x.CheckItemName == newDetail.CheckContent);
|
||||
var getCheckItem = Funs.DB.HSSE_Hazard_HazardRegisterTypes.FirstOrDefault(x => x.RegisterTypesName == values.Value<string>("CheckItemName") );
|
||||
if (getCheckItem != null)
|
||||
{
|
||||
newDetail.CheckItem = getCheckItem.CheckItemSetId;
|
||||
newDetail.CheckItem = getCheckItem.RegisterTypesId;
|
||||
}
|
||||
newDetail.SortIndex = rowIndex;
|
||||
Check_CheckSpecialDetailService.AddCheckSpecialDetail(newDetail);
|
||||
if (Grid1.Rows[rowIndex].DataKeys.Length > 0)
|
||||
{
|
||||
newDetail.CheckSpecialDetailId = Grid1.Rows[rowIndex].DataKeys[0].ToString();
|
||||
}
|
||||
switch (values.Value<string>("RiskLevel"))
|
||||
{
|
||||
case "低": newDetail.RiskLevel = "0"; break;
|
||||
case "一般": newDetail.RiskLevel = "1"; break;
|
||||
case "较高": newDetail.RiskLevel = "2"; break;
|
||||
case "高": newDetail.RiskLevel = "3"; break;
|
||||
}
|
||||
if (string.IsNullOrEmpty(newDetail.CheckSpecialDetailId))
|
||||
{
|
||||
Check_CheckSpecialDetailService.AddCheckSpecialDetail(newDetail);
|
||||
}
|
||||
else
|
||||
{
|
||||
Check_CheckSpecialDetailService.UpdateCheckSpecialDetail(newDetail);
|
||||
}
|
||||
detailLists.Add(newDetail);
|
||||
|
||||
}
|
||||
if (type == Const.BtnSubmit)
|
||||
{
|
||||
var getDails = detailLists.Where(x => x.CompleteStatus == false);
|
||||
if (getDails.Count() > 0)
|
||||
{
|
||||
if (getDails.FirstOrDefault(x => x.HandleStep == null) != null)
|
||||
{
|
||||
info = "存在待整改问题,没有处理措施!";
|
||||
}
|
||||
else
|
||||
{
|
||||
info = Check_CheckSpecialService.IssueRectification(getDails.ToList(), checkSpecial);
|
||||
}
|
||||
checkSpecial.States = Const.State_1;
|
||||
info = Check_CheckSpecialService.IssueRectification(getDails.ToList(), checkSpecial);
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -469,11 +581,52 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
/// <param name="e"></param>
|
||||
protected void drpSupCheckItemSet_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.drpCheckItem.Items.Clear();
|
||||
Technique_CheckItemSetService.InitCheckItemSetNameDropDownList(this.drpCheckItem, "2", this.drpSupCheckItemSet.SelectedValue, false);
|
||||
//this.drpCheckItem.Items.Clear();
|
||||
//Technique_CheckItemSetService.InitCheckItemSetNameDropDownList(this.drpCheckItem, "2", this.drpSupCheckItemSet.SelectedValue, false);
|
||||
}
|
||||
|
||||
protected void drpPartInPersons_SelectedIndexChanged(object sender, EventArgs e)
|
||||
protected void drpWorkUnit_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
//for (int i = 0; i < this.Grid1.Rows.Count; i++)
|
||||
//{
|
||||
// DropDownList drpUnitWork = (DropDownList)Grid1.Rows[i].FindControl("drpUnitWork");
|
||||
// if(((DropDownList)sender).ID == drpUnitWork.ID)
|
||||
// {
|
||||
//DropDownList drpHSE = (DropDownList)Grid1.Rows[i].FindControl("drpHSE");
|
||||
|
||||
string unitName = ((DropDownList)sender).SelectedValue;
|
||||
string id = "";
|
||||
if(unitName != BLL.Const._Null)
|
||||
{
|
||||
var unit = Funs.DB.Base_Unit.FirstOrDefault(x=>x.UnitName == unitName);
|
||||
if(unit != null)
|
||||
{
|
||||
id = unit.UnitId;
|
||||
}
|
||||
}
|
||||
|
||||
var sysUser = BLL.ProjectUserService.GetProjectUserByUnitidAndProjectId(CurrUser.LoginProjectId, id, Const.HSSEManager);
|
||||
List<ListItem> lists = new List<ListItem>();
|
||||
foreach(var item in sysUser)
|
||||
{
|
||||
lists.Add(new ListItem(item.UserName, item.UserName));
|
||||
}
|
||||
drpHSE.Items.Clear();
|
||||
drpHSE.DataValueField = "Value";
|
||||
drpHSE.DataTextField = "Value";
|
||||
drpHSE.DataSource = lists;
|
||||
drpHSE.DataBind();
|
||||
|
||||
// }
|
||||
//}
|
||||
|
||||
//this.drpHSE.Items.Clear();
|
||||
//this.drpHSE.DataValueField = "UserId";
|
||||
//this.drpHSE.DataTextField = "UserId";
|
||||
//this.drpHSE.DataSource=BLL.ProjectUserService.GetProjectUserByProjectId(CurrUser.LoginProjectId, Const.HSSEManager);
|
||||
}
|
||||
|
||||
protected void drpPartInPersons_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.drpPartInPersons.SelectedValueArray = Funs.RemoveDropDownListNull(this.drpPartInPersons.SelectedValueArray);
|
||||
|
||||
@@ -489,28 +642,26 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
/// </summary>
|
||||
private void InitCheckItemSetDropDownList()
|
||||
{
|
||||
this.drpSupCheckItemSet.Items.Clear();
|
||||
this.drpCheckItem.Items.Clear();
|
||||
if (this.rbType.SelectedValue == "1")
|
||||
{
|
||||
this.drpSupCheckItemSet.SelectedIndex = 0;
|
||||
this.drpSupCheckItemSet.Readonly = true;
|
||||
Technique_CheckItemSetService.InitCheckItemSetNameDropDownList(this.drpCheckItem, "6", "0", false);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.drpSupCheckItemSet.Readonly = false;
|
||||
Technique_CheckItemSetService.InitCheckItemSetDropDownList(this.drpSupCheckItemSet, "2", "0", false);
|
||||
this.drpSupCheckItemSet.SelectedIndex = 0;
|
||||
Technique_CheckItemSetService.InitCheckItemSetNameDropDownList(this.drpCheckItem, "2", this.drpSupCheckItemSet.SelectedValue, false);
|
||||
}
|
||||
this.drpCheckItem.DataTextField = "RegisterTypesName";
|
||||
this.drpCheckItem.DataValueField = "RegisterTypesName";
|
||||
this.drpCheckItem.DataSource = BLL.HSSE_Hazard_HazardRegisterTypesService.GetHazardRegisterTypesList("1"); //安全巡检类型
|
||||
this.drpCheckItem.DataBind();
|
||||
//this.drpCheckItem.SelectedValue = null;
|
||||
ListItem[] item = new ListItem[4];
|
||||
|
||||
this.drpCheckItem.SelectedValue = null;
|
||||
}
|
||||
item[0] = new ListItem("低", "低");
|
||||
item[1] = new ListItem("一般", "一般");
|
||||
item[2] = new ListItem("较高", "较高");
|
||||
item[3] = new ListItem("高", "高");
|
||||
this.drpRiskLevel.DataValueField = "Value";
|
||||
this.drpRiskLevel.DataTextField = "Text";
|
||||
this.drpRiskLevel.DataSource = item;
|
||||
this.drpRiskLevel.DataBind();
|
||||
}
|
||||
|
||||
protected void drpCheckItem_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.drpCheckItem.SelectedValueArray = Funs.RemoveDropDownListNull(this.drpCheckItem.SelectedValueArray);
|
||||
// this.drpCheckItem.SelectedValueArray = Funs.RemoveDropDownListNull(this.drpCheckItem.SelectedValueArray);
|
||||
}
|
||||
|
||||
protected void Grid1_Sort(object sender, GridSortEventArgs e)
|
||||
@@ -522,10 +673,10 @@ namespace FineUIPro.Web.HSSE.Check
|
||||
if (checkSpecialDetails.Count() > 0)
|
||||
{
|
||||
this.drpSupCheckItemSet.Readonly = true;
|
||||
this.rbType.Readonly = true;
|
||||
this.drpType.Readonly = true;
|
||||
}
|
||||
|
||||
Grid1.DataSource = checkSpecialDetails;
|
||||
details = checkSpecialDetails;
|
||||
Grid1.DataSource = details;
|
||||
Grid1.DataBind();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user