yusijie
2025-06-29 92bc347f39b0c9b03c394b8fb918de2bd018b986
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
 
namespace DAL
{
    public class ClsWeb_BarCodeBill : DBUtility.ClsXt_BaseBill
    {
        public Model.ClsCg_POInStockBillMain omodel = new Model.ClsCg_POInStockBillMain();
        public SQLHelper.ClsCNSRM oCn = new SQLHelper.ClsCNSRM();
        public string MvarItemKeySubForWeb3 = "h_v_Web_BarCodeBill_ForWeb1";
        public string MvarItemKeySubForWeb4 = "h_v_Web_BarCodeBill_ForWeb2";
 
        public ClsWeb_BarCodeBill()
        {
            base.MvarItemKeyForWeb = "h_v_SRM_POInStockBillMain_ForWeb2";          
            base.MvarItemKeySubForWeb = "h_v_SRM_POInStockBillSub_ForWeb2"; 
            base.MvarItemKeySubForWeb2 = "h_v_Web_BarCodeBill_ForWeb";
            base.MvarItemKeySub = "";
            base.MvarItemKeySub2 = "";
            base.MvarItemKeySub3 = "";
            base.MvarItemKeySub4 = "";
            base.MvarItemKey = "";
            base.MvarReportTitle = "";
            base.BillType = "";
            
           
        }
 
        #region 固定代码
 
        ~ClsWeb_BarCodeBill()
        {
            //DetailColl = null;
        }
 
        #endregion   自定义方法
 
 
 
        public DataSet ShowBillMain(long lngBillKey, string sShowItem, ref string sReturn)
        {
            string str = "";
            try
            {
                str = "Select " + sShowItem + " from " + this.MvarItemKeyForWeb + " Where HInterID=" + lngBillKey.ToString();
                DataSet set = oCn.RunProcReturn("Select " + sShowItem + " from " + this.MvarItemKeyForWeb + " Where HInterID=" + lngBillKey.ToString(), this.MvarItemKeyForWeb);
                if ((set == null) || (set.Tables[0].Rows.Count == 0))
                {
                    sReturn = "单据头未找到!";
                    return null;
                }
                sReturn = "显示单据头成功!";
                return set;
            }
            catch (Exception exception)
            {
                sReturn = exception.Message;
                return null;
            }
        }
        public DataSet ShowBillMain1(long lngBillKey, string sShowItem, ref string sReturn)
        {
            string str = "";
            try
            {
                str = "Select " + sShowItem + " from " + this.MvarItemKeyForWeb + " Where HInterID=" + lngBillKey.ToString();
                DataSet set = oCn.RunProcReturn("Select " + sShowItem + " from " + this.MvarItemKeyForWeb + " Where HInterID=" + lngBillKey.ToString(), this.MvarItemKeyForWeb);
                if ((set == null) || (set.Tables[0].Rows.Count == 0))
                {
                    sReturn = "单据头未找到!";
                    return null;
                }
                sReturn = "显示单据头成功!";
                return set;
            }
            catch (Exception exception)
            {
                sReturn = exception.Message;
                return null;
            }
        }
        public DataSet ShowBillSub(long lngBillKey, string sShowItem, ref string sReturn)
        {
            string str = "";
            try
            {
                str = "Select " + sShowItem + "  from " + this.MvarItemKeySubForWeb + " Where HInterID=" + lngBillKey.ToString() + " order by HEntryID ";
                DataSet set = oCn.RunProcReturn("Select " + sShowItem + "  from " + this.MvarItemKeySubForWeb + " Where HInterID=" + lngBillKey.ToString() + " order by HEntryID ", this.MvarItemKeySubForWeb);
                if ((set == null) || (set.Tables[0].Rows.Count == 0))
                {
                    sReturn = "单据体未找到!";
                    return null;
                }
                sReturn = "显示单据体成功!";
                return set;
            }
            catch (Exception exception)
            {
                sReturn = exception.Message + str;
                return null;
            }
        }
        public DataSet ShowBillSub1(long lngBillKey, long HEntryID, string sShowItem, ref string sReturn)
        {
            string str = "";
            try
            {
                str = string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb, " Where HInterID=", lngBillKey.ToString(), " and HEntryID=", HEntryID, " order by HEntryID " });
                DataSet set = oCn.RunProcReturn(string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb, " Where HInterID=", lngBillKey.ToString(), " and HEntryID=", HEntryID, " order by HEntryID " }), this.MvarItemKeySubForWeb);
                if ((set == null) || (set.Tables[0].Rows.Count == 0))
                {
                    sReturn = "单据体未找到!";
                    return null;
                }
                sReturn = "显示单据体成功!";
                return set;
            }
            catch (Exception exception)
            {
                sReturn = exception.Message + str;
                return null;
            }
        }
 
        public DataSet ShowBillSub2(long lngBillKey, string sShowItem, ref string sReturn)
        {
            string str = "";
            try
            {
                str = string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb2, " Where HInterID=", lngBillKey.ToString(), " order by HEntryID " });
                DataSet set = oCn.RunProcReturn(string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb2, " Where HInterID=", lngBillKey.ToString(), " order by HEntryID " }), this.MvarItemKeySubForWeb4);
                if ((set == null) || (set.Tables[0].Rows.Count == 0))
                {
                    sReturn = "单据体未找到!";
                    return null;
                }
                sReturn = "显示单据体成功!";
                return set;
            }
            catch (Exception exception)
            {
                sReturn = exception.Message + str;
                return null;
            }
        }
        public DataSet ShowBillSub3(long lngBillKey, long HEntryID, string sShowItem, ref string sReturn)
        {
            string str = "";
            try
            {
                str = string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb2, " Where HInterID=", lngBillKey.ToString(), " and HEntryID=", HEntryID, " order by HEntryID " });
                DataSet set = oCn.RunProcReturn(string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb2, " Where HInterID=", lngBillKey.ToString(), " and HEntryID=", HEntryID, " order by HEntryID " }), this.MvarItemKeySubForWeb2);
                if ((set == null) || (set.Tables[0].Rows.Count == 0))
                {
                    sReturn = "单据体未找到!";
                    return null;
                }
                sReturn = "显示单据体成功!";
                return set;
            }
            catch (Exception exception)
            {
                sReturn = exception.Message + str;
                return null;
            }
        }
        public DataSet ShowBillSub4(long lngBillKey, string sShowItem, ref string sReturn)
        {
            string str = "";
            try
            {
                str = string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb2, " Where HInterID=", lngBillKey.ToString(), " order by HEntryID " });
                DataSet set = oCn.RunProcReturn(string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb2, " Where HInterID=", lngBillKey.ToString(), " order by HEntryID " }), this.MvarItemKeySubForWeb2);
                if ((set == null) || (set.Tables[0].Rows.Count == 0))
                {
                    sReturn = "单据体未找到!";
                    return null;
                }
                sReturn = "显示单据体成功!";
                return set;
            }
            catch (Exception exception)
            {
                sReturn = exception.Message + str;
                return null;
            }
        }
        public DataSet ShowBillSub5(long lngBillKey, string sShowItem, ref string sReturn)
        {
            string str = "";
            try
            {
                str = string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb3, " Where HInterID=", lngBillKey.ToString(), " order by HEntryID " });
                DataSet set = oCn.RunProcReturn(string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb3, " Where HInterID=", lngBillKey.ToString(), " order by HEntryID " }), this.MvarItemKeySubForWeb3);
                if ((set == null) || (set.Tables[0].Rows.Count == 0))
                {
                    sReturn = "单据体未找到!";
                    return null;
                }
                sReturn = "显示单据体成功!";
                return set;
            }
            catch (Exception exception)
            {
                sReturn = exception.Message + str;
                return null;
            }
        }
        public DataSet ShowBillSub6(long lngBillKey, string sShowItem, ref string sReturn)
        {
            string str = "";
            try
            {
                str = string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb4, " Where HInterID=", lngBillKey.ToString(), " order by HEntryID " });
                DataSet set = oCn.RunProcReturn(string.Concat(new object[] { "Select ", sShowItem, "  from ", this.MvarItemKeySubForWeb4, " Where HInterID=", lngBillKey.ToString(), " order by HEntryID " }), this.MvarItemKeySubForWeb4);
                if ((set == null) || (set.Tables[0].Rows.Count == 0))
                {
                    sReturn = "单据体未找到!";
                    return null;
                }
                sReturn = "显示单据体成功!";
                return set;
            }
            catch (Exception exception)
            {
                sReturn = exception.Message + str;
                return null;
            }
        }
 
        //生成条码
        public bool SaveBarCode(Int64 HMaterID, Int64 HUnitID, Int64 HSupID, Int64 HQty, Int64 HMinQty, Int64 HSourceInterID, Int64 HSourceEntryID, string HSourceBillNo, string HSourceBillType, string HMTONO, Int64 HQty2)
        {
            oCn.RunProc("exec h_p_Web_BarCodeBill " + HMaterID + "," + HUnitID + "," + HSupID + "," + HQty + "," + HMinQty + "," + HSourceInterID + "," + HSourceEntryID + ",'" + HSourceBillNo + "','" + HSourceBillType + "','" + HMTONO+"'," + HQty2);
            return true;
        }
        //检查是否已经生成条码
        public bool CheckBarCode(Int64 HSourceInterID, Int64 HSourceEntryID)
        {
            
            DataSet Ds;
            Ds = oCn.RunProcReturn("select * from Gy_BarCodeBill where HSourceInterID=" + HSourceInterID + " and HSourceEntryID=" + HSourceEntryID, "Gy_BarCodeBill");
            if (Ds == null)
            {
                return false;
            }
            if (Ds.Tables[0].Rows.Count == 0)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
 
    }
}