username@email.com
2025-03-13 0fb5eab0d6787922d3e915543e95fe5073d767ff
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
            {