diff --git a/Factory/FactoryContracts/ViewModels/MachinePeriodReportViewModel.cs b/Factory/FactoryContracts/ViewModels/MachinePeriodReportViewModel.cs
new file mode 100644
index 0000000..d33ba2e
--- /dev/null
+++ b/Factory/FactoryContracts/ViewModels/MachinePeriodReportViewModel.cs
@@ -0,0 +1,9 @@
+namespace FactoryContracts.ViewModels
+{
+ public class MachinePeriodReportViewModel
+ {
+ public string MachineName { get; set; } = string.Empty;
+ public List
- Привязка станков к планам производства + Привязка станка к планам производства
Отчеты
diff --git a/Factory/FactoryStorekeeperApp/Views/Home/MachinePeriodReport.cshtml b/Factory/FactoryStorekeeperApp/Views/Home/MachinePeriodReport.cshtml
new file mode 100644
index 0000000..96273e2
--- /dev/null
+++ b/Factory/FactoryStorekeeperApp/Views/Home/MachinePeriodReport.cshtml
@@ -0,0 +1,50 @@
+@using FactoryContracts.ViewModels
+
+@model ListСписок станков за период
+
+
+
\ No newline at end of file
diff --git a/Factory/FactoryStorekeeperApp/Views/Home/MachinePlanProductions.cshtml b/Factory/FactoryStorekeeperApp/Views/Home/MachinePlanProductions.cshtml
index e1dd794..49c6a2e 100644
--- a/Factory/FactoryStorekeeperApp/Views/Home/MachinePlanProductions.cshtml
+++ b/Factory/FactoryStorekeeperApp/Views/Home/MachinePlanProductions.cshtml
@@ -1,5 +1,49 @@
-@*
- For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
-*@
+@using FactoryContracts.ViewModels
+@model List
+
+
+
+ @foreach (var machine in Model)
+ {
+ Станок
+ Изделия
+ Планы производства
+
+
+ }
+
+@machine.MachineName
+
+
+
+ @foreach (var product in machine.Products)
+ {
+
+
+
+
+ @foreach (var planProduction in machine.PlanProductions)
+ {
+
+ Привязка станка к планам производства
+Список планов производств по изделиям
+
+
+
diff --git a/Factory/FactoryStorekeeperApp/Views/Home/Reports.cshtml b/Factory/FactoryStorekeeperApp/Views/Home/Reports.cshtml
new file mode 100644
index 0000000..4732ef0
--- /dev/null
+++ b/Factory/FactoryStorekeeperApp/Views/Home/Reports.cshtml
@@ -0,0 +1,11 @@
+@{
+ ViewData["Title"] = "Отчеты";
+}
+
+
+
+
+
+ @foreach (var planProduction in Model)
+ {
+ План производства
+ Изделие
+
+
+ }
+
+@planProduction.ProductionName
+
+
+
+ @foreach (var plan in planProduction.Products)
+ {
+
+ Выберите тип отчета
+
+