Пример #1
0
        public ActionResult ActionEdit(TOURIS_TV_DISTRICT districtView)
        {
            try
            {
                districtView.LAST_MODIFIED_BY   = CurrentUser.GetCurrentUserId();
                districtView.LAST_MODIFIED_TIME = CurrentUser.GetCurrentDateTime();

                rs = JsonConvert.DeserializeObject <ResultStatus>(ParsingObject.RequestData(districtView, "District", "Edit", EnumList.IHttpMethod.Post.ToString()));
                if (rs.IsSuccess)
                {
                    rs.SetSuccessStatus("Data has been edited successfully");
                    TempData["msgSuccess"] = rs.MessageText;
                }
                else
                {
                    rs.SetErrorStatus("Data failed to edited");
                    TempData["msgError"] = rs.MessageText;
                }
            }
            catch (Exception ex)
            {
                ModelState.AddModelError("", ex.Message);
                rs.SetErrorStatus("Data failed to edited");
                TempData["msgError"] = rs.MessageText;
            }

            return(RedirectToAction("Index"));
        }
Пример #2
0
        public ActionResult Detail(int id)
        {
            TOURIS_TV_DISTRICT districtView = new TOURIS_TV_DISTRICT();
            TOURIS_TV_DISTRICT districtRes  = new TOURIS_TV_DISTRICT();

            districtView.ID = id;

            districtRes = JsonConvert.DeserializeObject <TOURIS_TV_DISTRICT>(ParsingObject.RequestData(id, "District", "RetrieveData", EnumList.IHttpMethod.Put.ToString()));
            return(View(districtRes));
        }
Пример #3
0
        public ActionResult Edit(int id)
        {
            TOURIS_TV_DISTRICT districtView = new TOURIS_TV_DISTRICT();
            TOURIS_TV_DISTRICT districtRes  = new TOURIS_TV_DISTRICT();

            districtView.ID         = id;
            districtRes             = JsonConvert.DeserializeObject <TOURIS_TV_DISTRICT>(ParsingObject.RequestData(id, "District", "RetrieveData", EnumList.IHttpMethod.Put.ToString()));
            ViewBag.GetCountryList  = Dropdown.GetCountryList();
            ViewBag.GetProvinceList = Dropdown.GetProvinceListByCountryId(districtRes.COUNTRY_ID);
            ViewBag.GetCityList     = Dropdown.GetCityListByProvinceId(districtRes.PROVINCE_ID);

            return(View(districtRes));
        }
Пример #4
0
        public static SelectList GetDistrictList()
        {
            List <TOURIS_TV_DISTRICT> districts = JsonConvert.DeserializeObject <List <TOURIS_TV_DISTRICT> >(ParsingObject.RequestData(null, "District", "GridBind", EnumList.IHttpMethod.Get.ToString()));
            TOURIS_TV_DISTRICT        district  = new TOURIS_TV_DISTRICT {
                ID = 0, DISTRICT_NAME = "Select District :"
            };

            districts.Add(district);
            var districtList = districts.OrderBy(x => x.ID);

            SelectList selectList = new SelectList(districtList, "ID", "DISTRICT_NAME");

            return(selectList);
        }
Пример #5
0
        public IHttpActionResult Add(TOURIS_TV_DISTRICT districtView)
        {
            ApiResData res = new ApiResData();

            try
            {
                if (!ModelState.IsValid)
                {
                    rs.SetErrorStatus(eFunc.fg.SFailed);
                    resObj = JObject.FromObject(res.ResCUD(new object[] { rs }, eFunc.fg.Save, new Exception(eFunc.fg.DataIsntValid)));
                    return(Content(HttpStatusCode.NotFound, resObj));
                }

                TOURIS_TM_DISTRICT district = new TOURIS_TM_DISTRICT();
                district.CITY_ID              = districtView.CITY_ID;
                district.DISTRICT_CODE        = districtView.DISTRICT_CODE;
                district.DISTRICT_NAME        = districtView.DISTRICT_NAME;
                district.DISTRICT_DESCRIPTION = districtView.DISTRICT_DESCRIPTION;
                district.CREATED_BY           = districtView.CREATED_BY;
                district.CREATED_TIME         = districtView.CREATED_TIME;
                district.ROW_STATUS           = eStat.fg.IsActive;

                rs = repo.Add(district);
                if (rs.IsSuccess)
                {
                    rs.SetSuccessStatus();
                }
                else
                {
                    rs.SetErrorStatus(eFunc.fg.SFailed);
                }

                resObj = JObject.FromObject(res.ResCUD(new object[] { rs }, eFunc.fg.Save, null));

                return(Content(HttpStatusCode.OK, resObj));
            }
            catch (Exception ex)
            {
                rs.SetErrorStatus(ex.Message);
                resObj = JObject.FromObject(res.ResCUD(new object[] { rs }, eFunc.fg.Save, new Exception(eFunc.fg.SFailed)));
                return(Content(HttpStatusCode.BadRequest, resObj));
            }
        }
Пример #6
0
        public IHttpActionResult GetDistrictByCityId(int id)
        {
            ApiResData res = new ApiResData();

            try
            {
                List <TOURIS_TM_DISTRICT> districts     = repo.GetDistrictByCityId(id);
                List <TOURIS_TV_DISTRICT> districtViews = new List <TOURIS_TV_DISTRICT>();

                if (districts.Count > 0)
                {
                    foreach (var item in districts)
                    {
                        TOURIS_TV_DISTRICT districtView = new TOURIS_TV_DISTRICT();
                        districtView.ID                   = item.ID;
                        districtView.COUNTRY_ID           = item.TOURIS_TM_CITY.TOURIS_TM_PROVINCE.TOURIS_TM_COUNTRY.ID;
                        districtView.COUNTRY_NAME         = item.TOURIS_TM_CITY.TOURIS_TM_PROVINCE.TOURIS_TM_COUNTRY.COUNTRY_NAME;
                        districtView.PROVINCE_ID          = item.TOURIS_TM_CITY.TOURIS_TM_PROVINCE.ID;
                        districtView.PROVINCE_NAME        = item.TOURIS_TM_CITY.TOURIS_TM_PROVINCE.PROVINCE_NAME;
                        districtView.CITY_ID              = item.TOURIS_TM_CITY.ID;
                        districtView.CITY_NAME            = item.TOURIS_TM_CITY.CITY_NAME;
                        districtView.DISTRICT_NAME        = item.DISTRICT_NAME;
                        districtView.DISTRICT_DESCRIPTION = item.DISTRICT_DESCRIPTION;
                        districtView.CREATED_BY           = item.CREATED_BY;
                        districtView.CREATED_TIME         = item.CREATED_TIME;
                        districtView.LAST_MODIFIED_BY     = item.LAST_MODIFIED_BY;
                        districtView.LAST_MODIFIED_TIME   = item.LAST_MODIFIED_TIME;

                        districtViews.Add(districtView);
                    }
                    rs.SetSuccessStatus();
                }
                resObj = JObject.FromObject(res.ResGetDataTable(new object[] { districtViews }, null));
                return(Content(HttpStatusCode.OK, resObj));
            }
            catch (Exception ex)
            {
                rs.SetErrorStatus(ex.Message);
                resObj = JObject.FromObject(res.ResGetDataTable(new object[] { rs }, new Exception(eFunc.fg.DataNf)));
                return(Content(HttpStatusCode.BadGateway, resObj));
            }
        }
Пример #7
0
        public IHttpActionResult Edit(TOURIS_TV_DISTRICT ProvinceView)
        {
            ApiResData res = new ApiResData();

            try
            {
                if (!ModelState.IsValid)
                {
                    rs.SetErrorStatus(eFunc.fg.SFailed);
                    resObj = JObject.FromObject(res.ResCUD(new object[] { rs }, eFunc.fg.Edit, new Exception(eFunc.fg.DataIsntValid)));
                    return(Content(HttpStatusCode.NotFound, resObj));
                }

                TOURIS_TM_DISTRICT district = new TOURIS_TM_DISTRICT();
                district.ID                   = ProvinceView.ID;
                district.CITY_ID              = ProvinceView.CITY_ID;
                district.DISTRICT_CODE        = ProvinceView.DISTRICT_CODE;
                district.DISTRICT_NAME        = ProvinceView.DISTRICT_NAME;
                district.DISTRICT_DESCRIPTION = ProvinceView.DISTRICT_DESCRIPTION;
                district.LAST_MODIFIED_TIME   = ProvinceView.LAST_MODIFIED_TIME;
                district.LAST_MODIFIED_BY     = ProvinceView.LAST_MODIFIED_BY;

                rs = repo.Edit(district);
                if (rs.IsSuccess)
                {
                    rs.SetSuccessStatus();
                }
                else
                {
                    rs.SetErrorStatus(eFunc.fg.SFailed);
                }

                resObj = JObject.FromObject(res.ResCUD(new object[] { rs }, eFunc.fg.Edit, null));
                return(Content(HttpStatusCode.OK, resObj));
            }
            catch (Exception ex)
            {
                rs.SetErrorStatus(ex.Message);
                resObj = JObject.FromObject(res.ResCUD(new object[] { rs }, eFunc.fg.Edit, new Exception(eFunc.fg.EFailed)));
                return(Content(HttpStatusCode.BadRequest, resObj));
            }
        }
Пример #8
0
        public IHttpActionResult RetrieveData(int id)
        {
            ApiResData res = new ApiResData();

            try
            {
                TOURIS_TM_DISTRICT district     = repo.Retrieve(id);
                TOURIS_TV_DISTRICT districtView = new TOURIS_TV_DISTRICT();

                if (district != null)
                {
                    districtView.ID                   = district.ID;
                    districtView.COUNTRY_ID           = district.TOURIS_TM_CITY.TOURIS_TM_PROVINCE.TOURIS_TM_COUNTRY.ID;
                    districtView.COUNTRY_NAME         = district.TOURIS_TM_CITY.TOURIS_TM_PROVINCE.TOURIS_TM_COUNTRY.COUNTRY_NAME;
                    districtView.PROVINCE_ID          = district.TOURIS_TM_CITY.TOURIS_TM_PROVINCE.ID;
                    districtView.PROVINCE_NAME        = district.TOURIS_TM_CITY.TOURIS_TM_PROVINCE.PROVINCE_NAME;
                    districtView.CITY_ID              = district.TOURIS_TM_CITY.ID;
                    districtView.CITY_NAME            = district.TOURIS_TM_CITY.CITY_NAME;
                    districtView.DISTRICT_CODE        = district.DISTRICT_CODE;
                    districtView.DISTRICT_NAME        = district.DISTRICT_NAME;
                    districtView.DISTRICT_DESCRIPTION = district.DISTRICT_DESCRIPTION;
                    districtView.CREATED_BY           = district.CREATED_BY;
                    districtView.CREATED_TIME         = district.CREATED_TIME;
                    districtView.LAST_MODIFIED_BY     = district.LAST_MODIFIED_BY;
                    districtView.LAST_MODIFIED_TIME   = district.LAST_MODIFIED_TIME;
                    rs.SetSuccessStatus();
                }
                resObj = JObject.FromObject(res.ResGetDataTable(new object[] { districtView }, null));

                return(Content(HttpStatusCode.OK, resObj));
            }
            catch (Exception ex)
            {
                rs.SetErrorStatus(ex.Message);
                resObj = JObject.FromObject(res.ResGetDataTable(new object[] { rs }, new Exception(eFunc.fg.DataNf)));
                return(Content(HttpStatusCode.BadRequest, resObj));
            }
        }