username@email.com
2025-02-20 27008c309a7adcd608666df53f4a89f88fb83d5f
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using CY.BLL;
using CY.Model;
using CY.Infrastructure.Query;
using CY.Infrastructure.Common;
using CY.BLL.OA;
 
namespace CY.WebForm.Pages.financial
{
    public partial class PlanOrderDetail : BasePage
    {
 
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                BindPlanOrder();
            
            }
        }
        /// <summary>
        /// 绑定单个科目的具体信息
        /// </summary>
        public void BindPlanOrder()
        {
 
 
        CoreCmsPlanOrderBLL _PlanOrderBLL = new CoreCmsPlanOrderBLL();
            CoreCmsPlanOrderItemBLL _coreCmsPlanOrderItemBLL = new CoreCmsPlanOrderItemBLL();
            var coreCmsPlanOrder = _PlanOrderBLL.GetModelByKeyid(Request["Keyid"].ToInt32().Value);
            spnsheng.InnerText = coreCmsPlanOrder.sheng;
            spnshi.InnerText = coreCmsPlanOrder.shi;
            spnquxian.InnerText = coreCmsPlanOrder.quxian;
            spnpianqu.InnerText = coreCmsPlanOrder.pianqu;
            spnshipAddress.InnerText = coreCmsPlanOrder.shipAddress;
            spnshipName.InnerText = coreCmsPlanOrder.shipName;
            spnshipMobile.InnerText = coreCmsPlanOrder.shipMobile;
            spnshouhuoAddress.InnerText = coreCmsPlanOrder.shouhuoAddress;
            spnorderAmount.InnerText = coreCmsPlanOrder.orderAmount.ToString2() ;
 
 
 
            this.RepSubjeSetctList.DataSource = _coreCmsPlanOrderItemBLL.GetModelsByOrderid(Request["Keyid"].ToInt32().Value) ;
 
            this.RepSubjeSetctList.DataBind();
        }
    }
}