沈泽
2021-11-01 cb7d88df22d0e2a1aa6987c33c93c3378f1c2837
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
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
 
namespace DAL
{
    public class ClsPay_PeriodInfoSet_Ctl:DBUtility.ClsGy_Base_Ctl 
    {
        SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); 
        //原代码 用于 替换子项目
        public string HOldNumber;
        public Model.ClsPay_PeriodInfoSet_Model oModel = new Model.ClsPay_PeriodInfoSet_Model();
        //新增
        public override bool AddNew()
        {
            
            try
            {
                oCn.BeginTran();
                oCn.RunProc("Insert into " + MvarItemKey + " " +
                    " (HStopflag,HRemark " +
                    ",HYear,HPeriod,HWorkTimes,HOverWorkTimes,HBasePay)" +
                    " Values( " + Convert.ToString(oModel.HStopflag ? 1 : 0) + ",'" + oModel.HRemark + "'" +
                    "," + oModel.HYear.ToString() + "," + oModel.HPeriod.ToString() + "," + oModel.HWorkTimes.ToString() + "," + oModel.HOverWorkTimes.ToString() + "," + oModel.HBasePay.ToString() +
                    ")");
                //修改上级为非末级代码
                //oCn.RunProc("Update " + MvarItemKey + " set HEndflag=0 where HItemID=" + oModel.HParentID, ref DBUtility.ClsPub.sExeReturnInfo);
                oCn.Commit();
                return true;
            }
            catch (Exception e)
            {
                oCn.RollBack();
                throw (e);
            }
        }
 
        //修改
        public override bool ModifyByID(Int64 sItemID)
        {
            try
            {
                oCn.BeginTran();
                oCn.RunProc("Update " + MvarItemKey + " set " +
                    " HYear=" + oModel.HYear.ToString() +
                    ",HPeriod=" + oModel.HPeriod.ToString() +
                    ",HWorkTimes=" + oModel.HWorkTimes.ToString() +
                    ",HOverWorkTimes=" + oModel.HOverWorkTimes.ToString() +
                    ",HBasePay=" + oModel.HBasePay.ToString() +
                    ",HStopflag=" + Convert.ToString(oModel.HStopflag ? 1 : 0) +
                    ",HRemark= '" + oModel.HRemark + "' Where HItemID=" + sItemID, ref DBUtility.ClsPub.sExeReturnInfo);
                //修改子项目代码
                //oCn.RunProc("exec h_p_Gy_UpdateNumber '" + MvarItemKey + "','" + oModel.HNumber + ".','" + this.HOldNumber + ".'", ref DBUtility.ClsPub.sExeReturnInfo);
                //将上级 为非末级
                //oCn.RunProc("Update " + MvarItemKey + " set HEndflag=0 where HItemID=" + oModel.HParentID, ref DBUtility.ClsPub.sExeReturnInfo);
                //
                oCn.Commit();
                return true;
            }
            catch (Exception e)
            {
                oCn.RollBack();
                throw (e);
            }
        }
        //重复年+月
        public bool HavSameYearPeriod(Int64 sItemID, string sYear, string sPeriod)
        {
            DataSet DS;
            try
            {
                DS = oCn.RunProcReturn("Select HItemID from " + MvarItemKey + " Where HItemID<>" + sItemID + " and HYear='" + sYear + "' and HPeriod='" + sPeriod + "'", MvarItemKey, ref Pub_Class.ClsPub.sExeReturnInfo);
                if (DS.Tables[0].Rows.Count == 0)
                    return false;
                else
                {
                    return true;
                }
            }
            catch (Exception e)
            {
                throw (e);
            }
        }
        //构造函数
        public ClsPay_PeriodInfoSet_Ctl()
        {
            MvarItemKey = "Pay_PeriodInfoSet";
            MvarReportTitle = "月度信息设置";
            oModel = new Model.ClsPay_PeriodInfoSet_Model();
        } 
    }
}