This commit is contained in:
Milana Ievlewa 2024-08-27 19:49:43 +04:00
parent 7872fbb607
commit d3bb4ef56c
26 changed files with 970 additions and 195 deletions

View File

@ -0,0 +1,99 @@
using CarCenterBusinessLogic.OfficePackage.HelperEnums;
using CarCenterBusinessLogic.OfficePackage.HelperModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToExcelWorker
{
public void CreateReport(ExcelInfoWorker info)
{
CreateExcel(info);
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = 1,
Text = info.Title,
StyleInfo = ExcelStyleInfoType.Title
});
MergeCells(new ExcelMergeParameters
{
CellFromName = "A1",
CellToName = "C1"
});
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = 2,
Text = "Процедура",
StyleInfo = ExcelStyleInfoType.Title
});
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "B",
RowIndex = 2,
Text = "Косметика",
StyleInfo = ExcelStyleInfoType.Title
});
MergeCells(new ExcelMergeParameters
{
CellFromName = "B2",
CellToName = ColumnLetter(info.maxleng + 1) + "2"
});
uint rowIndex = 3;
foreach (var pc in info.procedureCosmeticsReport)
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = rowIndex,
Text = pc.ProcedureName,
StyleInfo = ExcelStyleInfoType.Text
});
int place = 2;
foreach (var proc in pc.Cosmetics)
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = ColumnLetter(place),
RowIndex = rowIndex,
Text = proc,
StyleInfo = ExcelStyleInfoType.TextWithBorder
});
place++;
}
rowIndex++;
}
SaveExcel(info);
}
private static string ColumnLetter(int columnIndex)
{
int dividend = columnIndex;
string columnName = String.Empty;
int modulo;
while (dividend > 0)
{
modulo = (dividend - 1) % 26;
columnName = Convert.ToChar(65 + modulo).ToString() + columnName;
dividend = (dividend - modulo) / 26;
}
return columnName;
}
protected abstract void CreateExcel(ExcelInfoWorker info);
protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams);
protected abstract void MergeCells(ExcelMergeParameters excelParams);
protected abstract void SaveExcel(ExcelInfoWorker info);
}
}

View File

@ -0,0 +1,68 @@
using CarCenterBusinessLogic.OfficePackage.HelperEnums;
using CarCenterBusinessLogic.OfficePackage.HelperModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToPdfWorker
{
public void CreateDoc(PdfInfoWorker info)
{
CreatePdf(info);
CreateParagraph(new PdfParagraph { Text = info.Title, Style = "NormalTitle", ParagraphAlignment = PdfParagraphAlignmentType.Center });
CreateParagraph(new PdfParagraph { Text = $"с {info.DateFrom.ToShortDateString()} по {info.DateTo.ToShortDateString()}", Style = "Normal", ParagraphAlignment = PdfParagraphAlignmentType.Center });
CreateTable(new List<string> { "5cm", "10cm" });
foreach (var report in info.reportOrder)
{
CreateRow(new PdfRowParameters
{
Texts = new List<string> { "Номер заказа", "Услуга" },
Style = "NormalTitle",
ParagraphAlignment = PdfParagraphAlignmentType.Center
});
CreateRow(new PdfRowParameters
{
Texts = new List<string> { report.OrderId.ToString(), "" },
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Left
});
foreach (var product in report.Services)
CreateRow(new PdfRowParameters
{
Texts = new List<string> { "", product },
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Left
});
CreateRow(new PdfRowParameters
{
Texts = new List<string> { "", "Оценки" },
Style = "NormalTitle",
ParagraphAlignment = PdfParagraphAlignmentType.Center
});
foreach (var production in report.Ratings)
CreateRow(new PdfRowParameters
{
Texts = new List<string> { "", production },
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Left
});
}
SavePdf(info);
}
protected abstract void CreatePdf(PdfInfoWorker info);
protected abstract void CreateParagraph(PdfParagraph paragraph);
protected abstract void CreateTable(List<string> columns);
protected abstract void CreateRow(PdfRowParameters rowParameters);
protected abstract void SavePdf(PdfInfoWorker info);
}
}

View File

@ -0,0 +1,45 @@
using CarCenterBusinessLogic.OfficePackage.HelperEnums;
using CarCenterBusinessLogic.OfficePackage.HelperModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToWordWorker
{
public void CreateDoc(WordInfoWorker info)
{
CreateWord(info);
CreateParagraph(new WordParagraph
{
Texts = new List<(string, WordTextProperties)>
{
(info.Title, new WordTextProperties { Bold = true, Size = "24", })
},
TextProperties = new WordTextProperties
{
Size = "24",
JustificationType = WordJustificationType.Both
}
});
foreach (var report in info.procedureCosmeticsReport)
{
CreateNumberedParagraph(1, 0, report.ProcedureName);
foreach (var workshop in report.Cosmetics)
{
CreateNumberedParagraph(1, 1, workshop);
}
}
SaveWord(info);
}
protected abstract void CreateWord(WordInfoWorker info);
protected abstract void CreateParagraph(WordParagraph paragraph);
protected abstract void CreateNumberedParagraph(int numId, int ilvl, string text);
protected abstract void SaveWord(WordInfoWorker info);
}
}

View File

@ -0,0 +1,17 @@
using CarCenterContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfoWorker
{
public MemoryStream memoryStream { get; set; } = new MemoryStream();
public string Title { get; set; } = string.Empty;
public List<ReportProcedureViewModel> procedureCosmeticsReport { get; set; } = new();
public int maxleng { get; set; }
}
}

View File

@ -0,0 +1,18 @@
using CarCenterContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterBusinessLogic.OfficePackage.HelperModels
{
public class PdfInfoWorker
{
public MemoryStream FileName { get; set; } = new();
public string Title { get; set; } = string.Empty;
public DateTime DateFrom { get; set; }
public DateTime DateTo { get; set; }
public List<ReportOrderViewModel> reportOrder { get; set; } = new();
}
}

View File

@ -0,0 +1,16 @@
using CarCenterContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterBusinessLogic.OfficePackage.HelperModels
{
public class WordInfoWorker
{
public MemoryStream memoryStream { get; set; } = new MemoryStream();
public string Title { get; set; } = string.Empty;
public List<ReportProcedureViewModel> procedureCosmeticsReport { get; set; } = new();
}
}

View File

@ -0,0 +1,288 @@
using CarCenterBusinessLogic.OfficePackage.HelperEnums;
using CarCenterBusinessLogic.OfficePackage.HelperModels;
using DocumentFormat.OpenXml.Office2010.Excel;
using DocumentFormat.OpenXml.Office2013.Excel;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Spreadsheet;
using DocumentFormat.OpenXml;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterBusinessLogic.OfficePackage.Implements
{
public class SaveToExcelWorker : AbstractSaveToExcelWorker
{
private SpreadsheetDocument? _spreadsheetDocument;
private SharedStringTablePart? _shareStringPart;
private Worksheet? _worksheet;
private static void CreateStyles(WorkbookPart workbookpart)
{
var sp = workbookpart.AddNewPart<WorkbookStylesPart>();
sp.Stylesheet = new Stylesheet();
var fonts = new Fonts() { Count = 2U, KnownFonts = true };
var fontUsual = new Font();
fontUsual.Append(new FontSize() { Val = 12D });
fontUsual.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Theme = 1U });
fontUsual.Append(new FontName() { Val = "Times New Roman" });
fontUsual.Append(new FontFamilyNumbering() { Val = 2 });
fontUsual.Append(new FontScheme() { Val = FontSchemeValues.Minor });
var fontTitle = new Font();
fontTitle.Append(new Bold());
fontTitle.Append(new FontSize() { Val = 14D });
fontTitle.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Theme = 1U });
fontTitle.Append(new FontName() { Val = "Times New Roman" });
fontTitle.Append(new FontFamilyNumbering() { Val = 2 });
fontTitle.Append(new FontScheme() { Val = FontSchemeValues.Minor });
fonts.Append(fontUsual);
fonts.Append(fontTitle);
var fills = new Fills() { Count = 2U };
var fill1 = new Fill();
fill1.Append(new PatternFill() { PatternType = PatternValues.None });
var fill2 = new Fill();
fill2.Append(new PatternFill() { PatternType = PatternValues.Gray125 });
fills.Append(fill1);
fills.Append(fill2);
var borders = new Borders() { Count = 2U };
var borderNoBorder = new Border();
borderNoBorder.Append(new LeftBorder());
borderNoBorder.Append(new RightBorder());
borderNoBorder.Append(new TopBorder());
borderNoBorder.Append(new BottomBorder());
borderNoBorder.Append(new DiagonalBorder());
var borderThin = new Border();
var leftBorder = new LeftBorder() { Style = BorderStyleValues.Thin };
leftBorder.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Indexed = 64U });
var rightBorder = new RightBorder() { Style = BorderStyleValues.Thin };
rightBorder.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Indexed = 64U });
var topBorder = new TopBorder() { Style = BorderStyleValues.Thin };
topBorder.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Indexed = 64U });
var bottomBorder = new BottomBorder() { Style = BorderStyleValues.Thin };
bottomBorder.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() { Indexed = 64U });
borderThin.Append(leftBorder);
borderThin.Append(rightBorder);
borderThin.Append(topBorder);
borderThin.Append(bottomBorder);
borderThin.Append(new DiagonalBorder());
borders.Append(borderNoBorder);
borders.Append(borderThin);
var cellStyleFormats = new CellStyleFormats() { Count = 1U };
var cellFormatStyle = new CellFormat() { NumberFormatId = 0U, FontId = 0U, FillId = 0U, BorderId = 0U };
cellStyleFormats.Append(cellFormatStyle);
var cellFormats = new CellFormats() { Count = 3U };
var cellFormatFont = new CellFormat() { NumberFormatId = 0U, FontId = 0U, FillId = 0U, BorderId = 0U, FormatId = 0U, ApplyFont = true };
var cellFormatFontAndBorder = new CellFormat() { NumberFormatId = 0U, FontId = 0U, FillId = 0U, BorderId = 1U, FormatId = 0U, ApplyFont = true, ApplyBorder = true };
var cellFormatTitle = new CellFormat() { NumberFormatId = 0U, FontId = 1U, FillId = 0U, BorderId = 0U, FormatId = 0U, Alignment = new Alignment() { Vertical = VerticalAlignmentValues.Center, WrapText = true, Horizontal = HorizontalAlignmentValues.Center }, ApplyFont = true };
cellFormats.Append(cellFormatFont);
cellFormats.Append(cellFormatFontAndBorder);
cellFormats.Append(cellFormatTitle);
var cellStyles = new CellStyles() { Count = 1U };
cellStyles.Append(new CellStyle() { Name = "Normal", FormatId = 0U, BuiltinId = 0U });
var differentialFormats = new DocumentFormat.OpenXml.Office2013.Excel.DifferentialFormats() { Count = 0U };
var tableStyles = new TableStyles() { Count = 0U, DefaultTableStyle = "TableStyleMedium2", DefaultPivotStyle = "PivotStyleLight16" };
var stylesheetExtensionList = new StylesheetExtensionList();
var stylesheetExtension1 = new StylesheetExtension() { Uri = "{EB79DEF2-80B8-43e5-95BD-54CBDDF9020C}" };
stylesheetExtension1.AddNamespaceDeclaration("x14", "http://schemas.microsoft.com/office/spreadsheetml/2009/9/main");
stylesheetExtension1.Append(new SlicerStyles() { DefaultSlicerStyle = "SlicerStyleLight1" });
var stylesheetExtension2 = new StylesheetExtension() { Uri = "{9260A510-F301-46a8-8635-F512D64BE5F5}" };
stylesheetExtension2.AddNamespaceDeclaration("x15", "http://schemas.microsoft.com/office/spreadsheetml/2010/11/main");
stylesheetExtension2.Append(new TimelineStyles() { DefaultTimelineStyle = "TimeSlicerStyleLight1" });
stylesheetExtensionList.Append(stylesheetExtension1);
stylesheetExtensionList.Append(stylesheetExtension2);
sp.Stylesheet.Append(fonts);
sp.Stylesheet.Append(fills);
sp.Stylesheet.Append(borders);
sp.Stylesheet.Append(cellStyleFormats);
sp.Stylesheet.Append(cellFormats);
sp.Stylesheet.Append(cellStyles);
sp.Stylesheet.Append(differentialFormats);
sp.Stylesheet.Append(tableStyles);
sp.Stylesheet.Append(stylesheetExtensionList);
}
private static uint GetStyleValue(ExcelStyleInfoType styleInfo)
{
return styleInfo switch
{
ExcelStyleInfoType.Title => 2U,
ExcelStyleInfoType.TextWithBorder => 1U,
ExcelStyleInfoType.Text => 0U,
_ => 0U,
};
}
protected override void CreateExcel(ExcelInfoWorker info)
{
_spreadsheetDocument = SpreadsheetDocument.Create(info.memoryStream, SpreadsheetDocumentType.Workbook);
// Создаем книгу (в ней хранятся листы)
var workbookpart = _spreadsheetDocument.AddWorkbookPart();
workbookpart.Workbook = new Workbook();
CreateStyles(workbookpart);
// Получаем/создаем хранилище текстов для книги
_shareStringPart = _spreadsheetDocument.WorkbookPart!.GetPartsOfType<SharedStringTablePart>().Any()
? _spreadsheetDocument.WorkbookPart.GetPartsOfType<SharedStringTablePart>().First()
: _spreadsheetDocument.WorkbookPart.AddNewPart<SharedStringTablePart>();
// Создаем SharedStringTable, если его нет
if (_shareStringPart.SharedStringTable == null)
{
_shareStringPart.SharedStringTable = new SharedStringTable();
}
// Создаем лист в книгу
var worksheetPart = workbookpart.AddNewPart<WorksheetPart>();
worksheetPart.Worksheet = new Worksheet(new SheetData());
// Добавляем лист в книгу
var sheets = _spreadsheetDocument.WorkbookPart.Workbook.AppendChild(new Sheets());
var sheet = new Sheet()
{
Id = _spreadsheetDocument.WorkbookPart.GetIdOfPart(worksheetPart),
SheetId = 1,
Name = "Лист"
};
sheets.Append(sheet);
_worksheet = worksheetPart.Worksheet;
}
protected override void InsertCellInWorksheet(ExcelCellParameters excelParams)
{
if (_worksheet == null || _shareStringPart == null)
{
return;
}
var sheetData = _worksheet.GetFirstChild<SheetData>();
if (sheetData == null)
{
return;
}
// Ищем строку, либо добавляем ее
Row row;
if (sheetData.Elements<Row>().Where(r => r.RowIndex! == excelParams.RowIndex).Any())
{
row = sheetData.Elements<Row>().Where(r => r.RowIndex! == excelParams.RowIndex).First();
}
else
{
row = new Row() { RowIndex = excelParams.RowIndex };
sheetData.Append(row);
}
// Ищем нужную ячейку
Cell cell;
if (row.Elements<Cell>().Where(c => c.CellReference!.Value == excelParams.CellReference).Any())
{
cell = row.Elements<Cell>().Where(c => c.CellReference!.Value == excelParams.CellReference).First();
}
else
{
// Все ячейки должны быть последовательно друг за другом расположены
// нужно определить, после какой вставлять
Cell? refCell = null;
foreach (Cell rowCell in row.Elements<Cell>())
{
if (string.Compare(rowCell.CellReference!.Value, excelParams.CellReference, true) > 0)
{
refCell = rowCell;
break;
}
}
var newCell = new Cell() { CellReference = excelParams.CellReference };
row.InsertBefore(newCell, refCell);
cell = newCell;
}
// вставляем новый текст
_shareStringPart.SharedStringTable.AppendChild(new SharedStringItem(new Text(excelParams.Text)));
_shareStringPart.SharedStringTable.Save();
cell.CellValue = new CellValue((_shareStringPart.SharedStringTable.Elements<SharedStringItem>().Count() - 1).ToString());
cell.DataType = new EnumValue<CellValues>(CellValues.SharedString);
cell.StyleIndex = GetStyleValue(excelParams.StyleInfo);
}
protected override void MergeCells(ExcelMergeParameters excelParams)
{
if (_worksheet == null)
{
return;
}
MergeCells mergeCells;
if (_worksheet.Elements<MergeCells>().Any())
{
mergeCells = _worksheet.Elements<MergeCells>().First();
}
else
{
mergeCells = new MergeCells();
if (_worksheet.Elements<CustomSheetView>().Any())
{
_worksheet.InsertAfter(mergeCells, _worksheet.Elements<CustomSheetView>().First());
}
else
{
_worksheet.InsertAfter(mergeCells, _worksheet.Elements<SheetData>().First());
}
}
var mergeCell = new MergeCell()
{
Reference = new StringValue(excelParams.Merge)
};
mergeCells.Append(mergeCell);
}
protected override void SaveExcel(ExcelInfoWorker info)
{
if (_spreadsheetDocument == null)
{
return;
}
_spreadsheetDocument.WorkbookPart!.Workbook.Save();
_spreadsheetDocument.Dispose();
}
}
}

View File

@ -0,0 +1,119 @@
using CarCenterBusinessLogic.OfficePackage.HelperEnums;
using CarCenterBusinessLogic.OfficePackage.HelperModels;
using MigraDoc.DocumentObjectModel;
using MigraDoc.DocumentObjectModel.Tables;
using MigraDoc.Rendering;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterBusinessLogic.OfficePackage.Implements
{
public class SaveToPdfWorker : AbstractSaveToPdfWorker
{
private Document? _document;
private Section? _section;
private Table? _table;
private static ParagraphAlignment GetParagraphAlignment(PdfParagraphAlignmentType type)
{
return type switch
{
PdfParagraphAlignmentType.Center => ParagraphAlignment.Center,
PdfParagraphAlignmentType.Left => ParagraphAlignment.Left,
PdfParagraphAlignmentType.Right => ParagraphAlignment.Right,
_ => ParagraphAlignment.Justify,
};
}
/// <summary>
/// Создание стилей для документа
/// </summary>
/// <param name="document"></param>
private static void DefineStyles(Document document)
{
var style = document.Styles["Normal"];
style.Font.Name = "Times New Roman";
style.Font.Size = 14;
style = document.Styles.AddStyle("NormalTitle", "Normal");
style.Font.Bold = true;
}
protected override void CreatePdf(PdfInfoWorker info)
{
_document = new Document();
DefineStyles(_document);
_section = _document.AddSection();
}
protected override void CreateParagraph(PdfParagraph pdfParagraph)
{
if (_section == null)
{
return;
}
var paragraph = _section.AddParagraph(pdfParagraph.Text);
paragraph.Format.SpaceAfter = "1cm";
paragraph.Format.Alignment = GetParagraphAlignment(pdfParagraph.ParagraphAlignment);
paragraph.Style = pdfParagraph.Style;
}
protected override void CreateTable(List<string> columns)
{
if (_document == null)
{
return;
}
_table = _document.LastSection.AddTable();
foreach (var elem in columns)
{
_table.AddColumn(elem);
}
}
protected override void CreateRow(PdfRowParameters rowParameters)
{
if (_table == null)
{
return;
}
var row = _table.AddRow();
for (int i = 0; i < rowParameters.Texts.Count; ++i)
{
row.Cells[i].AddParagraph(rowParameters.Texts[i]);
if (!string.IsNullOrEmpty(rowParameters.Style))
{
row.Cells[i].Style = rowParameters.Style;
}
Unit borderWidth = 0.5;
row.Cells[i].Borders.Left.Width = borderWidth;
row.Cells[i].Borders.Right.Width = borderWidth;
row.Cells[i].Borders.Top.Width = borderWidth;
row.Cells[i].Borders.Bottom.Width = borderWidth;
row.Cells[i].Format.Alignment = GetParagraphAlignment(rowParameters.ParagraphAlignment);
row.Cells[i].VerticalAlignment = VerticalAlignment.Center;
}
}
protected override void SavePdf(PdfInfoWorker info)
{
var renderer = new PdfDocumentRenderer(true)
{
Document = _document
};
renderer.RenderDocument();
renderer.PdfDocument.Save(info.FileName);
}
}
}

View File

@ -0,0 +1,138 @@
using CarCenterBusinessLogic.OfficePackage.HelperEnums;
using CarCenterBusinessLogic.OfficePackage.HelperModels;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Wordprocessing;
using DocumentFormat.OpenXml;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterBusinessLogic.OfficePackage.Implements
{
public class SaveToWordWorker : AbstractSaveToWordWorker
{
private WordprocessingDocument? _wordDocument;
private Body? _docBody;
private static JustificationValues GetJustificationValues(WordJustificationType type)
{
return type switch
{
WordJustificationType.Both => JustificationValues.Both,
WordJustificationType.Center => JustificationValues.Center,
_ => JustificationValues.Left,
};
}
private static SectionProperties CreateSectionProperties()
{
var properties = new SectionProperties();
var pageSize = new PageSize
{
Orient = PageOrientationValues.Portrait
};
properties.AppendChild(pageSize);
return properties;
}
private static ParagraphProperties? CreateParagraphProperties(WordTextProperties? paragraphProperties)
{
if (paragraphProperties == null)
{
return null;
}
var properties = new ParagraphProperties();
properties.AppendChild(new Justification()
{
Val = GetJustificationValues(paragraphProperties.JustificationType)
});
properties.AppendChild(new SpacingBetweenLines
{
LineRule = LineSpacingRuleValues.Auto
});
properties.AppendChild(new Indentation());
var paragraphMarkRunProperties = new ParagraphMarkRunProperties();
if (!string.IsNullOrEmpty(paragraphProperties.Size))
{
paragraphMarkRunProperties.AppendChild(new FontSize { Val = paragraphProperties.Size });
}
properties.AppendChild(paragraphMarkRunProperties);
return properties;
}
protected override void CreateWord(WordInfoWorker info)
{
_wordDocument = WordprocessingDocument.Create(info.memoryStream, WordprocessingDocumentType.Document);
MainDocumentPart mainPart = _wordDocument.AddMainDocumentPart();
mainPart.Document = new Document();
_docBody = mainPart.Document.AppendChild(new Body());
}
protected override void CreateParagraph(WordParagraph paragraph)
{
if (_docBody == null || paragraph == null)
{
return;
}
var docParagraph = new Paragraph();
docParagraph.AppendChild(CreateParagraphProperties(paragraph.TextProperties));
foreach (var run in paragraph.Texts)
{
var docRun = new Run();
var properties = new RunProperties();
properties.AppendChild(new FontSize { Val = run.Item2.Size });
if (run.Item2.Bold)
{
properties.AppendChild(new Bold());
}
docRun.AppendChild(properties);
docRun.AppendChild(new Text { Text = run.Item1, Space = SpaceProcessingModeValues.Preserve });
docParagraph.AppendChild(docRun);
}
_docBody.AppendChild(docParagraph);
}
protected override void CreateNumberedParagraph(int numId, int ilvl, string text)
{
Paragraph paragraph = new Paragraph(
new ParagraphProperties(
new NumberingProperties(
new NumberingLevelReference() { Val = ilvl },
new NumberingId() { Val = numId })),
new Run(new Text(text)));
_docBody!.Append(paragraph);
}
protected override void SaveWord(WordInfoWorker info)
{
if (_docBody == null || _wordDocument == null)
{
return;
}
_docBody.AppendChild(CreateSectionProperties());
_wordDocument.MainDocumentPart!.Document.Save();
_wordDocument.Dispose();
}
}
}

View File

@ -9,7 +9,7 @@ namespace CarCenterContracts.SearchModels
public class RatingSearchModel
{
public int? Id { get; set; }
public int? WorkerId { get; set; }
public int? OrderId { get; set; }
public int? WorkerId { get; set; }
}
}

View File

@ -9,7 +9,8 @@ namespace CarCenterContracts.SearchModels
public class ServiceSearchModel
{
public int? Id { get; set; }
public int? StorekeeperId { get; set; }
public int? OrderId { get; set; }
public int? StorekeeperId { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}

View File

@ -9,8 +9,8 @@ namespace CarCenterContracts.ViewModels
{
public class ReportOrderViewModel
{
public int Id { get; set; }
public List<IServiceModel> Services { get; set; } = new();
public List<IRatingModel> Ratings { get; set; } = new();
public int OrderId { get; set; }
public List<string> Services { get; set; } = new();
public List<string> Ratings { get; set; } = new();
}
}

View File

@ -9,7 +9,8 @@ namespace CarCenterContracts.ViewModels
{
public class ReportProcedureViewModel
{
public int Id { get; set; }
public List<ICosmeticModel> Cosmetics { get; set; } = new();
public int ProcedureId { get; set; }
public string ProcedureName { get; set; } = string.Empty;
public List<string> Cosmetics { get; set; } = new();
}
}

View File

@ -22,7 +22,7 @@ namespace CarCenterDatabaseImplement
{
if (optionsBuilder.IsConfigured == false)
{
optionsBuilder.UseSqlServer(@"Data Source=PRETTYNAME;Initial Catalog=CarCenterDatabaseTesting;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
optionsBuilder.UseSqlServer(@"Data Source=PRETTYNAME;Initial Catalog=BeautySalonDatabaseTesting;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
}
base.OnConfiguring(optionsBuilder);
}

View File

@ -1,49 +0,0 @@
@using CarCenterContracts.ViewModels
@model List<StorekeeperReportViewModel>
@{
ViewData["Title"] = "ReportOnly";
}
<div class="text-center">
<h1 class="display-4">Список процедур по косметике</h1>
</div>
<div class="text-center">
@{
if (Model == null)
{
<h3 class="display-4">Надо войти!</h3>
return;
}
<table class="table">
<thead>
<tr>
<th>
Косметика
</th>
<th>
Процедуры
</th>
<th>
Количество
</th>
</tr>
</thead>
<tbody>
@foreach (var reportRow in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => reportRow.Id)
</td>
<td>
@Html.DisplayFor(modelItem => reportRow.ProcedureCosmetics)
</td>
<td>
@Html.DisplayFor(modelItem => reportRow.Count)
</td>
</tr>
}
</tbody>
</table>
}
</div>

View File

@ -6,6 +6,12 @@
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.26" />
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="8.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CarCenterBusinessLogic\BeautySalonBusinessLogic.csproj" />
<ProjectReference Include="..\CarCenterContracts\BeautySalonContracts.csproj" />

View File

@ -264,6 +264,7 @@ namespace CarCenterWorkerApp.Controllers
}
[HttpGet]
public IActionResult Privacy()
{
@ -295,7 +296,9 @@ namespace CarCenterWorkerApp.Controllers
}
return View(user);
}
/* [HttpGet]
[HttpGet]
public IActionResult OrderTimeChoose()
{
if (!IsLoggedIn)
@ -358,7 +361,7 @@ namespace CarCenterWorkerApp.Controllers
{
if (!IsLoggedIn)
return RedirectToAction("IndexNonReg");
var details = _data.GetProcedure(UserId);
var details = _data.GetProcedures(UserId);
return View(details);
}
[HttpPost]
@ -430,6 +433,6 @@ namespace CarCenterWorkerApp.Controllers
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}*/
}
}
}

View File

@ -1,14 +1,19 @@
using CarCenterBusinessLogic.BusinessLogics;
using CarCenterBusinessLogic.MailWorker;
using CarCenterBusinessLogic.OfficePackage;
using CarCenterBusinessLogic.OfficePackage.Implements;
using CarCenterContracts.BusinessLogicsContracts;
using CarCenterContracts.StoragesContracts;
using CarCenterDatabaseImplement.Implements;
using WorkerApp;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllersWithViews();
//builder.Logging.SetMinimumLevel(LogLevel.Trace);
//builder.Logging.AddLog4Net("log4net.config");
builder.Services.AddTransient<IServiceStorage, ServiceStorage>();
builder.Services.AddTransient<ICosmeticStorage, CosmeticStorage>();
@ -16,21 +21,40 @@ builder.Services.AddTransient<ILaborCostStorage, LaborCostStorage>();
builder.Services.AddTransient<IOrderStorage, OrderStorage>();
builder.Services.AddTransient<IProcedureStorage, ProcedureStorage>();
builder.Services.AddTransient<IRatingStorage, RatingStorage>();
builder.Services.AddTransient<IStorekeeperStorage, StorekeeperStorage>();
builder.Services.AddTransient<IWorkerStorage, WorkerStorage>();
builder.Services.AddTransient<IWorkerStorage, WorkerStorage>();
builder.Services.AddTransient<IServiceLogic, ServiceLogic>();
builder.Services.AddTransient<ICosmeticLogic, CosmeticLogic>();
builder.Services.AddTransient<ILaborCostLogic, LaborCostLogic>();
builder.Services.AddTransient<IOrderLogic, OrderLogic>();
builder.Services.AddTransient<IProcedureLogic, ProcedureLogic>();
builder.Services.AddTransient<IRatingLogic, RatingLogic>();
builder.Services.AddTransient<IStorekeeperLogic, StorekeeperLogic>();
builder.Services.AddTransient<IWorkerLogic, WorkerLogic>();
builder.Services.AddTransient<IWorkerLogic, WorkerLogic>();
builder.Services.AddTransient<AbstractSaveToExcelWorker, SaveToExcelWorker>();
builder.Services.AddTransient<AbstractSaveToWordWorker, SaveToWordWorker>();
builder.Services.AddTransient<AbstractSaveToPdfWorker, SaveToPdfWorker>();
builder.Services.AddSingleton<AbstractMailWorker, MailKitWorker>();
builder.Services.AddTransient<WorkerData>();
builder.Services.AddSession(options =>
{
options.IdleTimeout = TimeSpan.FromMinutes(30);
options.Cookie.HttpOnly = true;
options.Cookie.IsEssential = true;
});
var app = builder.Build();
var mailSender = app.Services.GetService<AbstractMailWorker>();
mailSender?.MailConfig(new()
{
MailLogin = builder.Configuration?.GetSection("MailLogin")?.Value?.ToString() ?? string.Empty,
MailPassword = builder.Configuration?.GetSection("MailPassword")?.Value?.ToString() ?? string.Empty,
SmtpClientHost = builder.Configuration?.GetSection("SmtpClientHost")?.Value?.ToString() ?? string.Empty,
SmtpClientPort = Convert.ToInt32(builder.Configuration?.GetSection("SmtpClientPort")?.Value?.ToString()),
PopHost = builder.Configuration?.GetSection("PopHost")?.Value?.ToString() ?? string.Empty,
PopPort = Convert.ToInt32(builder.Configuration?.GetSection("PopPort")?.Value?.ToString())
});
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
@ -44,7 +68,7 @@ app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseSession();
app.UseAuthorization();
app.MapControllerRoute(

View File

@ -12,7 +12,7 @@
<a class="list-group-item list-group-item-action btn btn-custom" asp-area="" asp-controller="Home" asp-action="IndexProcedure">💅 Процедуры</a>
<a class="list-group-item list-group-item-action btn btn-custom" asp-area="" asp-controller="Home" asp-action="IndexOrder">🛒 Заказы</a>
<a class="list-group-item list-group-item-action btn btn-custom" asp-area="" asp-controller="Home" asp-action="Privacy">🔒 Личные данные</a>
<a class="list-group-item list-group-item-action btn btn-custom" asp-area="" asp-controller="Home" asp-action="ReportsMenu">📊 Меню отчетов</a>
<a class="list-group-item list-group-item-action btn btn-custom" asp-area="" asp-controller="Home" asp-action="ReportMenu">📊 Меню отчетов</a>
<a class="list-group-item list-group-item-action btn btn-danger-custom" asp-area="" asp-controller="Home" asp-action="Logout">🚪 Выйти</a>
</div>
</div>

View File

@ -75,7 +75,7 @@
var formData = $('#TimeReportWeb').serialize();
$.post('/Home/TimeReportWeb', formData, function (response) {
window.location.href = '/Home/BundlingTimeReport';
window.location.href = '/Home/OrderTimeReport';
}).fail(function () {
alert('Произошла ошибка при создании отчета.');
});

View File

@ -27,7 +27,7 @@
@foreach (var detail in Model)
{
<tr>
<td>@detail.Id</td>
<td>@detail.OrderId</td>
<td>
<ul>
@foreach (var product in detail.Services)

View File

@ -31,7 +31,7 @@
<button type="submit" class="btn btn-primary" onclick="setReportType('default')">Сгенерировать отчет</button>
<button type="submit" class="btn btn-secondary" onclick="setReportType('excel')">Сгенерировать отчет в Excel</button>
<button type="submit" class="btn btn-secondary" onclick="setReportType('word')">Сгенерировать отчет в Word</button>
<div id="validationMessage" style="display:none;color:red;">Пожалуйста, выберите хотя бы одну деталь.</div>
<div id="validationMessage" style="display:none;color:red;">Пожалуйста, выберите хотя бы что-то одно</div>
</form>
@section Scripts {

View File

@ -0,0 +1,35 @@
@using CarCenterContracts.ViewModels
@model List<ReportProcedureViewModel>
@{
ViewData["Title"] = "Отчет процедура - косметика";
}
<div class="text-center">
<h1 class="display-4">Список процедур с косметкой</h1>
</div>
<table class="table">
<thead>
<tr>
<th>Процедура</th>
<th>Косметика</th>
</tr>
</thead>
<tbody>
@foreach (var detail in Model)
{
<tr>
<td>@detail.ProcedureName</td>
<td>
<ul>
@foreach (var workshop in detail.Cosmetics)
{
<li>@workshop</li>
}
</ul>
</td>
</tr>
}
</tbody>
</table>

View File

@ -1,49 +0,0 @@
@using CarCenterContracts.ViewModels
@model List<WorkerReportViewModel>
@{
ViewData["Title"] = "ReportOnly";
}
<div class="text-center">
<h1 class="display-4">Список косметики по процедуре </h1>
</div>
<div class="text-center">
@{
if (Model == null)
{
<h3 class="display-4">Надо войти!</h3>
return;
}
<table class="table">
<thead>
<tr>
<th>
Процедура
</th>
<th>
Косметика
</th>
<th>
Кол-во
</th>
</tr>
</thead>
<tbody>
@foreach (var reportRow in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => reportRow.Id)
</td>
<td>
@Html.DisplayFor(modelItem => reportRow.CosmeticProcedures)
</td>
<td>
@Html.DisplayFor(modelItem => reportRow.Count)
</td>
</tr>
}
</tbody>
</table>
}
</div>

View File

@ -1,46 +0,0 @@
@using CarCenterContracts.ViewModels
@model List<OrderViewModel>
@{
ViewData["Title"] = "Order";
}
<div class="text-center">
<h1 class="display-4">Отчёт по заказам</h1>
</div>
<div class="text-center">
<form method="post">
@{
if (Model == null)
{
<h3 class="display-4">Войдите!</h3>
return;
}
<div class="row mb-5">
<div class="col-4">Формат получения:</div>
<div class="col-8">
<input type="radio" id="email" name="saveFormat" value="email">
<label for="email">почта</label>
<input type="radio" id="site" name="saveFormat" value="site">
<label for="site">на сайте</label>
</div>
</div>
<div class="row mb-5">
<div class="col-4">Начальная дата:</div>
<div class="col-8">
<input type="date" id="startDate" name="startDate" class="form-control">
</div>
</div>
<div class="row mb-5">
<div class="col-4">Конечная дата:</div>
<div class="col-8">
<input type="date" id="endDate" name="endDate" class="form-control">
</div>
</div>
<div class="row">
<div class="col-4"></div>
<div class="col-2"><input type="submit" value="Получить отчёт" class="btn btn-primary" /></div>
<div class="col-4"></div>
<div class="col-2"><input type="button" value="Отменить" class="btn btn-secondary" /></div>
</div>
}
</form>
</div>

View File

@ -6,6 +6,9 @@ using CarCenterContracts.SearchModels;
using CarCenterBusinessLogic.BusinessLogics;
using DocumentFormat.OpenXml.ExtendedProperties;
using DocumentFormat.OpenXml.Spreadsheet;
using CarCenterDataModels.Models;
using CarCenterBusinessLogic.MailWorker;
using CarCenterBusinessLogic.OfficePackage;
namespace WorkerApp
{
@ -18,9 +21,17 @@ namespace WorkerApp
private readonly IOrderLogic _orderLogic;
private readonly ICosmeticLogic _cosmeticLogic;
private readonly IServiceLogic _serviceLogic;
private readonly AbstractSaveToExcelWorker _excel;
private readonly AbstractSaveToWordWorker _word;
private readonly AbstractSaveToPdfWorker _pdf;
private readonly AbstractMailWorker _mail;
public WorkerData(ILogger<WorkerData> logger, IWorkerLogic storekeeperLogic, IProcedureLogic procedureLogic,
IRatingLogic ratingLogic, IOrderLogic orderLogic, IServiceLogic serviceLogic, ICosmeticLogic cosmeticLogic)
IRatingLogic ratingLogic, IOrderLogic orderLogic, IServiceLogic serviceLogic, ICosmeticLogic cosmeticLogic,
AbstractSaveToExcelWorker excel,
AbstractSaveToWordWorker word,
AbstractMailWorker mail,
AbstractSaveToPdfWorker pdf)
{
_logger = logger;
_storekeeperLogic = storekeeperLogic;
@ -29,6 +40,10 @@ namespace WorkerApp
_orderLogic = orderLogic;
_serviceLogic = serviceLogic;
_cosmeticLogic = cosmeticLogic;
_excel = excel;
_word = word;
_mail = mail;
_pdf = pdf;
}
public WorkerViewModel? Login(string email, string password)
@ -117,7 +132,7 @@ namespace WorkerApp
{
return _cosmeticLogic.ReadList(null);
}
/*
public List<ReportOrderViewModel> GetTimeReport(DateTime? startDate, DateTime? endDate, int UserId)
{
var orders = _orderLogic.ReadList(new() { DateFrom = startDate, DateTo = endDate, WorkerId = UserId });
@ -127,60 +142,86 @@ namespace WorkerApp
foreach (var order in orders)
{
var report = new ReportOrderViewModel();
report.Id = order.Id;
var ratings = _ratingLogic.ReadList(new() { Id = order.Id, WorkerId = UserId });
report.OrderId = order.Id;
var ratings = _ratingLogic.ReadList(new() { OrderId = order.Id, WorkerId = UserId });
if (ratings != null)
report.Ratings = ratings.Select(p => p.Id.ToString()).ToList();
var orders = _orderLogic.ReadList(new() { ServiceId = service.Id, WorkerId = UserId });
if (orders != null)
report.Orders = orders.Select(p => p.Id.ToString()).ToList();
serviceTimeReports.Add(report);
var services = _serviceLogic.ReadList(new() { OrderId = order.Id, StorekeeperId = UserId });
if (services != null)
report.Services = services.Select(p => p.Id.ToString()).ToList();
orderTimeReports.Add(report);
}
return serviceTimeReports;
return orderTimeReports;
}
public List<ReportCosmeticViewModel>? GetProcedureReports(List<int> services)
public List<ReportProcedureViewModel>? GetCosmeticReports(List<int> procedures)
{
List<ReportCosmeticViewModel> reports = new();
foreach (int i in services)
List<ReportProcedureViewModel> reports = new();
foreach (int i in procedures)
{
ReportCosmeticViewModel report = new();
var service = _cosmeticLogic.ReadElement(new() { Id = i });
report.CosmeticName = service!.CosmeticName;
var procedures = _procedureLogic.ReadList(new() { CosmeticId = i });
if (procedures != null)
report.Procedures = procedures.Select(w => w.Id.ToString()).ToList();
ReportProcedureViewModel report = new();
var procedure = _procedureLogic.ReadElement(new() { Id = i });
report.ProcedureName = procedure!.ProcedureName;
var cosmetics = _cosmeticLogic.ReadList(null);
List<CosmeticViewModel> filteredCosmetics = new List<CosmeticViewModel>();
if (procedure.ProcedureServices != null && cosmetics != null)
{
var servicesP = new HashSet<IServiceModel>(procedure.ProcedureServices.Values);
foreach (var cosmetic in cosmetics)
{
if (cosmetic.CosmeticServices != null)
{
var servicesC = new HashSet<IServiceModel>(cosmetic.CosmeticServices.Values);
foreach (IServiceModel serv in servicesC)
{
foreach (IServiceModel s in servicesP)
{
if (s.Id == serv.Id)
{
filteredCosmetics.Add(cosmetic);
break;
}
}
}
}
}
}
report.Cosmetics = filteredCosmetics.Select(w => w.CosmeticName).ToList();
reports.Add(report);
}
return reports;
}
public void SaveReportExcel(List<int> services, MemoryStream stream)
public void SaveReportExcel(List<int> cosmetics, MemoryStream stream)
{
var reports = GetProcedureReports(services);
var reports = GetCosmeticReports(cosmetics);
if (reports == null)
return;
int maxsize = 0;
foreach (var report in reports) { maxsize = Math.Max(maxsize, report.Procedures.Count); }
foreach (var report in reports) { maxsize = Math.Max(maxsize, report.Cosmetics.Count); }
_excel.CreateReport(new()
{
cosmeticProceduresReport = reports,
Title = "Отчет КосметикаПроцедуры",
procedureCosmeticsReport = reports,
Title = "Отчет. ПроцедураКосметка",
memoryStream = stream,
maxleng = maxsize
});
}
public void SaveReportWord(List<int> services, MemoryStream stream)
public void SaveReportWord(List<int> cosmetics, MemoryStream stream)
{
var reports = GetProcedureReports(services);
var reports = GetCosmeticReports(cosmetics);
if (reports == null)
return;
_word.CreateDoc(new()
{
memoryStream = stream,
Title = "Отчет. КосметикаПроцедуры",
cosmeticProceduresReport = reports
Title = "Отчет. ПроцедураКосметка",
procedureCosmeticsReport = reports
});
}
@ -194,11 +235,11 @@ namespace WorkerApp
DateFrom = startDate!.Value,
DateTo = endDate!.Value,
FileName = stream,
reportService = reports,
reportOrder = reports,
Title = "Отчет"
});
byte[] report = stream.GetBuffer();
_mail.MailSendAsync(new() { MailAddress = UserStorekeeper.user!.Email, Subject = "Отчет", FileName = "PdfReport.pdf", Pdf = report });
}*/
_mail.MailSendAsync(new() { MailAddress = UserWorker.user!.Email, Subject = "Отчет", FileName = "PdfReport.pdf", Pdf = report });
}
}
}