修改施工日志

This commit is contained in:
2023-10-23 17:27:46 +08:00
parent 39a74d8b28
commit 9151662ffd
4 changed files with 23 additions and 1 deletions
@@ -1283,5 +1283,14 @@ namespace FineUIPro.Web.PZHGL.InformationProject
Alert.ShowInTop("请选择合同编号和专业工程!", MessageBoxIcon.Warning);
}
}
protected void imgBtnFile_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(this.hdConstructionLogId.Text)) //新增记录
{
this.hdConstructionLogId.Text = SQLHelper.GetNewID();
}
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type={0}&toKeyId={1}&path=FileUpload/ConstructionLog&menuId={2}", 0, this.hdConstructionLogId.Text, BLL.Const.ConstructionLogMenuId)));
}
}
}