black-goat-me
2023-04-24 a759f9bf2a09b7c4ba10b8afa4e421a8abf511b4
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
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
 
namespace DAL
{
    public class ClsK3_ICMOBill_View:DBUtility.ClsGy_Base_View
    {
        
        //
        public Model.ClsK3_ICMOBill_Model omodel = new Model.ClsK3_ICMOBill_Model();
        SQLHelper.ClsCN oCn = new SQLHelper.ClsCN(); 
 
        public ClsK3_ICMOBill_View()
        {
            base.MvarReportTitle = "领料出库单设置";
            base.MvarItemKey = "h_v_Kf_ICMOBillList_K3";
            base.SQLName = "Select hmainid,单据号,HTranType from h_v_Kf_ICMOBillList_K3 where HTranType=85 group by hmainid,单据号,HTranType Order by 单据号 ";
            base.SQLList = "Select * from " + MvarItemKey + " ";
        }
        //
        public void Dispose()
        {
            GC.SuppressFinalize(this);
        }
        //
         
        //返回项目信息
        public override bool GetInfoByID(Int64 sItemID)
        {
            DataSet DS ;
            try
            {
                DS = oCn.RunProcReturn("Select * from " + MvarItemKey + " Where hmainid='" + sItemID + "'", MvarItemKey, ref DBUtility.ClsPub.sExeReturnInfo);
                if (DS.Tables[0].Rows.Count  == 0)
                    return false;
                else
                {
                    return GetInfo(DS);
                }
            }
            catch (Exception e)
            {
                throw (e);
            }
        }
        //根据代码返回项目信息
        public override bool GetInfoByNumber(string sNumber)
        {
            DataSet DS;
            try
            {
                DS = oCn.RunProcReturn("Select * from " + MvarItemKey + " Where 单据号='" + sNumber + "'", MvarItemKey, ref DBUtility.ClsPub.sExeReturnInfo);
                if (DS.Tables[0].Rows.Count == 0)
                    return false;
                else
                {
                    return GetInfo(DS);
                }
            }
            catch (Exception e)
            {
                throw (e);
            }
        }
        //根据代码返回项目信息
        public bool GetInfoByNumberLike(string sNumber)
        {
            DataSet DS;
            try
            {
                DS = oCn.RunProcReturn("Select * from " + MvarItemKey + " Where 单据号 like '%" + sNumber + "%' order by 单据号 ", MvarItemKey, ref DBUtility.ClsPub.sExeReturnInfo);
                if (DS.Tables[0].Rows.Count == 0)
                    return false;
                else
                {
                    return GetInfo(DS);
                }
            }
            catch (Exception e)
            {
                throw (e);
            }
        }
        //返回项目信息
        public override bool GetInfo(DataSet DS)
        {
            try
            {
                omodel = new Model.ClsK3_ICMOBill_Model();
                omodel.HInterID = Convert.ToInt64(DS.Tables[0].Rows[0]["hmainid"]);
                omodel.HBillNo = DS.Tables[0].Rows[0]["单据号"].ToString().Trim();
                omodel.HWorkTypeID = DBUtility.ClsPub.isLong(DS.Tables[0].Rows[0]["HWorkTypeID"]);
                omodel.HMaterID = DBUtility.ClsPub.isLong(DS.Tables[0].Rows[0]["HMaterID"]);
                return true;
 
            }
            catch (Exception e)
            {
                throw (e);
            }
        }
    }
}