/// <summary>
        /// 选择暂停
        /// </summary>
        /// <returns></returns>
        public string CloseOperation()
        {
            ProductStockBLL psb  = new ProductStockBLL();
            string          list = Request.Form["list"].ToString();

            string[]  str = list.Split(',');
            DataTable dt  = new DataTable();

            dt.Columns.Add("Scode");
            dt.Columns.Add("Vencode");
            for (int i = 0; i < str.Length; i++)
            {
                DataRow dr = dt.NewRow();
                dr["Scode"]   = str[i].Split('❤')[0];
                dr["Vencode"] = str[i].Split('❤')[1];
                dt.Rows.Add(dr);
            }
            return(psb.ProductOpenScode(dt, "1"));
        }
        /// <summary>
        /// 批量关闭
        /// </summary>
        /// <returns></returns>
        public string CloseOperationAll()
        {
            ProductStockBLL psb = new ProductStockBLL();

            string[] str     = new string[17];
            string   scode   = Request.Form["scode"] == null ? "" : Request.Form["scode"].ToString().Trim();
            string   style   = Request.Form["style"] == null ? "" : Request.Form["style"].ToString().Trim();
            string   price   = Request.Form["price"] == null ? "" : Request.Form["price"].ToString().Trim();
            string   price1  = Request.Form["price1"] == null ? "" : Request.Form["price1"].ToString().Trim();
            string   cat     = Request.Form["Cat1"] == null ? "" : Request.Form["Cat1"].ToString().Trim();
            string   brand   = Request.Form["brand"] == null ? "" : Request.Form["brand"].ToString().Trim();//品牌
            string   stcok   = Request.Form["stcok"] == null ? "" : Request.Form["stcok"].ToString().Trim();
            string   stcok1  = Request.Form["stcok1"] == null ? "" : Request.Form["stcok1"].ToString().Trim();
            string   time    = Request.Form["time"] == null ? "" : Request.Form["time"].ToString().Trim();
            string   time1   = Request.Form["time1"] == null ? "" : Request.Form["time1"].ToString().Trim();
            string   CatLb   = Request.Form["Cat2"] == null ? "" : Request.Form["Cat2"].ToString().Trim();       //类别
            string   Vencode = Request.Form["Vencode"] == null ? "" : Request.Form["Vencode"].ToString().Trim(); //供应商

            str[0]  = scode;
            str[1]  = style;
            str[2]  = price;
            str[3]  = price1;
            str[4]  = cat;//季节
            str[5]  = stcok;
            str[6]  = stcok1;
            str[7]  = brand; //品牌
            str[8]  = time;
            str[9]  = time1;
            str[10] = CatLb;   //类别
            str[11] = Vencode; //供应商
            str[12] = userInfo.User.Id.ToString();
            str[13] = "";
            str[14] = "";
            str[15] = Request.Form["Imagefile"] == null ? "" : Request.Form["Imagefile"].ToString();
            str[16] = Request.Form["Descript"] == null ? "" : Request.Form["Descript"].ToString();
            DataTable dt = psb.GetProductOpenScode(str);

            return(psb.ProductOpenScode(dt, "1"));
        }