username@email.com
2025-12-24 ea71208bf0d457f948edb7d16b29f94ae5dd3def
CY_ECommercePlatform/CY.WebForm/Pages/business/DeliverPlanFujianShow.aspx.cs
@@ -30,13 +30,15 @@
            Guid Keyid = Request["Keyid"].ToGuid2();
            string AttachmentType = Request["AttachmentType"];
            if (Keyid == null)
            {
                JavaScript.MessageBox("未找到该客户", this, false, false);
                return;
            }
            Database DC = new Database();
            string sqlStr = string.Format(@"     select * from  [dbo].[OA_attachment] where [OA_Id]='{0}' and [AttachmentType]=3 order by [CreateTime]   ", Keyid);
            string sqlStr = string.Format(@"     select * from  [dbo].[OA_attachment] where [OA_Id]='{0}' and [AttachmentType]={1} order by [CreateTime]   ", Keyid, AttachmentType);
            int count = 0;
            try
            {