username@email.com
2025-05-15 6fe02a16e55f17e45a3997171e1b2284d45af25b
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using CY.BLL.OA;
using CY.Model;
using CY.Infrastructure.Common;
namespace CY.WebForm.Pages.financial
{
    public partial class FirmAccountIncomeDetail : BasePage
    {
 
        OA_FirmAccountRecord firmAccountRecord = null;
        OA_FirmAccountRecordBLL _OA_FirmAccountRecordBLL = null;
        public FirmAccountIncomeDetail()
        {
            firmAccountRecord = new OA_FirmAccountRecord();
            _OA_FirmAccountRecordBLL = new OA_FirmAccountRecordBLL();
 
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                BindList();
            }
        }
 
 
        protected void BindList()
        {
            firmAccountRecord = _OA_FirmAccountRecordBLL.SelectSingleModel(Request["Keyid"].ToString2(), CurrentUser.MemberId);
            this.spanRemark.InnerText = firmAccountRecord.Remark;
            this.spnAccountName.InnerText = firmAccountRecord.OA_FirmAccount.AccountName;
            this.spnAccountType.InnerText = firmAccountRecord.OA_FirmAccount.AccountType;
            this.spnLastUpdateTime.InnerText = firmAccountRecord.LastUpdateTime.ToString2();
            this.spnMomeny.InnerText = (firmAccountRecord.Money ?? 0).ToString("0.00") + "元";
            this.spnOperationalMatters.InnerText = firmAccountRecord.OperationalMatters;
            this.spnOperator.InnerText = firmAccountRecord.Operator;
            this.spnPaymentUnit.InnerText = firmAccountRecord.PaymentUnit;
            if (firmAccountRecord.OA_SubjectSet.SubjectName == "")
            {
                this.spnSubjectName.InnerText = "客户预付款";
            }
            else
            {
                this.spnSubjectName.InnerText = firmAccountRecord.OA_SubjectSet.SubjectName;
            }
 
 
        }
 
 
 
    }
}