20250618 检测单导入

This commit is contained in:
2025-06-18 15:21:55 +08:00
parent b4792934d7
commit a742019dfd
13 changed files with 1438 additions and 1 deletions
@@ -393,6 +393,7 @@ namespace FineUIPro.Web.HJGL.NDT
if (buttonList.Contains(BLL.Const.BtnSave))
{
this.btnEdit.Hidden = false;
this.btnDataIn.Hidden = false;
}
if (buttonList.Contains(BLL.Const.BtnAuditing))
{
@@ -1031,5 +1032,19 @@ namespace FineUIPro.Web.HJGL.NDT
InitTreeMenu();
}
#endregion
protected void btnDataIn_Click(object sender, EventArgs e)
{
if (this.tvControlItem.SelectedNode != null && this.tvControlItem.SelectedNode.CommandName == "委托单号")
{
string window = String.Format("NDTBatchImport.aspx?trustBatchId={0}", tvControlItem.SelectedNodeID, "导入 - ");
PageContext.RegisterStartupScript(Window1.GetSaveStateReference(this.hdTrustBatchId.ClientID)
+ Window1.GetShowReference(window));
}
else
{
ShowNotify("请选择委托单号!", MessageBoxIcon.Warning);
}
}
}
}