2024-02-21 开车分包管理修改

This commit is contained in:
2024-02-21 15:13:54 +08:00
parent 9bf96a31db
commit 5378f1b26d
24 changed files with 801 additions and 124 deletions
@@ -226,5 +226,23 @@ namespace FineUIPro.Web.TestRun.DriverSub
}
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("DriverSubEdit.aspx?DriverSubPlanId={0}", Grid1.SelectedRowID, "编辑 - ")));
}
protected void btnProgress_OnClick(object sender, EventArgs e)
{
if (Grid1.SelectedRowIndexArray.Length == 0)
{
Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
return;
}
if (!DriverSubContactService.IsAllBidirectional(Grid1.SelectedRowID))
{
Alert.ShowInTop("请先进行选标确定中标单位!", MessageBoxIcon.Warning);
return;
}
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("DriverSubSetProgressEdit.aspx?DriverSubPlanId={0}", Grid1.SelectedRowID, "编辑 - ")));
}
}
}