Пример #1
0
        public async Task <GetFixAssetOutput> GetFixAssetForEditAsync(NullableIdDto input)
        {
            FixAsset FixAsset = null;

            if (input.Id.HasValue && input.Id.Value > 0)
            {
                FixAsset = await _menuRepository.GetAsync(input.Id.Value);
            }
            var output = new GetFixAssetOutput();

            output.FixAsset = FixAsset != null
                ? ObjectMapper.Map <FixAssetDto>(FixAsset)
                : new FixAssetDto();

            var parentMenuId = output.FixAsset.ParentId ?? 0;

            output.FixAssets = await _menuRepository.GetAll()
                               .Where(m => m.Status)
                               .Select(c => new ComboboxItemDto(c.Id.ToString(), c.Name)
            {
                IsSelected = parentMenuId == c.Id
            })
                               .ToListAsync();

            return(output);
        }
Пример #2
0
        public ActionResult EditAsset(FixAssetViewModel assetModel)
        {
            FixAsset assetToEdit = new FixAsset();

            assetToEdit.AssetTag      = assetModel.AssetTag;
            assetToEdit.FixAssetID    = assetModel.FixAssetID;
            assetToEdit.SerialNumber  = assetModel.SerialNumber;
            assetToEdit.Model         = assetModel.Model;
            assetToEdit.Brand         = assetModel.Brand;
            assetToEdit.AssetClassID  = assetModel.AssetClassID;
            assetToEdit.AssetStatusID = assetModel.AssetStatusID;
            assetToEdit.AssetTypeID   = assetModel.AssetTypeID;
            assetToEdit.IssuerID      = assetModel.IssuerID;
            assetToEdit.LocationID    = assetModel.LocationID;
            assetToEdit.Remarks       = assetModel.Remarks;

            if (assetModel.AcquisitionDate != null)
            {
                assetToEdit.AcquisitionDate = assetModel.AcquisitionDate;
            }

            if (assetModel.ExpiryDate != null)
            {
                assetToEdit.ExpiryDate = assetModel.ExpiryDate;
            }


            AssetProcess assetProcess = new AssetProcess();

            try
            {
                if (assetProcess.Update(assetToEdit) == FASTConstant.RETURN_VAL_SUCCESS)
                {
                    TempData[FASTConstant.TMPDATA_RESULT]       = FASTConstant.SUCCESSFUL;
                    TempData[FASTConstant.TMPDATA_SOURCE]       = "Edit Fix Asset";
                    TempData[FASTConstant.TMPDATA_EXTRAMESSAGE] = "The asset has been successfully modified.";
                    TempData[FASTConstant.TMPDATA_ACTION]       = "Index";
                    TempData[FASTConstant.TMPDATA_CONTROLLER]   = "FixAsset";

                    return(View("~/Views/Shared/Result.cshtml"));
                }
                else
                {
                    throw new Exception("There was an error while adding the new employee.");
                }
            }
            catch (Exception ex)
            {
                TempData[FASTConstant.TMPDATA_RESULT]       = FASTConstant.FAILURE;
                TempData[FASTConstant.TMPDATA_SOURCE]       = "Edit Fix Asset";
                TempData[FASTConstant.TMPDATA_EXTRAMESSAGE] = ex.Message;
                return(View("~/Views/Shared/Result.cshtml"));
            }
        }
Пример #3
0
        public FixAsset GetNewFixAssetData()
        {
            FixAsset asset = new FixAsset();

            asset.Model           = this.Model;
            asset.SerialNumber    = this.SerialNumber;
            asset.AssetTag        = this.AssetTag;
            asset.Brand           = this.Brand;
            asset.Remarks         = this.Remarks;
            asset.AcquisitionDate = this.AcquisitionDate;
            asset.ExpiryDate      = this.ExpiryDate;
            asset.IssuerID        = this.IssuerID;
            asset.LocationID      = this.LocationID;
            asset.AssetTypeID     = this.AssetTypeID;
            asset.AssetClassID    = this.AssetClassID;
            //new assets dont have FixAssetID
            //Status is autoatically set to For Assignment
            asset.AssetStatusID = Common.Constants.ASSET_STATUS_FORASSIGNMENT;

            return(asset);
        }
Пример #4
0
        public int AddNewAsset(Models.ExternalAddAssetViewModel model)
        {
            using (var db = new FASTDBEntities())
            {
                FixAsset newAsset = new FixAsset();
                newAsset = model.GetNewFixAssetData();


                db.FixAssets.Add(newAsset);

                int result = db.SaveChanges();

                if (result > 0)
                {
                    return(ReturnValues.SUCCESS);
                }
                else
                {
                    return(ReturnValues.FAILED);
                }
            }
        }
        public bool NewAsset(FixAssetModel assetModel)
        {
            FixAsset asset = new FixAsset();

            asset.Model        = assetModel.Model;
            asset.SerialNumber = assetModel.SerialNumber;
            asset.AssetTag     = assetModel.AssetTag;
            asset.Brand        = assetModel.Brand;
            asset.Remarks      = assetModel.Remarks;
            if (assetModel.AcquisitionDate != null)
            {
                asset.AcquisitionDate = assetModel.AcquisitionDate;
            }
            if (assetModel.ExpiryDate != null)
            {
                asset.ExpiryDate = assetModel.ExpiryDate;
            }
            if (assetModel.IssuerID != null)
            {
                asset.IssuerID = assetModel.IssuerID;
            }
            if (assetModel.LocationID != null)
            {
                asset.LocationID = assetModel.LocationID;
            }

            asset.AssetTypeID = assetModel.AssetTypeID;

            asset.AssetStatusID = assetModel.AssetStatusID;

            asset.AssetClassID = assetModel.AssetClassID;


            FastDB.FixAssets.Add(asset);
            FastDB.SaveChanges();
            return(true);
        }
Пример #6
0
        public ActionResult UploadFile()
        {
            ExcelHelper excelHelp = new ExcelHelper();
            List <FixAssetExcelUploadModel> assets = new List <FixAssetExcelUploadModel>();
            BulkUpload           currentUpload     = new Common.BulkUpload();
            BulkUploadProcess    bulkProcess       = new BulkUploadProcess();
            AssetProcess         assetProcess      = new AssetProcess();
            EmployeeProcess      employeeProcess   = new EmployeeProcess();
            Employee             sender            = new Employee();
            ConfigurationProcess configProcess     = new ConfigurationProcess();

            FastEmailConfiguration emailConfig = configProcess.GetEmailConfiguration();

            StringBuilder uploadLog = new StringBuilder();

            string filename         = string.Empty;
            string completeFileName = string.Empty;

            //This is for the logging
            bulkProcess.UserID     = User.Identity.Name.ToInteger();
            configProcess.UserID   = User.Identity.Name.ToInteger();
            employeeProcess.UserID = User.Identity.Name.ToInteger();
            assetProcess.UserID    = User.Identity.Name.ToInteger();


            try
            {
                #region Get Request Files
                foreach (string upload in Request.Files)
                {
                    if (!(Request.Files[upload] != null && Request.Files[upload].ContentLength > 0))
                    {
                        continue;
                    }
                    string path = HttpContext.Server.MapPath("\\App_Data\\BulkUploads");
                    filename = Path.GetFileName(Request.Files[upload].FileName);

                    //check the filename and ensure its an xlsx file
                    if (String.Compare(filename.Substring(filename.Length - 4), "xlsx", true) != 0)
                    {
                        throw new Exception("Invalid file extension.");
                    }

                    //add the current time as unique indicator
                    filename = DateTime.Now.ToFileTime().ToString() + "_" + filename;

                    // If Upload folder is not yet existing, this code will create that directory.
                    if (!System.IO.Directory.Exists(path))
                    {
                        System.IO.Directory.CreateDirectory(path);
                    }
                    completeFileName = Path.Combine(path, filename);
                    Request.Files[upload].SaveAs(completeFileName);
                }
                #endregion

                BulkUpload newFile = new BulkUpload()
                {
                    EmployeeID   = User.Identity.Name.ToInteger(),
                    FilePath     = filename,
                    TotalRecords = 0,
                    TotalInserts = 0,
                    RequestDate  = DateTime.Now,
                    Type         = FASTConstant.BULKIPLOAD_TYPE_ASSET
                };

                if (bulkProcess.Add(newFile) == FASTConstant.RETURN_VAL_SUCCESS)
                {
                    //get the current upload
                    currentUpload = bulkProcess.GetCurrentUpload(newFile.FilePath, newFile.EmployeeID);
                }

                if (currentUpload != null)
                {
                    #region Process the excel file
                    //Success! Lets process the file.
                    System.Data.DataTable fixAssetTable = new DataTable();

                    fixAssetTable = excelHelp.GetExcelDataTable(completeFileName, "SELECT * FROM [FixAsset$]");
                    fixAssetTable = excelHelp.ConvertToFixAssetTable(fixAssetTable);

                    if (fixAssetTable == null)
                    {
                        throw new Exception("The upload file contains null data.");
                    }

                    assets = fixAssetTable.ToList <Models.FixAssetExcelUploadModel>();
                    sender = employeeProcess.GetEmployeeByID(currentUpload.EmployeeID);

                    if (assets.Count > 0)
                    {
                        int totalInserts = 0;
                        currentUpload.TotalRecords = assets.Count;

                        bulkProcess.UpdateProcessingStep(currentUpload, FASTConstant.BULKUPLOAD_STATUS_INPROGRESS);

                        foreach (FixAssetExcelUploadModel asset in assets)
                        {
                            FixAsset tempAsset = new FixAsset()
                            {
                                AssetTag        = asset.AssetTag,
                                SerialNumber    = asset.SerialNumber,
                                Model           = asset.Model,
                                Brand           = asset.Brand,
                                AssetClassID    = asset.AssetClassID,
                                AssetTypeID     = asset.AssetTypeID,
                                AssetStatusID   = asset.AssetStatusID,
                                AcquisitionDate = asset.AcquisitionDate
                            };


                            if (assetProcess.Add(tempAsset) == FASTConstant.RETURN_VAL_SUCCESS)
                            {
                                totalInserts++;
                                uploadLog.AppendLine(String.Format("<p>{0} : {1} inserted.</p>", FASTConstant.SUCCESSFUL, asset.AssetTag));
                            }
                            else
                            {
                                uploadLog.AppendLine(String.Format("<p>{0} : {1} not inserted.</p>", FASTConstant.FAILURE, asset.AssetTag));
                            }
                        }

                        currentUpload.TotalInserts = totalInserts;
                        bulkProcess.UpdateProcessingStep(currentUpload, FASTConstant.BULKUPLOAD_STATUS_DONE);


                        //Send email to the requestor
                        FastEmail email = new FastEmail();
                        email.Receipients = new List <string>()
                        {
                            sender.EmailAddress
                        };
                        email.Subject  = FASTConstant.EMAIL_SIMPLE_SUBJECT.Replace("[XXX]", "Fix Asset Bulk Upload Result");
                        email.HTMLBody = FASTProcess.Helper.EmailHelper.GenerateHTMLBody(FASTProcess.Helper.EmailHelper.EmailType.BULK_UPLOAD);

                        email.HTMLBody = email.HTMLBody.Replace(FASTConstant.EMAIL_RECEIPIENT_NAME, sender.FirstName + " " + sender.LastName);
                        email.HTMLBody = email.HTMLBody.Replace(FASTConstant.EMAIL_BULKUPLOAD_INFO, bulkProcess.GenerateUploadinformationHTML(currentUpload));
                        email.HTMLBody = email.HTMLBody.Replace(FASTConstant.EMAIL_BULKUPLOAD_LOG, uploadLog.ToString());
                        email.HTMLBody = email.HTMLBody.Replace(FASTConstant.EMAIL_BULKUPLOAD_SUMMARY, bulkProcess.GenerateSummaryinformationHTML(currentUpload));

                        SMTPEmail emailSender = new SMTPEmail(emailConfig, email);
                        emailSender.SendEmail();
                    }
                    else
                    {
                        bulkProcess.UpdateProcessingStep(currentUpload, FASTConstant.BULKUPLOAD_STATUS_DONE);
                    }
                    #endregion
                }

                TempData["Result"]       = "SUCCESSFUL";
                TempData["Source"]       = "File Upload";
                TempData["ExtraMessage"] = "An email will be sent to you containing the results of the upload process.";
                TempData["Action"]       = "Index";
                TempData["Controller"]   = "FixAsset";

                return(View("~/Views/Shared/Result.cshtml"));
            }
            catch (Exception ex)
            {
                TempData["Result"]       = "FAILURE";
                TempData["Source"]       = "Fix Asset Bulk Upload";
                TempData["ExtraMessage"] = ex.Message;
                return(View("~/Views/Shared/Result.cshtml"));
            }
        }