2022-11-03 焊接修改,二次焊口设计增加新增焊口类型
This commit is contained in:
@@ -37,6 +37,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||
BLL.Base_WeldingMethodService.InitWeldingMethodDropDownList(this.drpWeldingMethodId, true, "请选择");//焊接方法
|
||||
BLL.Base_ConsumablesService.InitConsumablesDropDownList(this.drpWeldingRod, true, "2", "请选择");//焊丝类型
|
||||
BLL.Base_ConsumablesService.InitConsumablesDropDownList(this.drpWeldingWire, true, "1", "请选择");//焊条类型
|
||||
Funs.FineUIPleaseSelect(DropTwoJointType, "请选择");
|
||||
|
||||
// 焊口属性
|
||||
this.drpJointAttribute.DataTextField = "Text";
|
||||
@@ -98,6 +99,10 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||
{
|
||||
drpWeldTypeCode.SelectedValue = joint.WeldTypeId;
|
||||
}
|
||||
if (!string.IsNullOrEmpty(joint.TwoJointType))
|
||||
{
|
||||
DropTwoJointType.SelectedValue = joint.TwoJointType;
|
||||
}
|
||||
if (!string.IsNullOrEmpty(joint.DetectionTypeId))
|
||||
{
|
||||
List<Model.Base_DetectionType> dList = new List<Model.Base_DetectionType>();
|
||||
@@ -319,6 +324,10 @@ namespace FineUIPro.Web.HJGL.WeldingManage
|
||||
{
|
||||
joint.WeldTypeId = drpWeldTypeCode.SelectedValue;
|
||||
}
|
||||
if (this.DropTwoJointType.SelectedValue != BLL.Const._Null)
|
||||
{
|
||||
joint.TwoJointType = DropTwoJointType.SelectedValue;
|
||||
}
|
||||
joint.PreTemperature = this.txtPreTemperature.Text;
|
||||
joint.Specification = this.txtSpecification.Text;
|
||||
//var DetectionType = BLL.Base_DetectionTypeService.GetDetectionTypeIdByDetectionTypeCode(this.txtDetectionTypeId.Text.Trim());
|
||||
|
||||
Reference in New Issue
Block a user