提交代码

This commit is contained in:
2023-12-01 17:52:12 +08:00
parent 877a874667
commit 01f0e4167b
2 changed files with 22 additions and 21 deletions
@@ -20,7 +20,7 @@ namespace FineUIPro.Web.HJGL.WeldingManage
{ {
this.ddlPageSize.SelectedValue = this.Grid1.PageSize.ToString(); this.ddlPageSize.SelectedValue = this.Grid1.PageSize.ToString();
Funs.FineUIPleaseSelect(DropTwoJointType, "请选择"); Funs.FineUIPleaseSelect(DropTwoJointType, "请选择");
BLL.UnitService.InitUnitByProjectIdUnitTypeDropDownList(drpUnit, this.CurrUser.LoginProjectId, Const.ProjectUnitType_2, true); //BLL.UnitService.InitUnitByProjectIdUnitTypeDropDownList(drpUnit, this.CurrUser.LoginProjectId, Const.ProjectUnitType_2, true);
this.InitTreeMenu();//加载树 this.InitTreeMenu();//加载树
} }
@@ -613,6 +613,10 @@ namespace FineUIPro.Web.HJGL.WeldingManage
{ {
BLL.WeldTaskService.UpdateCanWelderTask(weldTaskId, canWelderId.Substring(0, canWelderId.Length - 1), canWelderCode.Substring(0, canWelderCode.Length - 1)); BLL.WeldTaskService.UpdateCanWelderTask(weldTaskId, canWelderId.Substring(0, canWelderId.Length - 1), canWelderCode.Substring(0, canWelderCode.Length - 1));
} }
//GetCanWelderDropDownList(GetWeldingTaskList);
}
DateTime? taskTime = null; DateTime? taskTime = null;
if (tvControlItem.SelectedNodeID.Contains("|")) if (tvControlItem.SelectedNodeID.Contains("|"))
{ {
@@ -632,9 +636,6 @@ namespace FineUIPro.Web.HJGL.WeldingManage
GetWeldingTaskList = BLL.WeldTaskService.GetWeldingTaskList(this.CurrUser.LoginProjectId, tvControlItem.SelectedNodeID, Convert.ToDateTime(hdTaskWeldJoint.Text), this.rbIsAudit.SelectedValue); GetWeldingTaskList = BLL.WeldTaskService.GetWeldingTaskList(this.CurrUser.LoginProjectId, tvControlItem.SelectedNodeID, Convert.ToDateTime(hdTaskWeldJoint.Text), this.rbIsAudit.SelectedValue);
} }
this.BindGrid(GetWeldingTaskList); this.BindGrid(GetWeldingTaskList);
//GetCanWelderDropDownList(GetWeldingTaskList);
}
Alert.ShowInTop("已生成可焊焊工!", MessageBoxIcon.Success); Alert.ShowInTop("已生成可焊焊工!", MessageBoxIcon.Success);
} }