username@email.com
2025-01-17 8d51a0762a43eedada5eb15bd24180d7204e63b3
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
/**  
* OrderOperate.aspx.cs
*
* 功 能: 订单操作列表
* 类 名: OrderOperate
*
* Ver    变更日期             负责人  变更内容
* ───────────────────────────────────
* V0.01  2013-5-21 9:48        吴崎均    初版
*
*
*
*/
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;
 
namespace CY.WebForm.Pages.business
{
    /// <summary>
    /// 订单操作
    /// </summary>
    public partial class OrderOperate : BasePage
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (IsPostBack || IsCallback)
            {
                return;
 
            }
            else ;
            string id = Request["id"];
 
            if (string.IsNullOrEmpty(Request["orderId"]) || string.IsNullOrEmpty(id))
            {
                return;
            }
 
            try
            {
                int? orderId = MyConvert.ConvertToInt32(id);
                if (!orderId.HasValue) return; else ;
                EC_OrderBasicBLL _eC_OrderBasicBLL = new EC_OrderBasicBLL();
                rptData.DataSource = _eC_OrderBasicBLL.SelectOrderOperates(orderId.Value);
                rptData.DataBind();
            }
            catch (Exception ex)
            {
                PAGEHandleException(ex);
            }
        }
    }
}