예제 #1
0
        // GET: /Edit
        public ActionResult Edit(string occ, string dcc)
        {
            //Check Exists
            APISCountry apisCountry = new APISCountry();

            apisCountry = apisCountryRepository.GetAPISCountry(occ, dcc);
            if (apisCountry == null)
            {
                ViewData["ActionMethod"] = "EditGet";
                return(View("RecordDoesNotExistError"));
            }
            //AccessRights
            RolesRepository rolesRepository = new RolesRepository();

            if (!rolesRepository.HasWriteAccessToReferenceInfo())
            {
                ViewData["Message"] = "You do not have access to this item";
                return(View("Error"));
            }
            CountryRepository countryRepository = new CountryRepository();
            SelectList        countriesList     = new SelectList(countryRepository.GetAllCountries().ToList(), "CountryCode", "CountryName");

            ViewData["Countries"] = countriesList;

            apisCountryRepository.EditForDisplay(apisCountry);
            return(View(apisCountry));
        }
예제 #2
0
        //Add to DB
        public void Add(APISCountry apisCountry)
        {
            string adminUserGuid = HttpContext.Current.User.Identity.Name.Split(new[] { '|' })[0];

            db.spDesktopDataAdmin_InsertAPISCountry_v1(
                apisCountry.OriginCountryCode,
                apisCountry.DestinationCountryCode,
                apisCountry.StartDate,
                adminUserGuid
                );
        }
예제 #3
0
        //Delete From DB
        public void Delete(APISCountry apisCountry)
        {
            string adminUserGuid = HttpContext.Current.User.Identity.Name.Split(new[] { '|' })[0];

            db.spDesktopDataAdmin_DeleteAPISCountry_v1(
                apisCountry.OriginCountryCode,
                apisCountry.DestinationCountryCode,
                adminUserGuid,
                apisCountry.VersionNumber
                );
        }
예제 #4
0
        //Update in DB
        public void Update(APISCountry apisCountry, string originalOCC, string originalDCC)
        {
            string adminUserGuid = HttpContext.Current.User.Identity.Name.Split(new[] { '|' })[0];

            db.spDesktopDataAdmin_UpdateAPISCountry_v1(
                originalOCC,
                originalDCC,
                apisCountry.OriginCountryCode,
                apisCountry.DestinationCountryCode,
                apisCountry.StartDate,
                adminUserGuid,
                apisCountry.VersionNumber
                );
        }
예제 #5
0
        public ActionResult Create(APISCountry apisCountry)
        {
            //AccessRights
            RolesRepository rolesRepository = new RolesRepository();

            if (!rolesRepository.HasWriteAccessToReferenceInfo())
            {
                ViewData["Message"] = "You do not have access to this item";
                return(View("Error"));
            }

            //Update  Model from Form
            try
            {
                UpdateModel(apisCountry);
            }
            catch
            {
                string n = "";
                foreach (ModelState modelState in ViewData.ModelState.Values)
                {
                    foreach (ModelError error in modelState.Errors)
                    {
                        n += error.ErrorMessage;
                    }
                }
                ViewData["Message"] = "ValidationError : " + n;
                return(View("Error"));
            }


            //Database Update
            try
            {
                apisCountryRepository.Add(apisCountry);
            }
            catch (SqlException ex)
            {
                LogRepository logRepository = new LogRepository();
                logRepository.LogError(ex.Message);

                ViewData["Message"] = "There was a problem with your request, please see the log file or contact an administrator for details";
                return(View("Error"));
            }


            ViewData["NewSortOrder"] = 0;
            return(RedirectToAction("List"));
        }
예제 #6
0
        //Add Data From Linked Tables for Display
        public void EditForDisplay(APISCountry apisCountry)
        {
            CountryRepository countryRepository = new CountryRepository();
            Country           country           = new Country();

            country = countryRepository.GetCountry(apisCountry.OriginCountryCode);
            if (country != null)
            {
                apisCountry.OriginCountryName = country.CountryName;
            }
            country = countryRepository.GetCountry(apisCountry.DestinationCountryCode);
            if (country != null)
            {
                apisCountry.DestinationCountryName = country.CountryName;
            }
        }
예제 #7
0
        public ActionResult Delete(string originCountryCode, string destinationCountryCode, FormCollection collection)
        {
            //Get Item From Database
            APISCountry apisCountry = apisCountryRepository.GetAPISCountry(originCountryCode, destinationCountryCode);

            //Check Exists
            if (apisCountry == null)
            {
                ViewData["ActionMethod"] = "DeletePost";
                return(View("RecordDoesNotExistError"));
            }

            //AccessRights
            RolesRepository rolesRepository = new RolesRepository();

            if (!rolesRepository.HasWriteAccessToReferenceInfo())
            {
                ViewData["Message"] = "You do not have access to this item";
                return(View("Error"));
            }

            //Delete Item
            try
            {
                apisCountry.VersionNumber = Int32.Parse(collection["VersionNumber"]);
                apisCountryRepository.Delete(apisCountry);
            }
            catch (SqlException ex)
            {
                //Versioning Error - go to standard versionError page
                if (ex.Message == "SQLVersioningError")
                {
                    ViewData["ReturnURL"] = "/APISCountry.mvc/Delete?occ=" + originCountryCode + "&dcc=" + destinationCountryCode;
                    return(View("VersionError"));
                }
                LogRepository logRepository = new LogRepository();
                logRepository.LogError(ex.Message);

                ViewData["Message"] = "There was a problem with your request, please see the log file or contact an administrator for details";
                return(View("Error"));
            }

            return(RedirectToAction("List"));
        }
예제 #8
0
        // GET: /Create
        public ActionResult Create()
        {
            //AccessRights
            RolesRepository rolesRepository = new RolesRepository();

            if (!rolesRepository.HasWriteAccessToReferenceInfo())
            {
                ViewData["Message"] = "You do not have access to this item";
                return(View("Error"));
            }

            CountryRepository countryRepository = new CountryRepository();
            SelectList        countriesList     = new SelectList(countryRepository.GetAllCountries().ToList(), "CountryCode", "CountryName");

            ViewData["Countries"] = countriesList;

            APISCountry apisCountry = new APISCountry();

            return(View(apisCountry));
        }
예제 #9
0
        public ActionResult Delete(string occ, string dcc)
        {
            //Check Exists
            APISCountry apisCountry = new APISCountry();

            apisCountry = apisCountryRepository.GetAPISCountry(occ, dcc);
            if (apisCountry == null)
            {
                ViewData["ActionMethod"] = "DeleteGet";
                return(View("RecordDoesNotExistError"));
            }

            //AccessRights
            RolesRepository rolesRepository = new RolesRepository();

            if (!rolesRepository.HasWriteAccessToReferenceInfo())
            {
                ViewData["Message"] = "You do not have access to this item";
                return(View("Error"));
            }

            apisCountryRepository.EditForDisplay(apisCountry);
            return(View(apisCountry));
        }
예제 #10
0
        public ActionResult Edit(string occ, string dcc, FormCollection collection)
        {
            //Get Item From Database
            APISCountry apisCountry = apisCountryRepository.GetAPISCountry(collection["OriginalOCC"], collection["OriginalDCC"]);

            //Check Exists
            if (apisCountry == null)
            {
                ViewData["ActionMethod"] = "EditPost";
                return(View("RecordDoesNotExistError"));
            }

            //AccessRights
            RolesRepository rolesRepository = new RolesRepository();

            if (!rolesRepository.HasWriteAccessToReferenceInfo())
            {
                ViewData["Message"] = "You do not have access to this item";
                return(View("Error"));
            }

            //Update Item from Form
            try
            {
                UpdateModel(apisCountry);
            }
            catch
            {
                string n = "";
                foreach (ModelState modelState in ViewData.ModelState.Values)
                {
                    foreach (ModelError error in modelState.Errors)
                    {
                        n += error.ErrorMessage;
                    }
                }
                ViewData["Message"] = "ValidationError : " + n;
                return(View("Error"));
            }


            //Database Update
            try
            {
                apisCountryRepository.Update(apisCountry, collection["OriginalOCC"], collection["OriginalDCC"]);
            }
            catch (SqlException ex)
            {
                //Versioning Error
                if (ex.Message == "SQLVersioningError")
                {
                    ViewData["ReturnURL"] = "/APISCountry.mvc/Edit?occ=" + collection["OriginalOCC"] + "&dcc=" + collection["OriginalDCC"];
                    return(View("VersionError"));
                }

                //Generic Error
                ViewData["Message"] = "There was a problem with your request, please see the log file or contact an administrator for details";
                return(View("Error"));
            }

            //Success
            return(RedirectToAction("List"));
        }