Merge branch 'LabWork07' into LabWork08

This commit is contained in:
Danil Markov 2023-05-05 22:46:22 +04:00
commit b89f06ce42
2 changed files with 91 additions and 95 deletions

View File

@ -34,7 +34,6 @@ namespace LawFirmBusinessLogic.BusinessLogics
/// <returns></returns>
public List<ReportDocumentBlankViewModel> GetDocumentBlank()
{
var blanks = _blankStorage.GetFullList();
var documents = _documentStorage.GetFullList();
var list = new List<ReportDocumentBlankViewModel>();
foreach (var document in documents)
@ -45,14 +44,11 @@ namespace LawFirmBusinessLogic.BusinessLogics
Blanks = new List<Tuple<string, int>>(),
TotalCount = 0
};
foreach (var blank in blanks)
foreach (var blank in document.DocumentBlanks)
{
if (document.DocumentBlanks.ContainsKey(blank.Id))
{
record.Blanks.Add(new Tuple<string, int>(blank.BlankName, document.DocumentBlanks[blank.Id].Item2));
record.TotalCount +=
document.DocumentBlanks[blank.Id].Item2;
}
record.Blanks.Add(new(blank.Value.Item1.BlankName,
blank.Value.Item2));
record.TotalCount += blank.Value.Item2;
}
list.Add(record);
}

View File

@ -110,7 +110,7 @@
this.ClientSize = new System.Drawing.Size(892, 325);
this.Controls.Add(this.panel);
this.Name = "FormReportOrders";
this.Text = "FormReportOrders";
this.Text = "Отчет по заказам";
this.Load += new System.EventHandler(this.FormReportOrders_Load);
this.panel.ResumeLayout(false);
this.panel.PerformLayout();