예제 #1
0
        public List<Model.Config> GetBanners(Common.DataContext ctx)
        {
            var tb = this.Select(ctx, new Model.Config() {Code = "Banner", State = 0});
             if(tb!=null&&tb.Rows.Count>0)
             {
                 return tb.ToList<Model.Config>();
             }

             return new List<Model.Config>();
        }
예제 #2
0
        public List<Model.Config> GetConfigs(Common.DataContext ctx)
        {
            //var tb = this.Select(ctx, new Model.Config() {State = 0});
             var tb = ctx.ExecuteDataTable("Select * From Config Where State<>255");
             if (tb != null && tb.Rows.Count > 0)
             {
                 return tb.ToList<Model.Config>().OrderBy(c => c.Code).ToList();
             }

             return new List<Model.Config>();
        }
예제 #3
0
    /// <summary>
    /// 获取某一分类产品信息,兼容了无属性的值,分类传-1
    /// </summary>
    /// <param name="JSon"></param>
    /// <returns></returns>
    public BD_GoodsCategory.ResultProductList GetProductsList(string JSon, string version)
    {
        try
        {
            #region JSon取值
            //Common.WriteLog(@"D:\u8\json.txt", JSon);
            string userID            = string.Empty;
            string disID             = string.Empty;
            string categoryID        = string.Empty; //分类ID
            string criticalProductID = string.Empty; //当前列表最临界点产品ID:初始-1
            string getType           = string.Empty; //方向
            string rows     = string.Empty;
            string sortType = string.Empty;
            string compid   = "";
            string sort     = string.Empty;
            Hi.Model.BD_GoodsInfo goods_viewinfo = null;
            Hi.BLL.BD_GoodsInfo   bll_goodsinfo  = new Hi.BLL.BD_GoodsInfo();
            BLL.Common            bll_common     = new BLL.Common();

            JsonData JInfo = JsonMapper.ToObject(JSon);
            if (version.ToLower() == "android" || version.ToLower() == "ios" || float.Parse(version) < 5)//版本号1及之前的版本只传经销商id
            {
                if (JInfo.Count > 0 && JInfo["UserID"].ToString() != "" && JInfo["ResellerID"].ToString() != "" &&
                    JInfo["CriticalProductID"].ToString() != "" &&
                    JInfo["GetType"].ToString() != "" && JInfo["Rows"].ToString() != "" &&
                    JInfo["SortType"].ToString() != "" && JInfo["Sort"].ToString() != "")
                {
                    userID            = JInfo["UserID"].ToString();
                    disID             = JInfo["ResellerID"].ToString();
                    categoryID        = JInfo["ClassifyID"].ToString();
                    criticalProductID = JInfo["CriticalProductID"].ToString();
                    getType           = JInfo["GetType"].ToString();
                    rows     = JInfo["Rows"].ToString();
                    sortType = JInfo["SortType"].ToString();
                    sort     = JInfo["Sort"].ToString();
                }
                else
                {
                    return(new BD_GoodsCategory.ResultProductList()
                    {
                        Result = "F", Description = "参数异常"
                    });
                }
            }
            else if (float.Parse(version) >= 5)//版本号2及以后的版本经销商查询传经销商id,核心企业查询传核心企业id
            {
                if (JInfo.Count > 0 && JInfo["UserID"].ToString() != "" &&
                    ClsSystem.gnvl(JInfo["CompID"], "") != "" &&
                    JInfo["CriticalProductID"].ToString() != "" &&
                    JInfo["GetType"].ToString() != "" && JInfo["Rows"].ToString() != "" &&
                    JInfo["SortType"].ToString() != "" && JInfo["Sort"].ToString() != "")
                {
                    userID            = JInfo["UserID"].ToString();
                    disID             = ClsSystem.gnvl(JInfo["ResellerID"], "");
                    compid            = ClsSystem.gnvl(JInfo["CompID"], "");
                    categoryID        = JInfo["ClassifyID"].ToString();
                    criticalProductID = JInfo["CriticalProductID"].ToString();
                    getType           = JInfo["GetType"].ToString();
                    rows     = JInfo["Rows"].ToString();
                    sortType = JInfo["SortType"].ToString();
                    sort     = JInfo["Sort"].ToString();
                }
                else
                {
                    return(new BD_GoodsCategory.ResultProductList()
                    {
                        Result = "F", Description = "参数异常"
                    });
                }
            }

            Hi.Model.SYS_Users user = new Hi.Model.SYS_Users();
            if (disID != "")
            {
                if (!new Common().IsLegitUser(int.Parse(userID), out user, 0, disID: int.Parse(disID == "" ? "0" : disID)))
                {
                    return new BD_GoodsCategory.ResultProductList()
                           {
                               Result = "F", Description = "参数异常"
                           }
                }
                ;
            }
            else
            {
                if (!new Common().IsLegitUser(int.Parse(userID), out user, compID: int.Parse(compid == "" ? "0" : compid)))
                {
                    return new BD_GoodsCategory.ResultProductList()
                           {
                               Result = "F", Description = "参数异常"
                           }
                }
                ;
            }



            #endregion

            #region 模拟分页

            string strsql   = string.Empty; //搜索sql
            string strWhere = string.Empty;
            if (disID != "")                //查询经销商的商品需要判断经销商是否存在,还要判断商品的可销售区域
            {
                Hi.Model.BD_Distributor dis = new Hi.BLL.BD_Distributor().GetModel(int.Parse(disID));
                if (dis == null || dis.dr == 1 || dis.IsEnabled == 0)
                {
                    return new BD_GoodsCategory.ResultProductList()
                           {
                               Result = "F", Description = "未找到经销商"
                           }
                }
                ;
                compid = compid;
                List <Common.GoodsID> list = Common.DisEnAreaGoodsID(disID, compid);
                if (list != null)
                {
                    strWhere += " and ID not in ( -1 ";

                    strWhere = list.Aggregate(strWhere, (current, goods) => current + ("," + goods.goodsID)) + ")";
                }
            }
            else //查询核心企业的商品需要判断核心企业是否存在
            {
                Hi.Model.BD_Company com = new Hi.BLL.BD_Company().GetModel(int.Parse(compid));
                if (com == null || com.dr == 1 || com.IsEnabled == 0)
                {
                    return new BD_GoodsCategory.ResultProductList()
                           {
                               Result = "F", Description = "未找到核心企业"
                           }
                }
                ;
            }
            const string tabName = " [dbo].[BD_Goods]";      //表名
            sortType = sortType == "2" ? "SalePrice" : "ID"; //价格排序



            switch (categoryID)
            {
            case "-2":     //促销列表
            {
                List <Hi.Model.BD_Promotion> promotionList = new Hi.BLL.BD_Promotion().GetList("",
                                                                                               " compID=" + compid.ToInt() + " and ProStartTime<='" + DateTime.Now.ToString("yyyy-MM-dd") + "' and ProEndTime >='" +
                                                                                               DateTime.Now.ToString("yyyy-MM-dd") + "' and IsEnabled=1", "");

                List <Hi.Model.BD_PromotionDetail> detailList = new List <BD_PromotionDetail>();
                if (promotionList != null && promotionList.Count > 0)
                {
                    detailList = new Hi.BLL.BD_PromotionDetail().GetList("",
                                                                         " ProID in(" + string.Join(",", promotionList.Select(p => p.ID)) + ")", "");
                }
                if (promotionList.Count == 0)
                {
                    return new BD_GoodsCategory.ResultProductList()
                           {
                               Result = "F", Description = "今天无促销"
                           }
                }
                ;
                if (detailList.Count == 0)
                {
                    return new BD_GoodsCategory.ResultProductList()
                           {
                               Result = "F", Description = "今天无促销"
                           }
                }
                ;
                var ienum = detailList.Select(p => p.GoodsID);
                if (ienum.Count() > 0)
                {
                    strWhere += " and ID in ( " + string.Join(",", ienum) + ")";
                }
            }
            break;

            case "-3":     //收藏列表
            {
                List <Hi.Model.BD_DisCollect> collects = new Hi.BLL.BD_DisCollect().GetList("",
                                                                                            "disID=" + disID + " and dr=0", "");
                if (collects != null)
                {
                    strWhere += " and ID not in ( -1 ";
                    strWhere  = collects.Aggregate(strWhere, (current, goods) => current + ("," + goods.GoodsID)) +
                                ")";
                }
            }
            break;

            default:
                if (categoryID != "0" && categoryID != "-1")     //全部
                {
                    strWhere += " and CategoryID in (" + Common.AllCategory(int.Parse(categoryID)) + ")";
                }
                break;
            }

            ////商品可售区域判断
            //if (version.ToLower() == "android" || version.ToLower() == "ios" || version == "1")//版本号1及之前的版本需要
            //{
            //    List<Common.GoodsID> list = Common.DisEnAreaGoodsID(disID, compid);
            //    if (list != null)
            //    {
            //        strWhere += " and ID not in ( -1 ";
            //        strWhere = list.Aggregate(strWhere, (current, goods) => current + ("," + goods.goodsID)) + ")";
            //    }
            //}
            if (disID == "")
            {
                strWhere += " and ISNULL(dr,0)=0  and IsEnabled = 1 and compid=" + compid;
            }
            else
            {
                strWhere += " and isnull(isoffline,0)=1 and   ISNULL(dr,0)=0  and IsEnabled = 1 and compid=" + compid;
            }

            strsql = new Common().PageSqlString(criticalProductID, "ID", tabName, sortType,
                                                sort, strWhere, getType, rows);

            #endregion
            List <Hi.Model.BD_DisCollect> Colist = new List <Hi.Model.BD_DisCollect>();
            if (disID != "")
            {
                Colist = Common.GetDataSource <BD_DisCollect>("",
                                                              " and disID='" + disID + "' and compID=" + compid.ToInt() + " and IsEnabled =1 and ISNULL(dr,0)=0");
            }
            else
            {
                Colist = Common.GetDataSource <BD_DisCollect>("",
                                                              "  and compID=" + compid.ToInt() + " and IsEnabled =1 and ISNULL(dr,0)=0");
            }
            List <Hi.Model.BD_GoodsInfo> infoAllList = new Hi.BLL.BD_GoodsInfo().GetList("",
                                                                                         " CompID=" + compid.ToInt() + " and ISNULL(dr,0)=0 and IsEnabled=1 ", "");

            #region 赋值

            int CategoryID = 0;

            List <BD_GoodsCategory.Product> ProductList = new List <BD_GoodsCategory.Product>();
            DataTable dsList = SqlHelper.Query(SqlHelper.LocalSqlServer, strsql).Tables[0];
            //Common.WriteLog(@"D:\u8\sql.txt", strsql);
            if (dsList != null)
            {
                if (dsList.Rows.Count == 0)
                {
                    return new BD_GoodsCategory.ResultProductList()
                           {
                               Result = "F", Description = "没有更多数据"
                           }
                }
                ;
                foreach (DataRow row in dsList.Rows)
                {
                    string SKUName = string.Empty;

                    BD_GoodsCategory.Product product = new BD_GoodsCategory.Product();
                    product.ProductID   = row["ID"].ToString(); //商品ID
                    product.ProductName = row["GoodsName"].ToString();
                    SKUName            += product.ProductName;
                    //list中的商品价格是goods表中的viewinfoid字段所存的goodsinfoid对应的商品价格
                    //product.SalePrice = decimal.Parse(row["SalePrice"].ToString()).ToString("0.00");
                    if (disID != "")
                    {
                        product.SalePrice = BLL.Common.GetGoodsPrice(Convert.ToInt32(compid), Convert.ToInt32(disID), Convert.ToInt32(ClsSystem.gnvl(row["ViewInfoID"], "0"))).ToString("0.00");
                    }
                    else
                    {
                        product.SalePrice = BLL.Common.GetGoodsPrice(Convert.ToInt32(compid), 0, Convert.ToInt32(ClsSystem.gnvl(row["ViewInfoID"], "0"))).ToString("0.00");
                    }
                    product.IsSale = row["IsSale"].ToString();

                    List <Hi.Model.BD_DisCollect> alist = Colist != null && Colist.Count > 0
                        ? Colist.Where(p => p.GoodsID.ToString() == product.ProductID).ToList()
                        : null;
                    product.IsCollect = alist != null && alist.Count > 0 ? "1" : "0";
                    product.Title     = row["Title"].ToString();
                    //product.Details = row["Details"].ToString();
                    product.Title      = row["Title"].ToString();
                    product.Unit       = row["Unit"].ToString();
                    product.ClassifyID = row["CategoryID"].ToString();
                    CategoryID         = int.Parse(row["CategoryID"].ToString()); //类别ID

                    List <BD_GoodsCategory.Pic> Pic = new List <BD_GoodsCategory.Pic>();

                    #region List<Pic> Pic

                    if (row["Pic"].ToString() != "" && row["Pic"].ToString() != "X")
                    {
                        BD_GoodsCategory.Pic pic = new BD_GoodsCategory.Pic();
                        pic.ProductID = row["ID"].ToString();
                        pic.IsDeafult = "1";
                        pic.PicUrl    = ConfigurationManager.AppSettings["ImgViewPath"].ToString().Trim() + "GoodsImg/" +
                                        row["Pic"].ToString();
                        Pic.Add(pic);
                    }

                    Pic.AddRange(GetPicList(row["ID"].ToString()));

                    #endregion

                    product.ProductPicUrlList = Pic;

                    List <BD_GoodsCategory.SKU> SKUList = new List <BD_GoodsCategory.SKU>();
                    string strID = "0";

                    #region 通过 商品ID和属性值ID关联表,找到属性值

                    List <Hi.Model.BD_GoodsInfo> goodsInfoList = infoAllList != null && infoAllList.Count > 0
                        ? infoAllList.Where(p => p.GoodsID.ToString() == row["ID"].ToString()).ToList()
                        : null;
                    foreach (Hi.Model.BD_GoodsInfo goodsInfo in goodsInfoList)
                    {
                        if (!Common.IsOffline(goodsInfo.ID))
                        {
                            continue;
                        }

                        BD_GoodsCategory.SKU SKU = new BD_GoodsCategory.SKU();
                        //SKUID是GoodsInfoID,SKUName是GoodsName+各种属性值
                        SKU.SKUID     = goodsInfo.ID.ToString();
                        SKU.ProductID = goodsInfo.GoodsID.ToString();
                        SKU.BarCode   = goodsInfo.BarCode;
                        //SKUName = GoodsName + ValueInfo
                        SKU.SKUName = SKUName + " " + goodsInfo.ValueInfo;

                        SKU.ValueInfo = goodsInfo.ValueInfo;
                        SKU.SalePrice = goodsInfo.SalePrice.ToString("0.00");


                        SKU.ProductName = row["GoodsName"].ToString();
                        SKU.ProductCode = ClsSystem.gnvl(row["GoodsCode"], "");

                        int ProID = 0;   //暂时未用到 促销ID
                        SKU.IsPro = "0"; //默认不是促销价
                        decimal price = Common.GetProPrice(goodsInfo.GoodsID.ToString(), goodsInfo.ID.ToString(),
                                                           goodsInfo.CompID.ToString(), out ProID);
                        if (price != 0)
                        {
                            SKU.IsPro   = "1";
                            SKU.ProInfo = GetProInfo(ProID, goodsInfo.ID);
                        }
                        //if (price == 0)
                        //{
                        //    if (disID != "")
                        //    {
                        //        List<Hi.Model.BD_GoodsPrice> goodsPrice = new Hi.BLL.BD_GoodsPrice().GetList("",
                        //            " GoodsInfoID='" + goodsInfo.ID + "' and ISNULL(dr,0)=0 and compid='" + goodsInfo.CompID +
                        //            "' and DisID = " + disID + " and isnull(IsEnabled,0)=1", "");
                        //        SKU.TinkerPrice = goodsPrice.Count != 0
                        //            ? goodsPrice[0].TinkerPrice.ToString("0.00")
                        //            : goodsInfo.TinkerPrice.ToString("0.00");
                        //    }
                        //    else
                        //    {
                        //        SKU.TinkerPrice = goodsInfo.TinkerPrice.ToString("0.00");
                        //    }
                        //}
                        //else
                        //{
                        //    SKU.IsPro = "1"; //是促销价
                        //    SKU.ProInfo = GetProInfo(ProID, goodsInfo.ID);
                        //    SKU.TinkerPrice = price.ToString("0.00");
                        //}
                        if (disID == "")
                        {
                            SKU.TinkerPrice = BLL.Common.GetGoodsPrice(Convert.ToInt32(compid), 0, goodsInfo.ID).ToString("0.00");
                        }
                        else
                        {
                            SKU.TinkerPrice = BLL.Common.GetGoodsPrice(Convert.ToInt32(compid), Convert.ToInt32(disID), goodsInfo.ID).ToString("0.00");
                        }
                        //获取特定属性商品的库存
                        SKU.Inventory = goodsInfo.Inventory.ToString();


                        List <BD_GoodsCategory.ProductAttValueID> ProductAttValueIDList = new List <BD_GoodsCategory.ProductAttValueID>();

                        List <Hi.Model.BD_GoodsAttrsInfo> attrList = new Hi.BLL.BD_GoodsAttrsInfo().GetList("", " GoodsID='" + goodsInfo.GoodsID + "' and ISNULL(dr,0)=0", "");
                        if (attrList == null)
                        {
                            return new BD_GoodsCategory.ResultProductList()
                                   {
                                       Result = "F", Description = "未找到商品属性名字"
                                   }
                        }
                        ;
                        List <Hi.Model.BD_GoodsAttrs> attrValList = new Hi.BLL.BD_GoodsAttrs().GetList("*", " CompID =" + compid.ToInt() + "", "");
                        foreach (Hi.Model.BD_GoodsAttrsInfo attribute in attrList)
                        {
                            strID += "," + attribute.AttrsID;

                            string[] args  = new[] { goodsInfo.ValueInfo };
                            string[] items = args[0].Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
                            foreach (string item in items)
                            {
                                string[] strs = item.Split(new char[] { ':' }, StringSplitOptions.RemoveEmptyEntries);

                                if (strs[1] == attribute.AttrsInfoName)
                                {
                                    BD_GoodsCategory.ProductAttValueID productAttValueID = new BD_GoodsCategory.ProductAttValueID()
                                    {
                                        ProductAttributeValueID = attribute.ID.ToString()//
                                    };
                                    ProductAttValueIDList.Add(productAttValueID);
                                }
                            }
                        }

                        SKU.ProductAttValueIDList = ProductAttValueIDList;
                        SKUList.Add(SKU);
                    }

                    #endregion

                    product.SKUList = SKUList;

                    List <BD_GoodsCategory.ProductAttribute> ProductAttributeList = new List <BD_GoodsCategory.ProductAttribute>();

                    #region 通过商品类别ID和属性ID关联表,找到属性ID

                    List <Hi.Model.BD_GoodsAttrs> val = new Hi.BLL.BD_GoodsAttrs().GetList("", " ID in (" + strID + ") and CompID=" + compid.ToInt() + " and ISNULL(dr,0)=0", "");
                    if (val == null)
                    {
                        return new BD_GoodsCategory.ResultProductList()
                               {
                                   Result = "F", Description = "未找到商品属性"
                               }
                    }
                    ;

                    foreach (Hi.Model.BD_GoodsAttrs goodsAttr in val)
                    {
                        BD_GoodsCategory.ProductAttribute proAttr = new BD_GoodsCategory.ProductAttribute();

                        proAttr.ProductID            = row["ID"].ToString();
                        proAttr.ProductAttributeID   = goodsAttr.ID.ToString(); //属性ID
                        proAttr.ProductAttributeName = goodsAttr.AttrsName;     //属性名称

                        List <BD_GoodsCategory.ProductAttValue> ProductAttValueList = new List <BD_GoodsCategory.ProductAttValue>();

                        List <Hi.Model.BD_GoodsAttrsInfo> attrList = new Hi.BLL.BD_GoodsAttrsInfo().GetList("",
                                                                                                            " AttrsID='" + goodsAttr.ID + "' and CompID=" + compid.ToInt() + " and ISNULL(dr,0)=0" +
                                                                                                            " and AttrsID in (" + strID + ")", "ID"); //todo:商品属性表修改咨询商品结构
                        if (attrList == null)
                        {
                            return new BD_GoodsCategory.ResultProductList()
                                   {
                                       Result = "F", Description = "未找到商品属性名字"
                                   }
                        }
                        ;
                        foreach (Hi.Model.BD_GoodsAttrsInfo attribute in attrList)
                        {
                            BD_GoodsCategory.ProductAttValue productAttValue = new BD_GoodsCategory.ProductAttValue();

                            productAttValue.ProductID           = row["ID"].ToString();
                            productAttValue.ProductAttributeID  = goodsAttr.ID.ToString();
                            productAttValue.ProductAttValueID   = attribute.ID.ToString();
                            productAttValue.ProductAttValueName = attribute.AttrsInfoName;

                            ProductAttValueList.Add(productAttValue);
                        }
                        proAttr.ProductAttValueList = ProductAttValueList;
                        ProductAttributeList.Add(proAttr);
                    }

                    #endregion

                    product.ProductAttributeList = ProductAttributeList;

                    ProductList.Add(product);
                }
            }

            #endregion

            return(new BD_GoodsCategory.ResultProductList()
            {
                Result = "T",
                Description = "获取成功",
                ClassifyID = categoryID,
                ProductList = ProductList
            });
        }
        catch (Exception ex)
        {
            Common.CatchInfo(ex.Message + ":" + ex.StackTrace, "GetResellerProductList :" + JSon);
            return(new BD_GoodsCategory.ResultProductList()
            {
                Result = "F", Description = "异常"
            });
        }
    }