/// <summary>
        /// 新增验证
        /// </summary>
        /// <param name="userinfo"></param>
        /// <returns></returns>
        public ActionResult CheckAdd(PaperBox_check model)
        {
            string otype  = model != null && model.ID == 0 ? "add" : "update";
            var    result = 0;
            Expression <Func <PaperBox_check, bool> > wherelambad = u => 1 == 1;//查询条件;

            if (otype == "add")
            {
                model.CreateTime = model.UpdateTime = DateTime.Now;
                model.CreateUser = model.UpdateUser = 1;
                result           = Bll.Add(model);
            }
            else
            {
                model.UpdateTime = DateTime.Now;
                result           = Bll.Update(model);
            }
            if (result != 0)
            {
                string msg = CommonMsg.SuccessAlert(200, "操作成功 ! ", "PaperBox_check", callbackType: "closeCurrent");
                return(Content(msg));
            }
            else
            {
                return(Content(CommonMsg.ErrorAlert(300, "操作失败")));
            }
        }
        /// <summary>
        /// 列表
        /// </summary>
        /// <param name="pageNum"></param>
        /// <param name="numPerPage"></param>
        /// <param name="model"></param>
        /// <returns></returns>
        public ActionResult Index(int?pageNum, int?numPerPage, PaperBox_check model)
        {
            int pageIndex   = pageNum.HasValue ? pageNum.Value : 1;
            int pageSize    = numPerPage.HasValue && numPerPage.Value > 0 ? numPerPage.Value : 20;
            int recordCount = 0;
            //(q) => q.id,排序的字段
            Expression <Func <PaperBox_check, bool> > wherelambad = u => 1 == 1;//查询条件;

            if (model.PBC_CheckTime != null && model.PBC_CheckTime.ToString() != "0001-01-01 00:00:00")
            {
                wherelambad = wherelambad = u => u.PBC_CheckTime == model.PBC_CheckTime;//检测日期
            }
            if (!string.IsNullOrWhiteSpace(model.PBC_FName))
            {
                wherelambad = wherelambad.And(u => u.PBC_FName == model.PBC_FName);//厂家名称
            }
            //true,升序,false降序
            var data = Bll.GetPageEntities <DateTime>(pageIndex, pageSize, out recordCount, wherelambad, (q) => q.CreateTime, false);

            ViewData["pageIndex"]     = pageIndex;
            ViewData["pageSize"]      = pageSize;
            ViewData["recordCount"]   = recordCount;
            ViewData["PBC_CheckTime"] = model.PBC_CheckTime != null && model.PBC_CheckTime.ToString() != "0001-01-01 00:00:00" ? model.PBC_CheckTime.ToString() : "";
            ViewData["PBC_FName"]     = model.PBC_FName;
            var list = data.ToList();

            return(View(list));
        }
示例#3
0
 public int Update(PaperBox_check model)
 {
     return(Dal.Update(model));
 }
示例#4
0
 public int Add(PaperBox_check model)
 {
     return(Dal.Add(model));
 }