Пример #1
0
        public List <Whwh2> Get_Whwh2_List(Whwh request)
        {
            List <Whwh2> Result = null;
            string       strSQL = "";

            try
            {
                using (var db = DbConnectionFactory.OpenDbConnection("WMS"))
                {
                    if (!string.IsNullOrEmpty(request.StoreNo))
                    {
                        if ((!string.IsNullOrEmpty(request.VerifyStoreNo)) && request.VerifyStoreNo == "Y")
                        {
                            strSQL = "Select  * From Whwh2 Where StoreNo = '" + request.StoreNo + "'";
                        }
                        else
                        {
                            strSQL = "Select Top 10 * From Whwh2 Where WarehouseCode='" + request.WarehouseCode + "' And StoreNo LIKE '" + request.StoreNo + "%'";
                        }
                    }
                    else if (!string.IsNullOrEmpty(request.StagingAreaFlag))
                    {
                        strSQL = "Select * From Whwh2 Where WarehouseCode='" + request.WarehouseCode + "' And IsNull(StagingAreaFlag,'')='" + request.StagingAreaFlag + "'";
                    }
                    else
                    {
                        strSQL = "Select * From Whwh2 Where WarehouseCode='" + request.WarehouseCode + "'";
                    }
                    Result = db.Select <Whwh2>(strSQL);
                }
            }
            catch { throw; }
            return(Result);
        }
Пример #2
0
        public List <Whwh1> Get_Whwh1_List(Whwh request)
        {
            List <Whwh1> Result = null;
            string       strSQL = "";

            try
            {
                using (var db = DbConnectionFactory.OpenDbConnection("WMS"))
                {
                    strSQL = "Select * From Whwh1 Where WarehouseName LIKE '" + request.WarehouseName + "%'";
                    Result = db.Select <Whwh1>(strSQL);
                }
            }
            catch { throw; }
            return(Result);
        }
Пример #3
0
        public List <Whwh2> Get_Whwh2_List(Whwh request)
        {
            List <Whwh2> Result = null;
            string       strSQL = "";

            try
            {
                using (var db = DbConnectionFactory.OpenDbConnection())
                {
                    if (string.IsNullOrEmpty(request.StagingAreaFlag))
                    {
                        strSQL = "Select * From Whwh2 Where WarehouseCode='" + request.WarehouseCode + "'";
                    }
                    else
                    {
                        strSQL = "Select * From Whwh2 Where WarehouseCode='" + request.WarehouseCode + "' And IsNull(StagingAreaFlag,'')='" + request.StagingAreaFlag + "'";
                    }
                    Result = db.Select <Whwh2>(strSQL);
                }
            }
            catch { throw; }
            return(Result);
        }
Пример #4
0
        public List <Whwh1> Get_Whwh1_List(Whwh request)
        {
            List <Whwh1> Result = null;
            string       strSQL = "";

            try
            {
                using (var db = DbConnectionFactory.OpenDbConnection("WMS"))
                {
                    if (request.WarehouseName != null && request.WarehouseName != "")
                    {
                        strSQL = "Select * From Whwh1 Where WarehouseName LIKE '" + request.WarehouseName + "%'";
                    }
                    else
                    {
                        strSQL = "Select * From Whwh1 Where WarehouseCode =(Select Top 1 DefaultWarehouseCode from impa1)";
                    }

                    Result = db.Select <Whwh1>(strSQL);
                }
            }
            catch { throw; }
            return(Result);
        }