コード例 #1
0
        public ActionResult DeleteRecertification(long id)
        {
            var gVal = new GenericValidator();

            try
            {
                if (id < 1)
                {
                    gVal.Code  = -1;
                    gVal.Error = "Invalid selection";
                    return(Json(gVal, JsonRequestBehavior.AllowGet));
                }
                var delStatus = new RecertificationServices().DeleteRecertification(id);
                if (delStatus < 1)
                {
                    gVal.Code  = -1;
                    gVal.Error = "Recertification could not be deleted. Please try again later.";
                    return(Json(gVal, JsonRequestBehavior.AllowGet));
                }

                gVal.Code  = 5;
                gVal.Error = "Recertification Information was successfully deleted";
                return(Json(gVal, JsonRequestBehavior.AllowGet));
            }
            catch (Exception)
            {
                return(Json(gVal, JsonRequestBehavior.AllowGet));
            }
        }
コード例 #2
0
        public ActionResult GetImporterCertificationObjects(JQueryDataTableParamModel param)
        {
            try
            {
                IEnumerable <RecertificationObject> filteredParentMenuObjects;
                var countG = 0;

                var id = GetImporterId();
                if (id < 1)
                {
                    return(Json(new List <ApplicationObject>(), JsonRequestBehavior.AllowGet));
                }

                var pagedParentMenuObjects = GetUserRecertifications(param.iDisplayLength, param.iDisplayStart, out countG, id);

                if (!string.IsNullOrEmpty(param.sSearch))
                {
                    filteredParentMenuObjects = new RecertificationServices().Search(param.sSearch, id);
                }
                else
                {
                    filteredParentMenuObjects = pagedParentMenuObjects;
                }

                if (!filteredParentMenuObjects.Any())
                {
                    return(Json(new List <RecertificationObject>(), JsonRequestBehavior.AllowGet));
                }

                var sortColumnIndex = Convert.ToInt32(Request["iSortCol_0"]);
                Func <RecertificationObject, string> orderingFunction = (c => sortColumnIndex == 1 ? c.ReferenceCode : c.DateApplied.ToString());

                var sortDirection = Request["sSortDir_0"]; // asc or desc
                filteredParentMenuObjects = sortDirection == "desc" ? filteredParentMenuObjects.OrderBy(orderingFunction) : filteredParentMenuObjects.OrderByDescending(orderingFunction);

                var displayedPersonnels = filteredParentMenuObjects;

                var result = from c in displayedPersonnels
                             select new[] { Convert.ToString(c.Id), c.ReferenceCode, c.DateApplied.ToString(), c.StatusStr };
                return(Json(new
                {
                    param.sEcho,
                    iTotalRecords = countG,
                    iTotalDisplayRecords = countG,
                    aaData = result
                },
                            JsonRequestBehavior.AllowGet));
            }
            catch (Exception ex)
            {
                ErrorLogger.LoggError(ex.StackTrace, ex.Source, ex.Message);
                return(Json(new List <RecertificationObject>(), JsonRequestBehavior.AllowGet));
            }
        }
コード例 #3
0
        public ActionResult EditRecertification(RecertificationObject recertification)
        {
            var gVal = new GenericValidator();

            try
            {
                var stat = ValidateRecertification(recertification);

                if (stat.Code < 1)
                {
                    return(Json(gVal, JsonRequestBehavior.AllowGet));
                }

                if (Session["_recertification"] == null)
                {
                    gVal.Code  = -1;
                    gVal.Error = "Session has timed out.";
                    return(Json(gVal, JsonRequestBehavior.AllowGet));
                }

                var oldrecertification = Session["_recertification"] as RecertificationObject;

                if (oldrecertification == null)
                {
                    gVal.Code  = -1;
                    gVal.Error = "Session has timed out.";
                    return(Json(gVal, JsonRequestBehavior.AllowGet));
                }

                //oldrecertification.Name = recertification.Name;
                //oldrecertification.RecertificationOwnerId = recertification.RecertificationOwnerId;
                //oldrecertification.JettyId = recertification.JettyId;

                var docStatus = new RecertificationServices().UpdateRecertification(oldrecertification);
                if (docStatus < 1)
                {
                    gVal.Code  = -1;
                    gVal.Error = docStatus == -3 ? "Recertification already exists." : "Recertification information could not be updated. Please try again later";
                    return(Json(gVal, JsonRequestBehavior.AllowGet));
                }

                gVal.Code  = oldrecertification.Id;
                gVal.Error = "Recertification information was successfully updated";
                return(Json(gVal, JsonRequestBehavior.AllowGet));
            }
            catch (Exception)
            {
                gVal.Code  = -1;
                gVal.Error = "Recertification information could not be updated. Please try again later";
                return(Json(gVal, JsonRequestBehavior.AllowGet));
            }
        }
コード例 #4
0
        public ActionResult GetRecertificationDocs(long id)
        {
            try
            {
                var recertification = new RecertificationServices().GetRecertificationDocs(id);
                if (recertification == null)
                {
                    return(Json(new List <DocumentObject>(), JsonRequestBehavior.AllowGet));
                }

                Session["_recertification"] = recertification;

                return(Json(recertification, JsonRequestBehavior.AllowGet));
            }
            catch (Exception)
            {
                return(Json(new List <DocumentObject>(), JsonRequestBehavior.AllowGet));
            }
        }
コード例 #5
0
        public ActionResult GetRecertification(long id)
        {
            try
            {
                var recertification = new RecertificationServices().GetRecertification(id);
                if (recertification == null || recertification.Id < 1)
                {
                    return(Json(new RecertificationObject(), JsonRequestBehavior.AllowGet));
                }

                Session["_recertification"] = recertification;

                return(Json(recertification, JsonRequestBehavior.AllowGet));
            }
            catch (Exception)
            {
                return(Json(new RecertificationObject(), JsonRequestBehavior.AllowGet));
            }
        }
コード例 #6
0
        public ActionResult AddRecertification(RecertificationObject recertification)
        {
            var gVal = new GenericValidator();

            try
            {
                var importerInfo = GetLoggedOnUserInfo();
                if (importerInfo.Id < 1)
                {
                    gVal.Error = "Your session has timed out";
                    gVal.Code  = -1;
                    return(Json(gVal, JsonRequestBehavior.AllowGet));
                }

                var validationResult = ValidateRecertification(recertification);

                if (validationResult.Code == 1)
                {
                    return(Json(validationResult, JsonRequestBehavior.AllowGet));
                }


                var appStatus = new RecertificationServices().AddRecertification(recertification);
                if (appStatus < 1)
                {
                    validationResult.Code  = -1;
                    validationResult.Error = appStatus == -2 ? "Recertification upload failed. Please try again." : "The Recertification Information already exists";
                    return(Json(validationResult, JsonRequestBehavior.AllowGet));
                }

                gVal.Code  = appStatus;
                gVal.Error = "Recertification was successfully added.";
                return(Json(gVal, JsonRequestBehavior.AllowGet));
            }
            catch (Exception)
            {
                gVal.Error = "Recertification processing failed. Please try again later";
                gVal.Code  = -1;
                return(Json(gVal, JsonRequestBehavior.AllowGet));
            }
        }