1
duhe
2024-11-05 9a75f7db9431032c0f1ecc64be4966a25c74bafa
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
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
 
namespace BLL
{
    public class ClsKF_ChangeBoxBill
    {
        /// <summary>
        /// 根据过滤条件,返回源单信息-返回已审核倒箱单
        /// </summary>
        /// <param name="sWhere"></param>
        /// <param name="sErr"></param>
        /// <returns></returns>
        public DataSet GetKF_ChangeBoxBillList(string sWhere, ref string sErr)
        {
            try
            {
                DAL.Cls_S_KF_ChangeBoxBill_Lite dal = new DAL.Cls_S_KF_ChangeBoxBill_Lite();
                return dal.DisSourceBillList(sWhere);
            }
            catch (Exception e)
            {
                sErr = sErr + "," + e.Message;
                return null;
            }
        }
 
 
    }
}