コード例 #1
0
ファイル: SUController.cs プロジェクト: singlag888/NewWeb
        public ActionResult EmailStock(Dictionary <string, string> queryvalues)
        {
            int    _page     = queryvalues.ContainsKey("page") ? Convert.ToInt32(queryvalues["page"]) : 1;
            string UserName  = queryvalues.ContainsKey("SearchExt") ? queryvalues["SearchExt"] : "";
            string GroupName = queryvalues.ContainsKey("SearchExt2") ? queryvalues["SearchExt2"] : "";
            //
            BaseDataView bdv = new BaseDataView()
            {
                SearchExt  = UserName,
                SearchExt2 = GroupName,
                Page       = _page
            };


            if (Request.IsAjaxRequest())
            {
                return(PartialView("EmailStock_PageList", ServEmailBLL.GetListByUserStock(bdv)));
            }



            //UserStock

            bdv.BaseDataList = ServEmailBLL.GetListByUserStock(bdv);

            return(View(bdv));
        }
コード例 #2
0
ファイル: FMController.cs プロジェクト: singlag888/NewWeb
        // DELETE: api/FM/5
        public object Options([FromBody] ServEmail model)
        {
            int result = ServEmailBLL.Delete(model);

            if (result > 0)
            {
                return(new { result = 0 });
            }
            return(new { result = 1 });
        }
コード例 #3
0
ファイル: SUController.cs プロジェクト: singlag888/NewWeb
        public ActionResult EmailUpdateStock(Dictionary <string, string> queryvalues)
        {
            int id = queryvalues.ContainsKey("id") ? Convert.ToInt32(queryvalues["id"]) : -1;

            UserStock model = ServEmailBLL.GetModelStock(id);

            model.GroupID = id;



            return(View(model));
        }
コード例 #4
0
ファイル: SUController.cs プロジェクト: singlag888/NewWeb
        public ActionResult EmailStockUUser(Dictionary <string, string> queryvalues)
        {
            int id = queryvalues.ContainsKey("id") ? Convert.ToInt32(queryvalues["id"]) : -1;

            UserStock model = ServEmailBLL.GetModelStockAll(id);

            model.GroupID = id;

            //查询剩余没有分配的库存用户,显示到界面上,让其添加

            return(View(model));
        }
コード例 #5
0
ファイル: SUController.cs プロジェクト: singlag888/NewWeb
        public ActionResult AddStockGroup(Dictionary <string, string> queryvalues)
        {
            string GroupName = queryvalues.ContainsKey("GroupName") ? queryvalues["GroupName"].ToString() : ""; //库组名称

            Int64 Value = queryvalues.ContainsKey("Value") ? Convert.ToInt64(queryvalues["Value"]) : 0;         //库存值



            if (Request.IsAjaxRequest())
            {
                int res = ServEmailBLL.AddStockGroup(GroupName, Value);
                return(Content(res.ToString()));
            }

            return(View());
        }
コード例 #6
0
ファイル: SUController.cs プロジェクト: singlag888/NewWeb
        public ActionResult SaveStockUser(Dictionary <string, string> queryvalues)
        {
            int    GroupID  = queryvalues.ContainsKey("GroupID") ? Convert.ToInt32(queryvalues["GroupID"]) : -1; //库组
            string UserName = queryvalues.ContainsKey("UserName") ? queryvalues["UserName"].ToString() : "";     //用户名

            //检测非法字符
            if (UserName.Contains("'"))
            {
                return(Content("2"));
            }
            //检测用户是否已经被其他的库存分配了
            if (UserName != "")
            {
                IEnumerable <UserStock> users = ServEmailBLL.GetOtherUsers(GroupID, UserName);
                if (users.Count() > 0)
                {
                    return(Content("3"));
                }

                //说明有用户不存在
                IEnumerable <AspNetUser> aspnetUsers = SUBLL.GetAspNetUsersByUserName(UserName);
                int num = UserName.Split(',').Length;
                if (aspnetUsers.Count() != num)
                {
                    return(Content("4"));
                }
            }
            //用户是否存在



            //Oper
            int res = ServEmailBLL.AddStockUser(GroupID, UserName);

            if (res >= 1)
            {
                return(Content("1"));
            }
            else
            {
                return(Content("0"));
            }
        }
コード例 #7
0
ファイル: SUController.cs プロジェクト: singlag888/NewWeb
        public ActionResult SaveStockValue(Dictionary <string, string> queryvalues)
        {
            Int64  ChipPot = queryvalues.ContainsKey("ChipPot") ? Convert.ToInt64(queryvalues["ChipPot"]) : -1; //添加,减少的库存值
            int    GroupID = queryvalues.ContainsKey("GroupID") ? Convert.ToInt32(queryvalues["GroupID"]) : -1; //库组
            string Oper    = queryvalues.ContainsKey("Oper") ? queryvalues["Oper"].ToString() : "";             //库组

            if (Oper == "delete")
            {
                ChipPot = ChipPot * -1;
            }

            //Oper
            int res = ServEmailBLL.AddStock(GroupID, ChipPot);

            if (res >= 1)
            {
                return(Content("1"));
            }
            else
            {
                return(Content("0"));
            }
        }