username@email.com
2025-05-12 ae6e40362a745caef9ead36f81f38313fb8c2c66
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using CY.Model;
using CY.BLL;
using CY.Infrastructure.Common;
using CY.Infrastructure.Query;
 
namespace CY.WebForm.Pages.personnel
{
    //吴辉
    //员工工资表明细
    public partial class OA_WagesRecordDetail : BasePage
    {
        OA_WagesRecordBLL bll_OA_WagesRecordBLL = null;
 
        //初始化
        public OA_WagesRecordDetail()
        {
            bll_OA_WagesRecordBLL = new OA_WagesRecordBLL();
        }
 
        //页面加载
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                InitData();
            }
        }
 
        //数据加载
        public void InitData()
        {
            OA_WagesRecord m_OA_WagesRecord = bll_OA_WagesRecordBLL.GetModelByKeyid(Request["keyid"].ToInt32());
            if (m_OA_WagesRecord != null)
            {
                this.spanFirmId.InnerText = m_OA_WagesRecord.FirmId.ToString2();
               this.spanMemberId.InnerText = m_OA_WagesRecord.MemberId.ToString2();
               this.spanStartBelongsTime.InnerText = m_OA_WagesRecord.StartBelongsTime.ToString2();
               this.spanEndBelongsTime.InnerText = m_OA_WagesRecord.EndBelongsTime.ToString2();
               this.spanWorkDay.InnerText = m_OA_WagesRecord.WorkDay.ToString2();
               this.spanBasicWage.InnerText = m_OA_WagesRecord.BasicWage.ToString2();
               this.spanSeniorityWage.InnerText = m_OA_WagesRecord.SeniorityWage.ToString2();
               this.spanOutputcommission.InnerText = m_OA_WagesRecord.Outputcommission.ToString2();
               this.spanProfitCommission.InnerText = m_OA_WagesRecord.ProfitCommission.ToString2();
               this.spanOtherCommission.InnerText = m_OA_WagesRecord.OtherCommission.ToString2();
               this.spanPerformanceTotal.InnerText = m_OA_WagesRecord.PerformanceTotal.ToString2();
               this.spanOvertimePay.InnerText = m_OA_WagesRecord.OvertimePay.ToString2();
               this.spanRewardMoney.InnerText = m_OA_WagesRecord.RewardMoney.ToString2();
               this.spanPunishmentMoney.InnerText = m_OA_WagesRecord.PunishmentMoney.ToString2();
               this.spanAllowance.InnerText = m_OA_WagesRecord.Allowance.ToString2();
               this.spanAggregatePaychecks.InnerText = m_OA_WagesRecord.AggregatePaychecks.ToString2();
               this.spanAttendance.InnerText = m_OA_WagesRecord.Attendance.ToString2();
               this.spanAskForLeave.InnerText = m_OA_WagesRecord.AskForLeave.ToString2();
               this.spanEducedTotal.InnerText = m_OA_WagesRecord.EducedTotal.ToString2();
               this.spanUnit.InnerText = m_OA_WagesRecord.Unit.ToString2();
               this.spanPersonal.InnerText = m_OA_WagesRecord.Personal.ToString2();
               this.spanWillPayTax.InnerText = m_OA_WagesRecord.WillPayTax.ToString2();
               this.spanAmountWagCards.InnerText = m_OA_WagesRecord.AmountWagCards.ToString2();
               this.spanAccountingSituation.InnerText = m_OA_WagesRecord.AccountingSituation.ToString2();
               this.spanLastUpdateTime.InnerText = m_OA_WagesRecord.LastUpdateTime.ToString2();
               this.spanOperator.InnerText = m_OA_WagesRecord.Operator.ToString2();
               }
        }
    }
}