Ejemplo n.º 1
0
 public ActionResult SimpleActivity(string id)
 {
     if (SE_ActivityManager.GetEntity(id) != null)
     {
         return(Json(1));
     }
     else
     {
         return(Json(0));
     }
 }
Ejemplo n.º 2
0
        public ActionResult ActivityEdit(string id = "")
        {
            SE_Activity model = new SE_Activity();

            if (!string.IsNullOrWhiteSpace(id))
            {
                model = SE_ActivityManager.GetEntity(id);
            }
            else
            {
                //  model.Content = "{total:0,rows:[]}";
            }
            return(View(model));
        }
Ejemplo n.º 3
0
 public ActionResult Save(string data)
 {
     if (!string.IsNullOrWhiteSpace(data))
     {
         SE_Activity model    = JsonConvert.DeserializeObject <SE_Activity>(data);
         SE_Activity preModel = null;
         if (model.ID.ToString() != "00000000-0000-0000-0000-000000000000")
         {
             preModel = SE_ActivityManager.GetEntity(model.ID.ToString());
         }
         if (SE_ActivityManager.Save(model) == 1)
         {
             JObject json  = JObject.Parse(data);
             JToken  token = null;
             if (!json.TryGetValue("ID", out token))
             {
                 LoggerManager.InsertOplog(new ConfigHistory()
                 {
                     AfterValue = JsonConvert.SerializeObject(model), Author = User.Identity.Name, Operation = "新增活动:" + model.Title, ObjectType = "SPACF"
                 });
             }
             else
             {
                 LoggerManager.InsertOplog(new ConfigHistory()
                 {
                     BeforeValue = JsonConvert.SerializeObject(preModel), AfterValue = JsonConvert.SerializeObject(model), Author = User.Identity.Name, Operation = "修改活动:" + model.Title, ObjectType = "SPACF"
                 });
             }
             return(Json(1));
         }
         else
         {
             return(Json(0));
         }
     }
     else
     {
         return(Json(0));
     }
 }
Ejemplo n.º 4
0
        //
        // GET: /SimpleActivity/

        public ActionResult ActivityList(int pageIndex = 1, int pageSize = 50, string ActivityName = "", int?SelActivityID = null)
        {
            int    count  = 0;
            string strSql = string.Empty;

            if (ActivityName.Length > 0)
            {
                strSql = " and  M.Title LIKE N'%" + ActivityName + "%'";
            }

            if (SelActivityID.HasValue)
            {
                strSql += " and M.ID like '%" + SelActivityID.Value + "%'";
            }

            var model = SE_ActivityManager.GetList(strSql, pageSize, pageIndex, out count);

            ViewBag.Total      = count;
            ViewBag.pageSize   = pageSize;
            ViewBag.pageNumber = pageIndex;
            return(this.View(model));
        }
Ejemplo n.º 5
0
 public ActionResult Delete(string id)
 {
     return(Json(SE_ActivityManager.Delete(id)));
 }