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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using CY.Model;
using CY.Infrastructure.Common;
using CY.BLL.OA;
using CY.BLL.Sys;
using CY.BLL;
using System.Transactions;
 
namespace CY.WebForm.Pages.financial
{
    public partial class BaoxiaoFukuanEdit : BasePage
    {
        Sys_DictionaryBLL _Sys_DictionaryBLL = null;
        OA_SubjectSetBLL _OA_SubjectSetBLL = null;
        OA_FirmAccountBLL _OA_FirmAccountBLL = null;
        OA_FirmAccountRecordBLL _OA_FirmAccountRecordBLL = null;
        OA_FirmAccountRecord firmAccountRecord = null;
        OA_FirmAccount firmAccount = null;
        OA_BaozhengjinBLL oA_BaozhengjinBLL = null;
        OA_StaffBLL staffBLL = null;
        OA_WorkPlanBll bll_OA_WorkPlanBll = null;
        OA_DepartmentBll oA_DepartmentBll = null;
        public BaoxiaoFukuanEdit()
        {
            firmAccount = new OA_FirmAccount();
            _Sys_DictionaryBLL = new Sys_DictionaryBLL();
            _OA_FirmAccountBLL = new OA_FirmAccountBLL();
            _OA_FirmAccountRecordBLL = new OA_FirmAccountRecordBLL();
            _OA_SubjectSetBLL = new OA_SubjectSetBLL();
            firmAccountRecord = new OA_FirmAccountRecord();
            oA_BaozhengjinBLL = new OA_BaozhengjinBLL();
            staffBLL = new OA_StaffBLL();
            bll_OA_WorkPlanBll = new OA_WorkPlanBll();
            oA_DepartmentBll = new OA_DepartmentBll();
        }
 
        protected void Page_Load(object sender, EventArgs e)
        {
            try
            {
                switch (Request["DataType"])
                {
                    case "change":
                        Response.Write(reLoadAccountName(Request["TypeName"].ToString2()));
                        break;
                    default://一般情况不处理
                        if (IsPostBack || IsCallback)
                            return;
                        else
                        {
                            InitialData();
                        }
                        return;
                }
            }
            catch (Exception ex)
            {
                PAGEHandleException(ex);
                Response.Clear();
                Response.Write("-1");
            }
            Response.End();
        }
 
        protected void InitialData()
        {
            var keyid = Request["keyid"].ToInt32();
            ////科目名称
            //selSubject.DataSource = _OA_SubjectSetBLL.getAllSubject(CurrentUser.MemberId, "贷");
            //selSubject.DataBind();
            //selSubject.Items.Insert(0, new ListItem("请选择", ""));
 
            ///账户类型
            selAcoountType.DataSource = _Sys_DictionaryBLL.GetDataByType("账户类型");
            selAcoountType.DataBind();
 
             
 
            if (keyid > 0)
            {
                var oA_WorkPlan = bll_OA_WorkPlanBll.GetModelByKeyid(keyid);
                this.selSubject.Value = oA_WorkPlan.RewardResult;
                this.selSubjectName.Value = oA_WorkPlan.RewardContent;
                this.txtMoney.Value = oA_WorkPlan.PlanMoney.Value.ToString("0.00");
                this.txtPaymentUnit.Value = oA_WorkPlan.PlanPeople;
                var oA_Department = oA_DepartmentBll.GetModelByKeyid(oA_WorkPlan.DepartId);
                if (oA_Department != null)
                    this.txtDepartment.Value = oA_Department.Name;
                this.txtOperationalMatters.Value = oA_WorkPlan.PlanContent;
            }
            
        }
 
        protected string reLoadAccountName(string selAcoountType)
        {
            return JsonHelper.GetJsonStringByObject(_OA_FirmAccountBLL.getAllSubject(CurrentUser.MemberId, selAcoountType));
        }
 
        protected void btn_Submit_Click(object sender, EventArgs e)
        {
            var keyid = Request["keyid"].ToInt32();
            var oA_WorkPlan = bll_OA_WorkPlanBll.GetModelByKeyid(keyid);
            if(oA_WorkPlan.EvaluationStatus == 1)
            {
                JavaScript.MessageBox("该报销已经付款,不能重复付款", this);
                return;
            }
            using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required,
   new TransactionOptions
   {
       IsolationLevel = System.Transactions.IsolationLevel.ReadCommitted,
       Timeout = TransactionManager.MaximumTimeout
   }
   )
            )
            {
 
                try
                {
 
 
                    firmAccount = _OA_FirmAccountBLL.getSingleSubject(Request["selAccountName"].ToInt32());
 
                    firmAccountRecord.AccountId = Request["selAccountName"].ToInt32();
                    firmAccountRecord.LastUpdateTime = DateTime.Now;
                    firmAccountRecord.Money = this.txtMoney.Value.ToDecimal2();
                    firmAccountRecord.OperationalMatters = this.txtOperationalMatters.Value;
                    firmAccountRecord.Operator = CurrentUser.ShortName;
                    firmAccountRecord.PaymentUnit = this.txtPaymentUnit.Value;
                    firmAccountRecord.RecordTypeId = 2;//支出
                    firmAccountRecord.Remark = this.txtRemark.Value;
                    firmAccountRecord.SubjectId = this.selSubject.Value.ToInt32();
                    firmAccountRecord.ResidualAmount = firmAccount.Balance - this.txtMoney.Value.ToDecimal2();
                    firmAccountRecord.Department = this.txtDepartment.Value;
 
                    firmAccount.AllExpenses = this.txtMoney.Value.ToDecimal2() + firmAccount.AllExpenses;
                    firmAccount.Balance = firmAccount.Balance - this.txtMoney.Value.ToDecimal2();
 
                    if (_OA_FirmAccountRecordBLL.AddModel(firmAccountRecord, firmAccount))
                    {
                        //修改OA_WorkPlan的状态未已报销
                       
                        if (keyid > 0)
                        {
                           
                            oA_WorkPlan.EvaluationStatus = 1;
                            oA_WorkPlan.Operator = CurrentUser.ShortName;
                            oA_WorkPlan.LastUpdateTime = DateTime.Now;
                            var res = bll_OA_WorkPlanBll.UpdateModel(oA_WorkPlan);
                        }
 
                        
                        scope.Complete();
                        JavaScript.MessageBox("添加成功", this, true, true);
                    }
                    else
                        JavaScript.MessageBox("添加失败", this);
                }
                catch (Exception ex)
                {
                    PAGEHandleException(ex);
                    JavaScript.MessageBox("添加失败", this);
                }
                finally
                {
                    // 释放资源
                    scope.Dispose();
                }
            }
        }
    }
}