Exemplo n.º 1
0
        public ActionResult ThongKeBanDo(string keyWord, string type, int?page)
        {
            try
            {
                DT_WebGISEntities MVCContext = new DT_WebGISEntities();
                TempData["TypeOfMapID"] = MVCContext.CMS_TypeOfMap.ToList();
                TempData.Keep("TypeOfMapID");


                int          TypeOfMapID  = type == null ? 0 : Convert.ToInt32(type);
                string       searchString = keyWord != null ? keyWord : "";
                CMS_Maps_DAO objDAO       = new CMS_Maps_DAO();
                var          data         = objDAO.Search(searchString, TypeOfMapID);
                ViewBag.SearchString = searchString;
                ViewBag.TYPE         = type;

                int pageSize   = 10;
                int pageNumber = (page ?? 1);
                return(View(data.ToPagedList(pageNumber, pageSize)));
            }
            catch (Exception ex)
            {
                SetAlert("Lỗi" + ex.Message.ToString(), "error");
                Logs.WriteLog(ex);
                return(View());
            }
        }
Exemplo n.º 2
0
        public ActionResult EditBanDo(int id)
        {
            try
            {
                CMS_Maps_DAO       objDAO        = new CMS_Maps_DAO();
                DT_WebGISEntities  MyContext     = new DT_WebGISEntities();
                CMS_MapService_DAO objMapSeveDAO = new CMS_MapService_DAO();
                CMS_Services_DAO   objSeverDAO   = new CMS_Services_DAO();
                var Partial = objDAO.GetMapByID(id);
                var list    = MyContext.CMS_TypeOfMap.ToList();
                TempData["TypeOfMap"] = new SelectList(list, "ID", "Name", (int)Partial.TypeOfMapID);
                TempData.Keep("TypeOfMap");

                var list1 = MyContext.CMS_MapService_ByMapID(id).ToList();
                TempData["MapServices"] = list1.ToList();
                TempData.Keep("MapServices");
                var list2 = MyContext.CMS_Services.Where(s => s.Publish == true).ToList();
                TempData["Services"] = list2;
                TempData.Keep("Services");
                return(View(Partial));
            }
            catch (Exception ex)
            {
                SetAlert("Lỗi" + ex.Message.ToString(), AlertType.Error);
                Logs.WriteLog(ex);
                return(View());
            }
        }
Exemplo n.º 3
0
        public ActionResult EditBanDo(FormCollection fc, CMS_Maps obj)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    string strThumbnailDir = System.Configuration.ConfigurationManager.AppSettings["ThumbnailFileUrl"].ToString();
                    var    item            = Request.Files.AllKeys.Where(m => m.StartsWith("Thumbnail")).FirstOrDefault();
                    var    imgThumbnail    = Request.Files[item];
                    var    fileName        = "thumbnail_" + DateTime.Now.ToString("yyyyMMddhhmmsstt") + Guid.NewGuid().ToString() + Path.GetExtension(imgThumbnail.FileName);

                    //if (imgThumbnail != null && imgThumbnail.ContentLength > 0)
                    //{
                    //    obj.Thumbnail = fileName;
                    //}

                    CMS_MapService     objMapService    = new CMS_MapService();
                    CMS_Maps_DAO       objDAO           = new CMS_Maps_DAO();
                    CMS_MapService_DAO objDAOMapService = new CMS_MapService_DAO();
                    string             strIDService     = "0";
                    if (fc["ddlServices"] != null)
                    {
                        strIDService = fc["ddlServices"].ToString();
                    }
                    if (strIDService == "0")
                    {
                        SetAlert("Chọn Services", AlertType.Error);
                        return(View());
                    }
                    if (objDAO.Update(obj))
                    {
                        // Save file
                        var path = Path.Combine(Server.MapPath(strThumbnailDir), fileName);
                        imgThumbnail.SaveAs(path);

                        objDAOMapService.DeleteByIDMap(obj.ID);
                        objMapService.MapID     = obj.ID;
                        objMapService.Orders    = 0;
                        objMapService.ServiceID = Convert.ToInt32(strIDService);
                        objDAOMapService.Insert(objMapService);
                        SetAlert("Cập nhật bản đồ thành công", AlertType.Success);
                        return(RedirectToAction("Index", "CMS_Maps"));
                    }
                    else
                    {
                        SetAlert("Cập nhật bản đồ không thành công", AlertType.Error);
                    }
                }
                return(View(obj));
            }
            catch (Exception ex)
            {
                SetAlert("Lỗi" + ex.Message.ToString(), AlertType.Error);
                Logs.WriteLog(ex);
                return(View());
            }
        }
Exemplo n.º 4
0
        public ActionResult export_excel_bando(FormCollection fc)
        {
            try
            {
                DT_WebGISEntities MyContext = new DT_WebGISEntities();
                CMS_Maps_DAO      objDAO    = new CMS_Maps_DAO();
                int          typeID         = fc["type_excel"].ToString() != "" ? Convert.ToInt32(fc["type_excel"].ToString()) : 0;
                string       keyWord        = fc["key_excel"].ToString();
                var          data           = objDAO.Search(keyWord, typeID);
                MemoryStream stream         = new MemoryStream();

                using (SpreadsheetDocument spreadsheetDoc = SpreadsheetDocument.Create(stream, SpreadsheetDocumentType.Workbook))
                {
                    CWorkbook workbook  = new CWorkbook(spreadsheetDoc);
                    string    sheetName = "ThongKe";

                    CSheet sheetLH = createSheet_bando(spreadsheetDoc, workbook, sheetName, data);

                    sheetLH._worksheetPart.Worksheet.Save();
                }
                string fileName    = "ThongKeBanDo.xlsx";
                var    contentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
                Response.Clear();
                Response.ContentType = contentType;
                string contentDisposition = "attachment; filename*=UTF-8''" + Uri.EscapeDataString(fileName);
                Response.AddHeader("content-disposition", contentDisposition);
                Response.AddHeader("Content-Length", stream.Length.ToString());
                Response.Cache.SetCacheability(HttpCacheability.NoCache);
                Response.BinaryWrite(stream.ToArray());
                Response.Flush();
                Response.SuppressContent = true;
                System.Web.HttpContext.Current.ApplicationInstance.CompleteRequest();
                return(View());
            }
            catch (Exception ex)
            {
                SetAlert("Lỗi" + ex.Message.ToString(), "error");
                Logs.WriteLog(ex);
                return(View());
            }
        }
Exemplo n.º 5
0
        public ActionResult Index(string searchString, int?TypeOfMap, int?page)
        {
            try
            {
                //int TypeOfMapID = TypeOfMap != null ? Convert.ToInt32(TypeOfMap) : 0;
                int TypeOfMapID = 0;
                searchString = searchString != null ? searchString : "";
                CMS_Maps_DAO objDAO = new CMS_Maps_DAO();
                var          data   = objDAO.GetAll();
                ViewBag.SearchString = searchString;

                int pageSize   = 10;
                int pageNumber = (page ?? 1);
                return(View(data.ToPagedList(pageNumber, pageSize)));
            }
            catch (Exception ex)
            {
                SetAlert("Lỗi" + ex.Message.ToString(), "error");
                Logs.WriteLog(ex);
                return(View());
            }
        }
Exemplo n.º 6
0
 public JsonResult Delete(int id)
 {
     try
     {
         CMS_Maps_DAO       objDAO           = new CMS_Maps_DAO();
         CMS_MapService_DAO objDAOMapService = new CMS_MapService_DAO();
         objDAOMapService.DeleteByIDMap(id);
         if (objDAO.Delete(id))
         {
             SetAlert("Xóa bản đồ thành công", AlertType.Success);
             return(Json(new { status = true, message = "" }, JsonRequestBehavior.AllowGet));
         }
         else
         {
             return(Json(new { status = false, message = "Lỗi xóa bản đồ" }, JsonRequestBehavior.AllowGet));
         }
     }
     catch (Exception ex)
     {
         Logs.WriteLog(ex);
         return(Json(new { status = false, message = "Lỗi: " + ex }, JsonRequestBehavior.AllowGet));
     }
 }
Exemplo n.º 7
0
        public ActionResult CreateBanDo(FormCollection fc, CMS_Maps obj)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    string strThumbnailDir = System.Configuration.ConfigurationManager.AppSettings["ThumbnailFileUrl"].ToString();
                    var    item            = Request.Files.AllKeys.Where(m => m.StartsWith("Thumbnail")).FirstOrDefault();
                    var    imgThumbnail    = Request.Files[item];
                    if (imgThumbnail != null && imgThumbnail.ContentLength > 0)
                    {
                        //var fileName = "thumbnail_" + DateTime.Now.ToString("yyyyMMddhhmmsstt") + Guid.NewGuid().ToString() + Path.GetExtension(imgThumbnail.FileName);
                        //obj.Thumbnail = fileName;

                        // Save file
                        //var path = Path.Combine(Server.MapPath(strThumbnailDir), fileName);
                        //imgThumbnail.SaveAs(path);
                    }
                    else
                    {
                        //obj.Thumbnail = "thumbnail_DEFAULT.jpg";
                    }

                    CMS_MapService     objMapService    = new CMS_MapService();
                    CMS_Maps_DAO       objDAO           = new CMS_Maps_DAO();
                    CMS_MapService_DAO objDAOMapService = new CMS_MapService_DAO();
                    string             strIDService     = "0";
                    if (fc["ddlServices"] != null)
                    {
                        strIDService = fc["ddlServices"].ToString();
                    }
                    if (strIDService == "0")
                    {
                        SetAlert("Chọn Services", AlertType.Error);
                        return(View());
                    }
                    CSF_Users_DAO objUserDao = new CSF_Users_DAO();
                    int           intUserID  = objUserDao.GetUserIDByUserName(HttpContext.User.Identity.Name);

                    obj.UserCreate = intUserID;
                    int ReturnID = objDAO.Insert(obj);
                    if (ReturnID > 0)
                    {
                        objMapService.MapID     = ReturnID;
                        objMapService.Orders    = 0;
                        objMapService.ServiceID = Convert.ToInt32(strIDService);
                        objDAOMapService.Insert(objMapService);
                        SetAlert("Thêm bản đồ thành công", AlertType.Success);
                        return(RedirectToAction("Index", "CMS_Maps"));
                    }
                    else
                    {
                        ModelState.AddModelError("", "Thêm bản đồ không thành công");
                    }
                    return(View("Index"));
                }
                return(View());
            }
            catch (Exception ex)
            {
                SetAlert("Lỗi" + ex.Message.ToString(), AlertType.Error);
                Logs.WriteLog(ex);
                return(View());
            }
        }