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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using CY.BLL.EC;
using CY.Infrastructure.Common;
using CY.Model;
using CY.BLL;
using CY.Model.Inquiry;
using CY.BLL.Sys;
using CY.Infrastructure.Query;
 
namespace CY.WebForm.Pages.business
{
    public partial class XiaoshoujixiaoPrint : BasePage
    {
        EC_OrderBLL bll_EC_OrderBLL  = new EC_OrderBLL();
      
       
        /// <summary>
        /// 页面加载事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void Page_Load(object sender, EventArgs e)
        {
            try
            {
                switch (Request["Target"])
                {
                    case "GetCommunication":
                        break;
                    case "print":
                        break;
                    default:
                        Page_Load_Default();
                        return;
                }
            }
            catch (Exception ex)
            {
                PAGEHandleException(ex);
                Response.Clear();
                Response.Write("-1");
            }
            Response.End();
        }
 
        /// <summary>
        /// 默认加载事件方法
        /// </summary>
        private void Page_Load_Default()
        {
            LoadOrderInfo();
        }
 
        /// <summary>
        /// 加载订单信息
        /// </summary>
        private bool LoadOrderInfo()
        {
            string selDegreeImportanId = Request["selDegreeImportanId"] == null ? "" : Request["selDegreeImportanId"];
            string selTurnoverIntentionId = Request["selTurnoverIntentionId"] == null ? "" : Request["selTurnoverIntentionId"];
            string txtquery_userName = Request["txtquery_userName"] == null ? "" : Request["txtquery_userName"];
            string selectProvince = Request["selectProvince"] == null ? "" : Request["selectProvince"];
            string selectCity = Request["selectCity"] == null ? "" : Request["selectCity"];
            string selectCounty = Request["selectCounty"] == null ? "" : Request["selectCounty"];
            string selBusinessManagerId = Request["selBusinessManagerId"] == null ? "" : Request["selBusinessManagerId"];
 
            string selShifouwanjie = Request["selShifouwanjie"] == null ? "" : Request["selShifouwanjie"];
            string selOrderCount = Request["selOrderCount"] == null ? "" : Request["selOrderCount"];
            string txtOrderCount = Request["txtOrderCount"] == null ? "" : Request["txtOrderCount"];
            string selOrderMoney = Request["selOrderMoney"] == null ? "" : Request["selOrderMoney"];
            string txtOrderMoney = Request["txtOrderMoney"] == null ? "" : Request["txtOrderMoney"];
            string selLastOrderTime = Request["selLastOrderTime"] == null ? "" : Request["selLastOrderTime"];
            string txtLastOrderTime = Request["txtLastOrderTime"] == null ? "" : Request["txtLastOrderTime"];
 
 
 
 
 
 
            Infrastructure.Query.Pagination pagination = new Infrastructure.Query.Pagination()
            {
                PageSize = 1000,
                PageIndex = 1
            };
       
 
 
            this.rptOrder.DataSource = bll_EC_OrderBLL.GetxiaoshouchaxunList(pagination,
               CurrentUser.MemberId,
                 selectProvince,
                selectCity,
               selectCounty,
               selDegreeImportanId,
              txtquery_userName,
               selBusinessManagerId,
               selTurnoverIntentionId,
                selShifouwanjie,
                selLastOrderTime,
               selOrderCount,
               selOrderMoney,
                txtOrderCount,
               txtOrderMoney,
               txtLastOrderTime
              );
            this.rptOrder.DataBind();
 
 
 
 
          
 
            return true;
        }
 
        
    }
}