username@email.com
2025-05-14 99ddfbcecf0fa2881eb3a91028257eef87dab6de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
using CY.Infrastructure.Common;
using CY.Infrastructure.Logging;
using CY.SQLDAL;
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using static CY.WebForm.MainPage;
using CY.Model.OA;
using CY.WebForm.Helper;
using CY.Infrastructure.Query;
using System.IO;
 
namespace CY.WebForm.Pages.business
{
    public partial class OrderUpLoadLiuyang : BasePage
    {
 
        
        /// <summary>
        /// 选择文件
        /// </summary>
        List<HttpFileCollection> SelFile { set; get; }
        /// <summary>
        /// 留样附件集合
        /// </summary>
        List<EC_OrderLiuyang> fileDataList { set; get; } = new List<EC_OrderLiuyang>();
        /// <summary>
        /// 附件个数
        /// </summary>
        public int  FileCount { get; set; }
        protected void Page_Load(object sender, EventArgs e)
        {
            UCPager1.AspNetPager.PageSize=5;
            UCPager1.AspNetPager.PageChanged += AspNetPager1_PageChanged;
 
            
            
                if (Request["deleteKeyIds"] != null&& Request["deleteKeyIds"]!="")
            {
                if (Request["deleteKeyIds"] == "all")
                {
                    //删除说有页面
                    string keyid = Request["deleteKeyIds"].ToString();
                    string pageID = Request["Keyid"];
                    Database DC = new Database();
                    string sqlStr = string.Format(@" select  [Keyid],[orderid],[FileName],[FilePath],[Remark],[Creater],[CreateTime],[Updater],[LastUpdateTime] FROM [ECTEST].[dbo].[EC_OrderLiuyang] where [orderid]={0} ORDER BY [CreateTime] ", pageID);
 
 
                    try
                    {
                        SqlCommand myCmd = new SqlCommand(sqlStr, DC.Connection);
                        //SqlDataAdapter myDa = new SqlDataAdapter(myCmd);
                        var a = myCmd.ExecuteReader();
                        //myDa.Dispose();
                        fileDataList = new List<EC_OrderLiuyang>();
                        EC_OrderLiuyang Contract;
                        while (a.Read())
                        {   //注意如何将每次读取到的记录添加到listbox1中(因为第一次做时出错了,嘿嘿)
                            Contract = new EC_OrderLiuyang();
                            Contract.Keyid = a.GetGuid(0);
                            Contract.orderid = a.GetInt32(1);
                            Contract.FileName = a.GetString(2);
                            Contract.FilePath = a.GetString(3);
                            Contract.Remark = a.GetString(4);
 
 
                            fileDataList.Add(Contract);
                        }
                        a.Close();     //关闭sqldatareader
                        if (fileDataList.Count > 0)
                        {
                            foreach (var item in fileDataList)
                            {
                                FileInfo file = new FileInfo(Server.MapPath(item.FilePath));//指定文件路径
                                if (file.Exists)//判断文件是否存在
                                {
                                    file.Attributes = FileAttributes.Normal;//将文件属性设置为普通,比方说只读文件设置为普通
                                    file.Delete();//删除文件
                                }
                                sqlStr = string.Format(@" DELETE FROM [dbo].[EC_OrderLiuyang] where Keyid='{0}'", item.Keyid);
                                myCmd = new SqlCommand(sqlStr, DC.Connection);
                                myCmd.ExecuteNonQuery();
                                myCmd.Dispose();
                            }
                          
                        }
                    
                        JavaScript.MessageBox("删除成功", this);
                        //  Response.Redirect("/Pages/business/OrderUpLoadLiuyang.aspx");
                    }
                    catch (Exception ee)
                    {
                        new Log4NetAdapter().Log("查找留样出错:" + ee.Message);
                        JavaScript.MessageBox("删除失败", this);
 
                    }
                    finally
                    {
                        if (DC.Connection.State != System.Data.ConnectionState.Closed)
                            DC.Connection.Close();
                    }
 
 
 
                }
                else
                {
                    //删除页面
                    string keyid = Request["deleteKeyIds"].ToString();
 
                    string orderid = Request["Keyid"].ToString(); 
 
                    Database DC = new Database();
                    string sqlStr = string.Format(@" select [Keyid],[orderid],[FileName],[FilePath],[Remark],[Creater],[CreateTime],[Updater],[LastUpdateTime] FROM [ECTEST].[dbo].[EC_OrderLiuyang] where Keyid='{0}'ORDER BY [CreateTime] ", keyid);
 
 
                    try
                    {
                        SqlCommand myCmd = new SqlCommand(sqlStr, DC.Connection);
                        //SqlDataAdapter myDa = new SqlDataAdapter(myCmd);
                        var a = myCmd.ExecuteReader();
                        //myDa.Dispose();
                        fileDataList = new List<EC_OrderLiuyang>();
                        EC_OrderLiuyang Contract;
                        while (a.Read())
                        {   //注意如何将每次读取到的记录添加到listbox1中(因为第一次做时出错了,嘿嘿)
                            Contract = new EC_OrderLiuyang();
                            Contract.Keyid = a.GetGuid(0);
                            Contract.orderid = a.GetInt32(1);
                            Contract.FileName = a.GetString(2);
                            Contract.FilePath = a.GetString(3);
                            Contract.Remark = a.GetString(4);
 
 
                            fileDataList.Add(Contract);
                        }
                        a.Close();     //关闭sqldatareader
                        if (fileDataList.Count > 0)
                        {
                            FileInfo file = new FileInfo(Server.MapPath(fileDataList[0].FilePath));//指定文件路径
                            if (file.Exists)//判断文件是否存在
                            {
                                file.Attributes = FileAttributes.Normal;//将文件属性设置为普通,比方说只读文件设置为普通
                                file.Delete();//删除文件
                            }
                        }
                        sqlStr = string.Format(@" DELETE FROM [dbo].[EC_OrderLiuyang] where Keyid='{0}'", keyid);
                        myCmd = new SqlCommand(sqlStr, DC.Connection);
                        myCmd.ExecuteNonQuery();
                        //if (fileDataList.Count<=1)
                        //{
                        //    sqlStr = string.Format(@"  update [EC_OrderBasic]        set [LiuyangStatus] =     0  where [Keyid]=  {0}   ", orderid);
                        //    myCmd = new SqlCommand(sqlStr, DC.Connection);
                        //    myCmd.ExecuteNonQuery();
                        //}
                        JavaScript.MessageBox("删除成功", this);
                        //  Response.Redirect("/Pages/business/OrderUpLoadLiuyang.aspx");
                    }
                    catch (Exception ee)
                    {
                        new Log4NetAdapter().Log("查找留样出错:" + ee.Message);
                        JavaScript.MessageBox("删除失败", this);
 
                    }
                    finally
                    {
                        if (DC.Connection.State != System.Data.ConnectionState.Closed)
                            DC.Connection.Close();
                    }
                }
 
                Response.AppendHeader("deleteKeyIds", "");
 
            }
              
            if (!IsPostBack)
                BindList();
           
        }
        public Guid GetKeyid()
        {
            return Request["Keyid"].ToGuid2();
        }
        //绑定列表
        private void BindList()
        {
 
             
            Pagination pa = new Pagination();
            pa.PageSize = UCPager1.AspNetPager.PageSize;
            pa.PageIndex = UCPager1.AspNetPager.CurrentPageIndex;
            int Keyid = Request["Keyid"].ToInt32().Value ;
        
               if(Keyid==0)
            {
                JavaScript.MessageBox("未找到该客户", this, false, false);
                return;
            }
            Database DC = new Database();
            string sqlStr =string.Format(@"    select * from (select ROW_NUMBER() OVER(Order by CreateTime ) AS RowNumber,* from [dbo].[EC_OrderLiuyang] where orderid='{0}' ) as b where b.RowNumber BETWEEN ({1}-1)*({2})+1 and {1}*{2} order by CreateTime  ", Keyid,pa.PageIndex,pa.PageSize);
            int count = 0;
            try
            {
                SqlCommand myCmd = new SqlCommand(sqlStr, DC.Connection);
                //SqlDataAdapter myDa = new SqlDataAdapter(myCmd);
                var  a = myCmd.ExecuteReader();
                //myDa.Dispose();
                fileDataList = new List <EC_OrderLiuyang>();
                EC_OrderLiuyang Contract ;
                while (a.Read())
                {   //注意如何将每次读取到的记录添加到listbox1中(因为第一次做时出错了,嘿嘿)
                    Contract = new EC_OrderLiuyang();
                    Contract.Keyid = a.GetGuid(1);
                    Contract.orderid = a.GetInt32(2);
                    Contract.FileName = a.GetString(3);
                    Contract.FilePath = a.GetString(4);
                    Contract.Remark = a.GetString(5);
 
 
                    fileDataList.Add(Contract);
                }
                a.Close();     //关闭sqldatareader
                sqlStr = string.Format("select  count(*) from [dbo].[EC_OrderLiuyang] where orderid='{0}'", Keyid);
                myCmd = new SqlCommand(sqlStr, DC.Connection);
                count = (int)myCmd.ExecuteScalar();
 
 
            }
            catch (Exception ee)
            {
                new Log4NetAdapter().Log("查找留样出错:" + ee.Message);
 
            }
            finally
            {
                if (DC.Connection.State != System.Data.ConnectionState.Closed)
                    DC.Connection.Close();
            }
 
 
 
            FileCount = fileDataList.Count;
 
            this.RepClientList.DataSource = fileDataList;// fileDataList.AsEnumerable<EC_OrderLiuyang>();
 
            this.RepClientList.DataBind();
 
            UCPager1.AspNetPager.RecordCount = count;
        }
        //分页事件
        protected void AspNetPager1_PageChanged(object src, EventArgs e)
        {
            BindList();
        }
 
        protected void btn_Submit_Click_multi(object sender, EventArgs e)
        {
 
            var files = Request.Files;
            //if (files.Count <= 0)
            //    return;
            HttpPostedFile postedFile;
            List<HttpPostedFile> fileList = new List<HttpPostedFile>();
 
 
            for (int i=0;i< files.Count;i++)
            {
              
                if (files.Keys[i]=="file2")
                {
                    postedFile = files[i];
                    if (postedFile.ContentLength == 0)
                        continue;
                    fileList.Add(postedFile);
                }
                
            }
 
            upLoadLiuyangFile uploadContract = new upLoadLiuyangFile();
            EC_OrderLiuyang contract = null;
            //Guid? g = null;
            foreach (var item in fileList)
            {
 
                //int page = 0;
                //try
                //{
                //    page = pagecount(item);
                //}
                //catch (Exception)
                //{
 
                //    continue;
                //}
                //try
                //{
                //    g = GetContractFileID(page);
                //}
                //catch (Exception)
                //{
 
                //    continue;
                //}
               
                //uploadContract = new upLoadLiuyangFile();
                //if (g != null)
                //{
 
                //    try
                //    {
                //        uploadContract.SavAndUpDataContractFile(item, CountractFileKeiId: g);
 
                //        JavaScript.MessageBoxandhideLoadingIndicator( "上传文件成功", this);
                //        //JavaScript.RefreshSelf(this);
                //        //JavaScript.RefreshOpener(this);
                       
                //    }
                //    catch (Exception)
                //    {
                //        JavaScript.MessageBoxandhideLoadingIndicator("上传文件失败", this);
                //        // JavaScript.RefreshSelf(this);
                //        //JavaScript.RefreshOpener(this);
                      
 
                //    }
 
                //    continue;
                //}
 
                //新建走下面页面
                 contract = new EC_OrderLiuyang
                 {
                     orderid = Request["Keyid"].ToInt32().Value,
                    FileName = System.IO.Path.GetFileName(item.FileName),
                    Creater = CurrentUser.TrueMemberId,
 
                };
 
 
 
                try
                {
                    uploadContract.SavAndUpDataContractFile(item, contract);
 
                    JavaScript.MessageBox("上传文件成功", this);
                   
                   
                }
                catch (Exception)
                {
                    JavaScript.MessageBox( "上传文件失败", this);
                  
 
                }
 
 
            }
            BindList();
               
 
 
           
 
        }
        protected void btn_Submit_Click_DELLALL(object sender, EventArgs e)
        {
 
          
            string pageID = Request["Keyid"];
            Database DC = new Database();
            string sqlStr = string.Format(@"  SELECT   [Keyid],[orderid],[FileName],[FilePath],[Remark],[Creater],[CreateTime],[Updater],[LastUpdateTime] FROM [ECTEST].[dbo].[EC_OrderLiuyang]   where orderid={0} ORDER BY CreateTime ", pageID);
 
 
            try
            {
                SqlCommand myCmd = new SqlCommand(sqlStr, DC.Connection);
                //SqlDataAdapter myDa = new SqlDataAdapter(myCmd);
                var a = myCmd.ExecuteReader();
                //myDa.Dispose();
                fileDataList = new List<EC_OrderLiuyang>();
                EC_OrderLiuyang Contract;
                while (a.Read())
                {   //注意如何将每次读取到的记录添加到listbox1中(因为第一次做时出错了,嘿嘿)
                    Contract = new EC_OrderLiuyang();
                    Contract.Keyid = a.GetGuid(0);
                    Contract.orderid = a.GetInt32(1);
                    Contract.FileName = a.GetString(2);
                    Contract.FilePath = a.GetString(3);
                    Contract.Remark = a.GetString(4);
 
 
                    fileDataList.Add(Contract);
                }
                a.Close();     //关闭sqldatareader
                if (fileDataList.Count > 0)
                {
                    foreach (var item in fileDataList)
                    {
                        FileInfo file = new FileInfo(Server.MapPath(item.FilePath));//指定文件路径
                        if (file.Exists)//判断文件是否存在
                        {
                            file.Attributes = FileAttributes.Normal;//将文件属性设置为普通,比方说只读文件设置为普通
                            file.Delete();//删除文件
                        }
                        sqlStr = string.Format(@"  DELETE FROM [dbo].[EC_OrderLiuyang] where Keyid='{0}'", item.Keyid);
                        myCmd = new SqlCommand(sqlStr, DC.Connection);
                        myCmd.ExecuteNonQuery();
                      
                    }
                    sqlStr = string.Format(@"  update [EC_OrderBasic]        set [LiuyangStatus] =     0  where [Keyid]=  {0}   ", pageID);
                    myCmd = new SqlCommand(sqlStr, DC.Connection);
 
                    myCmd.ExecuteNonQuery();
                    myCmd.Dispose();
 
                }
 
                JavaScript.MessageBox("删除成功", this);
                //  Response.Redirect("/Pages/business/OrderUpLoadLiuyang.aspx");
            }
            catch (Exception ee)
            {
                new Log4NetAdapter().Log("查找留样出错:" + ee.Message);
                JavaScript.MessageBox("删除失败", this);
 
            }
            finally
            {
                if (DC.Connection.State != System.Data.ConnectionState.Closed)
                    DC.Connection.Close();
            }
 
            BindList();
        }
     
 
        public void  test()
        {
            return;
        }
        
     
      
 
 
 
    }
}