This commit is contained in:
佘春生 2024-05-25 17:32:16 +08:00
parent c0c2738e7f
commit e1a0c2d934
6 changed files with 217 additions and 229 deletions

Binary file not shown.

View File

@ -199,7 +199,7 @@
<f:Label ID="ddlReportCode" Label="<%$ Resources:Lan,DailyNumber %>" runat="server" <f:Label ID="ddlReportCode" Label="<%$ Resources:Lan,DailyNumber %>" runat="server"
LabelWidth="130px"> LabelWidth="130px">
</f:Label> </f:Label>
<f:Label ID="txtReportDate" Label="<%$ Resources:Lan,DailyDate %>" runat="server" <f:Label ID="txtWeldingDate" Label="<%$ Resources:Lan,WeldingDate %>" runat="server"
LabelWidth="130px"> LabelWidth="130px">
</f:Label> </f:Label>
<f:Label ID="ddlJointStatus" Label="<%$ Resources:Lan,WeldingJointStatus %>" runat="server" <f:Label ID="ddlJointStatus" Label="<%$ Resources:Lan,WeldingJointStatus %>" runat="server"

View File

@ -180,7 +180,7 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
if (dReport != null) if (dReport != null)
{ {
this.ddlReportCode.Text = dReport.WeldingDailyCode; this.ddlReportCode.Text = dReport.WeldingDailyCode;
this.txtReportDate.Text = string.Format("{0:yyyy-MM-dd}", dReport.WeldingDate); this.txtWeldingDate.Text = string.Format("{0:yyyy-MM-dd}", dReport.WeldingDate);
this.txtBackingWelder.Text = jointInfo.BackingWelderCode; this.txtBackingWelder.Text = jointInfo.BackingWelderCode;
this.txtBackingWelderName.Text = jointInfo.BackingWelderName; this.txtBackingWelderName.Text = jointInfo.BackingWelderName;
this.txtCoverWelder.Text = jointInfo.CoverWelderCode; this.txtCoverWelder.Text = jointInfo.CoverWelderCode;

View File

@ -474,13 +474,13 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
protected global::FineUIPro.Label ddlReportCode; protected global::FineUIPro.Label ddlReportCode;
/// <summary> /// <summary>
/// txtReportDate 控件。 /// txtWeldingDate 控件。
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// 自动生成的字段。 /// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks> /// </remarks>
protected global::FineUIPro.Label txtReportDate; protected global::FineUIPro.Label txtWeldingDate;
/// <summary> /// <summary>
/// ddlJointStatus 控件。 /// ddlJointStatus 控件。

View File

@ -489,6 +489,8 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
List<string> pipelineIdList = new List<string>(); List<string> pipelineIdList = new List<string>();
// 焊工资质不符合条件信息 // 焊工资质不符合条件信息
string eventArg = string.Empty; string eventArg = string.Empty;
// 焊工WPS验证
string errorCheck = string.Empty;
string installationId = string.Empty; string installationId = string.Empty;
string workAreaId = string.Empty; string workAreaId = string.Empty;
string unitId = string.Empty; string unitId = string.Empty;
@ -593,7 +595,7 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
{ {
var pipeline = from x in Funs.DB.Pipeline_Pipeline var pipeline = from x in Funs.DB.Pipeline_Pipeline
where x.ProjectId == this.CurrUser.LoginProjectId where x.ProjectId == this.CurrUser.LoginProjectId
&& x.InstallationId == insId && x.WorkAreaId==areaId && x.PipelineCode == ds.Tables[0].Rows[i]["管线号"].ToString() && x.InstallationId == insId && x.WorkAreaId == areaId && x.PipelineCode == ds.Tables[0].Rows[i]["管线号"].ToString()
select x; select x;
if (pipeline.Count() > 0) if (pipeline.Count() > 0)
@ -1040,7 +1042,7 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
} }
else else
{ {
if ((!string.IsNullOrEmpty(d.Material2Id) && steel.MaterialId!=d.Material2Id) if ((!string.IsNullOrEmpty(d.Material2Id) && steel.MaterialId != d.Material2Id)
&& (!string.IsNullOrEmpty(d.Material1Id) && steel.MaterialId != d.Material1Id)) && (!string.IsNullOrEmpty(d.Material1Id) && steel.MaterialId != d.Material1Id))
{ {
errorInfos += (i + 2) + "行,材质2[" + ds.Tables[0].Rows[i]["材质2"].ToString() + "]验证不一至;"; errorInfos += (i + 2) + "行,材质2[" + ds.Tables[0].Rows[i]["材质2"].ToString() + "]验证不一至;";
@ -1228,135 +1230,118 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
dayList.Add(d); dayList.Add(d);
// WPS焊工判断资质
// 判断资质
//if (welderQueIsUse == true)
//{
if (isExistFloor && isExistCell) if (isExistFloor && isExistCell)
{ {
var wps = BLL.WPQListServiceService.GetWPQById(d.WPQId); var wps = BLL.WPQListServiceService.GetWPQById(d.WPQId);
if (!wps.WelderIds.Contains(cellWelderId)) if (!wps.WelderIds.Contains(cellWelderId))
{ {
if (!eventArg.Contains(ds.Tables[0].Rows[i]["盖面焊工号"].ToString())) errorCheck += (i + 2) + "行,盖面焊工号:[" + ds.Tables[0].Rows[i]["盖面焊工号"].ToString() + "]验证无焊WPS资质";
{
eventArg = eventArg + ds.Tables[0].Rows[i]["盖面焊工号"].ToString() + ",";
}
} }
if (!wps.WelderIds.Contains(floorWelderId)) if (!wps.WelderIds.Contains(floorWelderId))
{ {
if (!eventArg.Contains(ds.Tables[0].Rows[i]["打底焊工号"].ToString())) errorCheck += (i + 2) + "行,打底焊工号:[" + ds.Tables[0].Rows[i]["打底焊工号"].ToString() + "]验证无焊WPS资质";
}
}
#region
// 判断资质
if (welderQueIsUse == true)
{ {
eventArg = eventArg + ds.Tables[0].Rows[i]["打底焊工号"].ToString() + ","; if (isExistFloor && isExistCell)
{
bool canSave = false;
var jot = BLL.Pipeline_WeldJointService.GetWeldJointByWeldJointId(jotId);
var joty = BLL.Base_WeldTypeService.GetWeldTypeByWeldTypeId(jot.WeldTypeId);
string weldTypeGroup = joty.Flag;
string weldTypeCode = joty.WeldTypeCode;
string floorWelder = floorWelderId;
string cellWelder = cellWelderId;
//decimal? dia = jot.Dia;
//decimal? sch = jot.Thickness;
string weldingMethodCode = string.Empty;
var wm = BLL.Base_WeldingMethodService.GetWeldingMethodByWeldingMethodId(jot.WeldingMethodId);
if (wm != null)
{
weldingMethodCode = wm.WeldingMethodCode;
} }
} string[] wmeCodes = weldingMethodCode.Split('+');
//}
string location = string.Empty;
var loc = BLL.Base_WeldingLocationServie.GetWeldingLocationById(jot.WeldingLocationId);
if (loc != null)
{
location = loc.WeldingLocationCode;
} }
#region ,WPS的焊工判断 string ste = jot.Material1Id;
//if (!string.IsNullOrEmpty(errorInfos))
//{
// ShowNotify(errorInfos, MessageBoxIcon.Warning, 10000);
// return;
//}
//else
//{
// // 判断资质
// if (welderQueIsUse == true)
// {
// if (isExistFloor && isExistCell)
// {
// bool canSave = false;
// var jot = BLL.Pipeline_WeldJointService.GetWeldJointByWeldJointId(jotId);
// var joty = BLL.Base_WeldTypeService.GetWeldTypeByWeldTypeId(jot.WeldTypeId);
// string weldTypeGroup = joty.Flag;
// string weldTypeCode = joty.WeldTypeCode;
// string floorWelder = floorWelderId;
// string cellWelder = cellWelderId;
// //decimal? dia = jot.Dia;
// //decimal? sch = jot.Thickness;
// string weldingMethodCode = string.Empty; List<Model.Welder_WelderQualify> floorWelderQualifys = (from x in Funs.DB.Welder_WelderQualify
// var wm = BLL.Base_WeldingMethodService.GetWeldingMethodByWeldingMethodId(jot.WeldingMethodId); where x.WelderId == floorWelder && x.WeldingMethodId != null
// if (wm != null) && x.WeldingLocationId != null && x.MaterialType != null
// { && x.WeldType != null
// weldingMethodCode = wm.WeldingMethodCode; && x.ThicknessMax != null && x.SizesMin != null
// } select x).ToList();
// string[] wmeCodes = weldingMethodCode.Split('+');
// string location = string.Empty; List<Model.Welder_WelderQualify> cellWelderQualifys = (from x in Funs.DB.Welder_WelderQualify
// var loc = BLL.Base_WeldingLocationServie.GetWeldingLocationById(jot.WeldingLocationId); where x.WelderId == cellWelder && x.WeldingMethodId != null
// if (loc != null) && x.WeldingLocationId != null && x.MaterialType != null
// { && x.WeldType != null
// location = loc.WeldingLocationCode; && x.ThicknessMax != null && x.SizesMin != null
// } select x).ToList();
// string ste = jot.Material1Id; // 打底和盖面同一焊工
if (floorWelder == cellWelder)
{
if (floorWelderQualifys != null && floorWelderQualifys.Count() > 0)
{
if (wmeCodes.Count() <= 1) // 一种焊接方法
{
canSave = IsOK(floorWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
}
else // 大于一种焊接方法,如氩电联焊
{
canSave = TwoWmeIsOK(floorWelderQualifys, cellWelderQualifys, wmeCodes[0], wmeCodes[1], location, weldTypeGroup, ste, dia, sch);
}
}
}
// 打底和盖面焊工不同
else
{
bool isok1 = false;
bool isok2 = false;
// List<Model.Welder_WelderQualify> floorWelderQualifys = (from x in Funs.DB.Welder_WelderQualify if (wmeCodes.Count() <= 1) // 一种焊接方法
// where x.WelderId == floorWelder && x.WeldingMethodId != null {
// && x.WeldingLocationId != null && x.MaterialType != null if (floorWelderQualifys != null && floorWelderQualifys.Count() > 0)
// && x.WeldType != null {
// && x.ThicknessMax != null && x.SizesMin != null isok1 = IsOK(floorWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
// select x).ToList(); }
if (cellWelderQualifys != null && cellWelderQualifys.Count() > 0)
{
isok2 = IsOK(cellWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
}
if (isok1 && isok2)
{
canSave = true;
}
}
else
{
canSave = TwoWmeIsOK(floorWelderQualifys, cellWelderQualifys, wmeCodes[0], wmeCodes[1], location, weldTypeGroup, ste, dia, sch);
}
}
// List<Model.Welder_WelderQualify> cellWelderQualifys = (from x in Funs.DB.Welder_WelderQualify if (canSave == false)
// where x.WelderId == cellWelder && x.WeldingMethodId != null {
// && x.WeldingLocationId != null && x.MaterialType != null eventArg = eventArg + jot.WeldJointCode + ",";
// && x.WeldType != null }
// && x.ThicknessMax != null && x.SizesMin != null }
// select x).ToList(); }
// // 打底和盖面同一焊工
// if (floorWelder == cellWelder)
// {
// if (floorWelderQualifys != null && floorWelderQualifys.Count() > 0)
// {
// if (wmeCodes.Count() <= 1) // 一种焊接方法
// {
// canSave = IsOK(floorWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
// }
// else // 大于一种焊接方法,如氩电联焊
// {
// canSave = TwoWmeIsOK(floorWelderQualifys, cellWelderQualifys, wmeCodes[0], wmeCodes[1], location, weldTypeGroup, ste, dia, sch);
// }
// }
// }
// // 打底和盖面焊工不同
// else
// {
// bool isok1 = false;
// bool isok2 = false;
// if (wmeCodes.Count() <= 1) // 一种焊接方法
// {
// if (floorWelderQualifys != null && floorWelderQualifys.Count() > 0)
// {
// isok1 = IsOK(floorWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
// }
// if (cellWelderQualifys != null && cellWelderQualifys.Count() > 0)
// {
// isok2 = IsOK(cellWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
// }
// if (isok1 && isok2)
// {
// canSave = true;
// }
// }
// else
// {
// canSave = TwoWmeIsOK(floorWelderQualifys, cellWelderQualifys, wmeCodes[0], wmeCodes[1], location, weldTypeGroup, ste, dia, sch);
// }
// }
// if (canSave == false)
// {
// eventArg = eventArg + jot.WeldJointCode + ",";
// }
// }
// }
//}
#endregion #endregion
} }
@ -1366,6 +1351,11 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
ShowNotify(errorInfos, MessageBoxIcon.Warning, 10000); ShowNotify(errorInfos, MessageBoxIcon.Warning, 10000);
return; return;
} }
else if (!string.IsNullOrEmpty(errorCheck))
{
ShowNotify(errorCheck+ "请更正后再提交保存", MessageBoxIcon.Warning, 10000);
return;
}
else else
{ {
// 焊工资质符全条件 // 焊工资质符全条件

View File

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Data; using System.Data;
using System.Linq; using System.Linq;
using BLL; using BLL;
using Model;
using Newtonsoft.Json.Linq; using Newtonsoft.Json.Linq;
namespace FineUIPro.Web.WeldingProcess.WeldingManage namespace FineUIPro.Web.WeldingProcess.WeldingManage
@ -323,14 +324,15 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
return; return;
} }
// 焊工资质 // 焊工合格项资质错误信息
string eventArg = string.Empty; string eventArg = string.Empty;
// 焊工WPS验证错误信息
// 验证错误
string errorCheck = string.Empty; string errorCheck = string.Empty;
// 日报信息验证错误信息
string errorInfos = string.Empty;
List<Model.SpWeldingDailyItem> GetWeldingDailyItem = this.CollectGridJointInfo(); List<Model.SpWeldingDailyItem> GetWeldingDailyItem = this.CollectGridJointInfo();
#region WPS验证 #region WPS验证
int rowIndex = 1; int rowIndex = 1;
foreach (var item in GetWeldingDailyItem) foreach (var item in GetWeldingDailyItem)
{ {
@ -342,38 +344,29 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
{ {
if (!wps.WelderIds.Contains(item.BackingWelderId)) if (!wps.WelderIds.Contains(item.BackingWelderId))
{ {
if (!eventArg.Contains(item.BackingWelderId)) errorCheck += rowIndex + "行,焊工:" + item.BackingWelderCode + "无WPS焊接资质";
{
eventArg += rowIndex + "行,焊工:" + item.BackingWelderCode + "无资质,";
}
} }
} }
else else
{ {
if (!wps.WelderIds.Contains(item.BackingWelderId)) if (!wps.WelderIds.Contains(item.BackingWelderId))
{ {
if (!eventArg.Contains(item.BackingWelderId)) errorCheck += rowIndex + "行,焊工:" + item.BackingWelderCode + "无WPS焊接资质";
{
eventArg += rowIndex + "行,焊工:" + item.BackingWelderCode + "无资质,";
}
} }
if (!wps.WelderIds.Contains(item.CoverWelderId)) if (!wps.WelderIds.Contains(item.CoverWelderId))
{ {
if (!eventArg.Contains(item.CoverWelderId)) errorCheck += rowIndex + "行,焊工:" + item.CoverWelderId + "无WPS焊接资质";
{
eventArg += rowIndex + "行,焊工:" + item.CoverWelderId + "无资质,";
}
} }
} }
// 验证数据是否一至 // 验证数据是否一至
if (!string.IsNullOrEmpty(item.WeldTypeId) && !string.IsNullOrEmpty(jot.WeldTypeId) && item.WeldTypeId != jot.WeldTypeId) if (!string.IsNullOrEmpty(item.WeldTypeId) && !string.IsNullOrEmpty(jot.WeldTypeId) && item.WeldTypeId != jot.WeldTypeId)
{ {
errorCheck += rowIndex + "行,焊缝类型:" + item.WeldTypeId + "验证不一至,"; errorInfos += rowIndex + "行,焊缝类型:" + item.WeldTypeId + "验证不一至,";
} }
if (!string.IsNullOrEmpty(item.JointAttribute) && !string.IsNullOrEmpty(jot.JointAttribute) && item.JointAttribute != jot.JointAttribute) if (!string.IsNullOrEmpty(item.JointAttribute) && !string.IsNullOrEmpty(jot.JointAttribute) && item.JointAttribute != jot.JointAttribute)
{ {
errorCheck += rowIndex + "行,焊口属性:" + item.JointAttribute + "验证不一至,"; errorInfos += rowIndex + "行,焊口属性:" + item.JointAttribute + "验证不一至,";
} }
//if (!string.IsNullOrEmpty(item.WeldingLocationId) && !string.IsNullOrEmpty(jot.WeldingLocationId) && item.WeldingLocationId != jot.WeldingLocationId) //if (!string.IsNullOrEmpty(item.WeldingLocationId) && !string.IsNullOrEmpty(jot.WeldingLocationId) && item.WeldingLocationId != jot.WeldingLocationId)
@ -383,12 +376,12 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
if (item.Size!=null && jot.Size!=null && item.Size != jot.Size) if (item.Size!=null && jot.Size!=null && item.Size != jot.Size)
{ {
errorCheck += rowIndex + "行,管径:" + item.JointAttribute + "验证不一至,"; errorInfos += rowIndex + "行,管径:" + item.JointAttribute + "验证不一至,";
} }
if (!string.IsNullOrEmpty(item.ANSISCH) && !string.IsNullOrEmpty(jot.ANSISCH) && item.ANSISCH != jot.ANSISCH) if (!string.IsNullOrEmpty(item.ANSISCH) && !string.IsNullOrEmpty(jot.ANSISCH) && item.ANSISCH != jot.ANSISCH)
{ {
errorCheck += rowIndex + "行,美标壁厚:" + item.ANSISCH + "验证不一至,"; errorInfos += rowIndex + "行,美标壁厚:" + item.ANSISCH + "验证不一至,";
} }
//if (!string.IsNullOrEmpty(item.MaterialId1) && !string.IsNullOrEmpty(jot.Material1Id) && jot.Material1Id != item.MaterialId1) //if (!string.IsNullOrEmpty(item.MaterialId1) && !string.IsNullOrEmpty(jot.Material1Id) && jot.Material1Id != item.MaterialId1)
@ -401,11 +394,11 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
//} //}
if (!string.IsNullOrEmpty(item.Components1Id) && !string.IsNullOrEmpty(jot.PipeAssembly1Id) && jot.PipeAssembly1Id != item.Components1Id) if (!string.IsNullOrEmpty(item.Components1Id) && !string.IsNullOrEmpty(jot.PipeAssembly1Id) && jot.PipeAssembly1Id != item.Components1Id)
{ {
errorCheck += rowIndex + "行组件1" + item.Components1Code + "验证不一至,"; errorInfos += rowIndex + "行组件1" + item.Components1Code + "验证不一至,";
} }
if (!string.IsNullOrEmpty(item.Components2Id) && !string.IsNullOrEmpty(jot.PipeAssembly2Id) && jot.PipeAssembly2Id != item.Components2Id) if (!string.IsNullOrEmpty(item.Components2Id) && !string.IsNullOrEmpty(jot.PipeAssembly2Id) && jot.PipeAssembly2Id != item.Components2Id)
{ {
errorCheck += rowIndex + "行组件2" + item.Components2Code + "验证不一至,"; errorInfos += rowIndex + "行组件2" + item.Components2Code + "验证不一至,";
} }
//if (!string.IsNullOrEmpty(item.HeartNo1) && !string.IsNullOrEmpty(jot.HeartNo1) && jot.HeartNo1 != item.HeartNo1) //if (!string.IsNullOrEmpty(item.HeartNo1) && !string.IsNullOrEmpty(jot.HeartNo1) && jot.HeartNo1 != item.HeartNo1)
@ -418,7 +411,7 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
//} //}
if (!string.IsNullOrEmpty(item.PipeSegment) && !string.IsNullOrEmpty(jot.PipeSegment) && jot.PipeSegment != item.PipeSegment) if (!string.IsNullOrEmpty(item.PipeSegment) && !string.IsNullOrEmpty(jot.PipeSegment) && jot.PipeSegment != item.PipeSegment)
{ {
errorCheck += rowIndex + "行,所属管段:" + item.PipeSegment + "验证不一至,"; errorInfos += rowIndex + "行,所属管段:" + item.PipeSegment + "验证不一至,";
} }
//if (!string.IsNullOrEmpty(item.WPQId) && !string.IsNullOrEmpty(jot.WPQId) && jot.WPQId != item.WPQId) //if (!string.IsNullOrEmpty(item.WPQId) && !string.IsNullOrEmpty(jot.WPQId) && jot.WPQId != item.WPQId)
//{ //{
@ -429,99 +422,99 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
} }
#endregion #endregion
#region #region
//// 焊工资质 // 焊工资质
//foreach (var item in GetWeldingDailyItem) foreach (var item in GetWeldingDailyItem)
{
bool canSave = false;
var jot = BLL.Pipeline_WeldJointService.GetWeldJointByWeldJointId(item.WeldJointId);
var joty = BLL.Base_WeldTypeService.GetWeldTypeByWeldTypeId(jot.WeldTypeId);
string weldTypeGroup = joty.Flag;
string weldTypeCode = joty.WeldTypeCode;
string floorWelder = item.BackingWelderId;
string cellWelder = item.CoverWelderId;
decimal? dia = item.Dia;
decimal? sch = item.Thickness;
//string wme = item.WeldingMethodCode;
//string wmeCode = string.Empty;
//var wm = BLL.HJGL_WeldingMethodService.GetWeldMethodByWMEID(item.WME_ID);
//if (wm != null)
//{ //{
// bool canSave = false; // wmeCode = wm.WME_Code;
// var jot = BLL.Pipeline_WeldJointService.GetWeldJointByWeldJointId(item.WeldJointId);
// var joty = BLL.Base_WeldTypeService.GetWeldTypeByWeldTypeId(jot.WeldTypeId);
// string weldTypeGroup = joty.Flag;
// string weldTypeCode = joty.WeldTypeCode;
// string floorWelder = item.BackingWelderId;
// string cellWelder = item.CoverWelderId;
// decimal? dia = item.Dia;
// decimal? sch = item.Thickness;
// //string wme = item.WeldingMethodCode;
// //string wmeCode = string.Empty;
// //var wm = BLL.HJGL_WeldingMethodService.GetWeldMethodByWMEID(item.WME_ID);
// //if (wm != null)
// //{
// // wmeCode = wm.WME_Code;
// //}
// string[] wmeCodes = item.WeldingMethodCode.Split('+');
// string location = item.WeldingLocationCode;
// string ste = jot.Material1Id;
// var projectWelder = BLL.Welder_ProjectWelderService.GetProjectWelderByProjectIdAndWelderId(this.ProjectId,item.BackingWelderId);
// var projectUnit = BLL.Project_UnitService.GetProject_UnitByProjectIdUnitId(this.ProjectId,projectWelder.UnitId);
// if (projectUnit != null && projectUnit.WelderQueIsUse == true)
// {
// List<Model.Welder_WelderQualify> floorWelderQualifys = (from x in Funs.DB.Welder_WelderQualify
// where x.WelderId == floorWelder && x.WeldingMethodId != null
// && x.WeldingLocationId != null && x.MaterialType != null
// && x.WeldType != null
// && x.ThicknessMax != null && x.SizesMin != null
// select x).ToList();
// List<Model.Welder_WelderQualify> cellWelderQualifys = (from x in Funs.DB.Welder_WelderQualify
// where x.WelderId == cellWelder && x.WeldingMethodId != null
// && x.WeldingLocationId != null && x.MaterialType != null
// && x.WeldType != null
// && x.ThicknessMax != null && x.SizesMin != null
// select x).ToList();
// // 打底和盖面同一焊工
// if (floorWelder == cellWelder)
// {
// if (floorWelderQualifys != null && floorWelderQualifys.Count() > 0)
// {
// if (wmeCodes.Count() <= 1) // 一种焊接方法
// {
// canSave = IsOK(floorWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
// }
// else // 大于一种焊接方法,如氩电联焊
// {
// canSave = TwoWmeIsOK(floorWelderQualifys, cellWelderQualifys, wmeCodes[0], wmeCodes[1], location, weldTypeGroup, ste, dia, sch);
// }
// }
// }
// // 打底和盖面焊工不同
// else
// {
// bool isok1 = false;
// bool isok2 = false;
// if (wmeCodes.Count() <= 1) // 一种焊接方法
// {
// if (floorWelderQualifys != null && floorWelderQualifys.Count() > 0)
// {
// isok1 = IsOK(floorWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
// }
// if (cellWelderQualifys != null && cellWelderQualifys.Count() > 0)
// {
// isok2 = IsOK(cellWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
// }
// if (isok1 && isok2)
// {
// canSave = true;
// }
// }
// else
// {
// canSave = TwoWmeIsOK(floorWelderQualifys, cellWelderQualifys, wmeCodes[0], wmeCodes[1], location, weldTypeGroup, ste, dia, sch);
// }
// }
// }
// else
// {
// canSave = true;
// }
// if (canSave == false)
// {
// eventArg = eventArg + jot.WeldJointCode + ",";
// }
//} //}
string[] wmeCodes = item.WeldingMethodCode.Split('+');
string location = item.WeldingLocationCode;
string ste = jot.Material1Id;
var projectWelder = BLL.Welder_ProjectWelderService.GetProjectWelderByProjectIdAndWelderId(this.ProjectId, item.BackingWelderId);
var projectUnit = BLL.Project_UnitService.GetProject_UnitByProjectIdUnitId(this.ProjectId, projectWelder.UnitId);
if (projectUnit != null && projectUnit.WelderQueIsUse == true)
{
List<Model.Welder_WelderQualify> floorWelderQualifys = (from x in Funs.DB.Welder_WelderQualify
where x.WelderId == floorWelder && x.WeldingMethodId != null
&& x.WeldingLocationId != null && x.MaterialType != null
&& x.WeldType != null
&& x.ThicknessMax != null && x.SizesMin != null
select x).ToList();
List<Model.Welder_WelderQualify> cellWelderQualifys = (from x in Funs.DB.Welder_WelderQualify
where x.WelderId == cellWelder && x.WeldingMethodId != null
&& x.WeldingLocationId != null && x.MaterialType != null
&& x.WeldType != null
&& x.ThicknessMax != null && x.SizesMin != null
select x).ToList();
// 打底和盖面同一焊工
if (floorWelder == cellWelder)
{
if (floorWelderQualifys != null && floorWelderQualifys.Count() > 0)
{
if (wmeCodes.Count() <= 1) // 一种焊接方法
{
canSave = IsOK(floorWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
}
else // 大于一种焊接方法,如氩电联焊
{
canSave = TwoWmeIsOK(floorWelderQualifys, cellWelderQualifys, wmeCodes[0], wmeCodes[1], location, weldTypeGroup, ste, dia, sch);
}
}
}
// 打底和盖面焊工不同
else
{
bool isok1 = false;
bool isok2 = false;
if (wmeCodes.Count() <= 1) // 一种焊接方法
{
if (floorWelderQualifys != null && floorWelderQualifys.Count() > 0)
{
isok1 = IsOK(floorWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
}
if (cellWelderQualifys != null && cellWelderQualifys.Count() > 0)
{
isok2 = IsOK(cellWelderQualifys, wmeCodes[0], location, weldTypeGroup, ste, dia, sch);
}
if (isok1 && isok2)
{
canSave = true;
}
}
else
{
canSave = TwoWmeIsOK(floorWelderQualifys, cellWelderQualifys, wmeCodes[0], wmeCodes[1], location, weldTypeGroup, ste, dia, sch);
}
}
}
else
{
canSave = true;
}
if (canSave == false)
{
eventArg = eventArg + jot.WeldJointCode + ",";
}
}
#endregion #endregion
#region 线 #region 线
@ -725,7 +718,12 @@ namespace FineUIPro.Web.WeldingProcess.WeldingManage
//} //}
#endregion #endregion
if (!string.IsNullOrEmpty(errorCheck)) if (!string.IsNullOrEmpty(errorInfos))
{
ShowNotify(errorInfos, MessageBoxIcon.Warning, 10000);
return;
}
else if (!string.IsNullOrEmpty(errorCheck))
{ {
errorCheck = errorCheck + "请更正后再提交保存"; errorCheck = errorCheck + "请更正后再提交保存";
ShowNotify(errorCheck, MessageBoxIcon.Warning, 10000); ShowNotify(errorCheck, MessageBoxIcon.Warning, 10000);