From 99ddfbcecf0fa2881eb3a91028257eef87dab6de Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期三, 14 五月 2025 08:46:06 +0800 Subject: [PATCH] 用例注册 --- CY_ECommercePlatform/CY.WebForm/Pages/work/RequestReplyAdd.aspx.cs | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/CY_ECommercePlatform/CY.WebForm/Pages/work/RequestReplyAdd.aspx.cs b/CY_ECommercePlatform/CY.WebForm/Pages/work/RequestReplyAdd.aspx.cs index 5e370b4..01ef6e9 100644 --- a/CY_ECommercePlatform/CY.WebForm/Pages/work/RequestReplyAdd.aspx.cs +++ b/CY_ECommercePlatform/CY.WebForm/Pages/work/RequestReplyAdd.aspx.cs @@ -26,6 +26,7 @@ OA_FukuanshenqingBLL _oA_FukuanshenqingBLL = null; EC_MemberBasicBLL _eC_MemberBasicBLL = null; public string planDataType = ""; + OA_WorkPlan_attachmentBLL oA_WorkPlan_AttachmentBLL = null; public RequestReplyAdd() { oA_WorkReminderBll = new OA_WorkPlanBll(); @@ -33,6 +34,7 @@ _eC_OrderBLL = new EC_OrderBLL(); _oA_FukuanshenqingBLL = new OA_FukuanshenqingBLL(); _eC_MemberBasicBLL = new EC_MemberBasicBLL(); + oA_WorkPlan_AttachmentBLL = new OA_WorkPlan_attachmentBLL(); } //椤甸潰鍔犺浇 @@ -64,6 +66,17 @@ this.spanPlanTitle.InnerText = m_OA_WorkPlan.PlanTitle.ToString(); this.spanPlanContent.InnerText = m_OA_WorkPlan.PlanContent.ToString(); this.spanShoukuandanwei.InnerText = m_OA_WorkPlan.PlanComplany; + + if (m_OA_WorkPlan.PlanDataType == 14) + { + this.RepClientList.DataSource = oA_WorkPlan_AttachmentBLL.GetModelByKaipiaoIdandType(Request["keyid"].ToInt32().Value, 14); + this.RepClientList.DataBind(); + } + else if (m_OA_WorkPlan.PlanDataType == 15) + { + this.RepClientList.DataSource = oA_WorkPlan_AttachmentBLL.GetModelByKaipiaoIdandType(Request["keyid"].ToInt32().Value, 15); + this.RepClientList.DataBind(); + } } } -- Gitblit v1.9.1