duhe
2023-07-08 7313e29b71844817a75cb44cf77ab902c5016c95
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
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using SQLHelper;
using DBUtility;
 
namespace BLL
{
    class ClsXt_AccountPeriod
    {
        private string _mvarItemKey;
 
        public string MvarItemKey
        {
            get { return _mvarItemKey; }
            set { _mvarItemKey = value; }
        }
        private string _mvarReportTitle;
 
        public string MvarReportTitle
        {
            get { return _mvarReportTitle; }
            set { _mvarReportTitle = value; }
        }
        ClsCN oCN = new ClsCN();
        public int HYear;
        public int HPeriod;
        public string HBeginDate;
        public string HEndDate;
        public bool HEndFlag;
        //新增
        public bool AddNew()
        {
            try
            {
                oCN.BeginTran();
                oCN.RunProc("Insert into Xt_AccountPeriod " +
                    " (HYear,HPeriod,HBeginDate" +
                    ",HEndDate,HEndFlag) " +
                    " Values(" + this.HYear.ToString() + "," + this.HPeriod.ToString() + ",'" + this.HBeginDate +
                    "','" + this.HEndDate + "',0)");
                 
                oCN.Commit();
                return true;
            }
            catch (Exception e)
            {
                oCN.RollBack();
                return false; 
            }
        }
       
        //修改
        public bool ModifyByID(int sYear,int sPeriod)
        {
            try
            {
                oCN.BeginTran();
                oCN.RunProc("Update Xt_AccountPeriod set " +
                    " HYear=" + this.HYear + "" +
                    ",HPeriod=" + this.HPeriod + "" +
                    ",HBeginDate='" + this.HBeginDate +"'"+
                    ",HEndDate='" + this.HEndDate + "' Where  HYear=" + sYear.ToString() + "  and  HPeriod=" + sPeriod.ToString());
                //
                oCN.Commit();
                return true;
            }
            catch (Exception e)
            {
                oCN.RollBack();
                return false;
            }
        }
 
        #region 固定代码
         
        //删除
        public bool DeleteByID(int sYear,int sPeriod)
        {
            try
            {
                oCN.RunProc("Delete from Xt_AccountPeriod where HYear=" + sYear.ToString() + "  and  HPeriod=" + sPeriod.ToString());
                return true;
            }
            catch (Exception e)
            {
                return false;
            }
        }
        //重复代码
        public bool HavSameNumber(int sYear,int sPeriod)
        {
            DataSet DS ;
            try
            {
                DS = oCN.RunProcReturn("Select HYear from Xt_AccountPeriod Where HYear=" + sYear + " and HPeriod=" + sPeriod + "", "Xt_AccountPeriod");
                if (DS.Tables[0].Rows.Count == 0)
                    return false;
                else
                {
                    return true;
                }
            }
            catch (Exception e)
            {
                return false;
            }
        }
        //结账
        public bool CloseAcc()
        {
            try
            {
                ClsPub.Sub_GetCurPeriod(ref ClsPub.CurYear,ref ClsPub.CurPeriod);
                oCN.RunProc("UpDate Xt_AccountPeriod set HEndFlag=1 where HYear="+ClsPub.CurYear+" and HPeriod="+ClsPub.CurPeriod);
                ClsPub.Sub_GetCurPeriod(ref ClsPub.CurYear, ref ClsPub.CurPeriod);
                return true;
            }
            catch (Exception e)
            {
                return false;
            }
        }
 
        //反结账
        public bool UnCloseAcc()
        {
            try
            {
                ClsPub.Sub_GetCurPeriod(ref ClsPub.CurYear, ref ClsPub.CurPeriod);
                oCN.RunProc("exec h_p_Xt_UnCloseAccount ");
                ClsPub.Sub_GetCurPeriod(ref ClsPub.CurYear, ref ClsPub.CurPeriod);
                return true;
            }
            catch (Exception e)
            {
                return false;
            }
        }
        
 
        //构造函数
        public ClsXt_AccountPeriod() 
        {
            MvarItemKey="Xt_AccountPeriod";
            MvarReportTitle = "会计期间设置";
        }
        #endregion
 
         
    }
}