示例#1
0
 /// <summary>
 /// Exports a Client Report as xml
 /// </summary>
 /// <param name="report"></param>
 /// <returns></returns>
 public static string ReportAsXml(ReportClientViewModel report)
 {
     Type[] reportTypes = {typeof(ReportDepartmentViewModel) };
     using (StringWriter sw = new StringWriter(new StringBuilder()))
     {
         var serializer = new XmlSerializer(typeof(ReportClientViewModel), reportTypes);
         serializer.Serialize(sw, report);
         return sw.ToString();
     }
 }
示例#2
0
 /// <summary>
 /// Returns the ReportData for all Departments of one Client
 /// </summary>
 /// <param name="ClientId"></param>
 /// <returns>All Reports ready for the Department</returns>
 public static ReportClientViewModel ReportDataClient(int ClientId)
 {
     ReportClientViewModel results = new ReportClientViewModel()
     {
         Id = ClientId
     };
     List<Department> departments = (from d in db.Departments
                                     where ClientId == d.Client.AccountingArea
                                     select d).ToList();
     foreach(Department d in departments)
     {
         results.ReportFields.Add(ReportDataDept(d.Id));
     }
     results.AddSummery();
     return results;
 }
示例#3
0
 /// <summary>
 /// Writes a report as a CSV file to a certrain path
 /// </summary>
 /// <param name="data"></param>
 /// <param name="filepath"></param>
 public static void WriteReportAsCSV(ReportClientViewModel data, string filepath)
 {
     if (data.ReportFields.Any())
     {
         var engine = new FileHelperEngine<ReportDepartmentViewModel>()
         {
             HeaderText = typeof(ReportDepartmentViewModel).GetCsvHeader()
         };
         engine.WriteFile(filepath, data.ReportFields);
     }
     else //No data to report
     {
         using (StreamWriter sw = new StreamWriter(filepath))
         {
             sw.Write("0 Departments in this Client, report not possible");
         };
     }
 }
示例#4
0
        /// <summary>
        /// Sends Reports of All Departments to any user that gets one
        /// </summary>
        public static void SendReports()
        {
            List<ReportDepartmentViewModel> dep_rep = new List<ReportDepartmentViewModel>();

            foreach (Department d in db.Departments)
            {
                dep_rep.Add(ReportDataDept(d.Id));
            }

            var filepaths = new List<ExportClientFilePathHelper>();
            foreach (Client c in db.Clients)
            {
                ReportClientViewModel rep = new ReportClientViewModel()
                {
                    Id = c.AccountingArea,
                };

                var departments = QueryUtility.GetDepartmentsFromClient(c.AccountingArea, db);
                rep.ReportFields.AddRange((from dr in dep_rep
                                           where departments.Any(d => dr.Id == d.Id)
                                           select dr).AsEnumerable()); //Mixed LINQ funtions and
                rep.AddSummery();

                string filepath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Report" + c.ClientName + ".csv");
                //StringBuilder filepathwName = new StringBuilder(filepath);
                //filepathwName.Append("Report" + c.ClientName + ".csv");
                WriteReportAsCSV(rep, filepath);

                //Stores Filepaths for messages to multiple users
                ExportClientFilePathHelper help;
                help.ClientId = rep.Id;
                help.Filepath = filepath;
                filepaths.Add(help);
            }

            var reportusers = (from u in db.Users
                              where db.GetsReportsFromClient.Any(gr => gr.UserId == u.Id)
                              select u).ToList();

            //SendReports to every user
            foreach (ContractUser user in reportusers)
            {
                var reportclients = (from c in db.GetsReportsFromClient
                                    where c.UserId == user.Id
                                    select c.ClientId).ToList();
                List<string> pathsToExport = new List<string>();
                //Attach a report for any department with acces
                foreach (int clientId in reportclients)
                {
                    pathsToExport.Add(filepaths.Find(ecfh => ecfh.ClientId == clientId).Filepath);
                }
                MailUtility.SendReportMail(pathsToExport, user);
            }

            //Delete every tempory file
            foreach (ExportClientFilePathHelper ecfh in filepaths)
            {
                if (File.Exists(ecfh.Filepath))
                    File.Delete(ecfh.Filepath);
            }
        }