diff --git a/VetClinic/PharmacistApp/Controllers/HomeController.cs b/VetClinic/PharmacistApp/Controllers/HomeController.cs index 53dd0ad..8c73825 100644 --- a/VetClinic/PharmacistApp/Controllers/HomeController.cs +++ b/VetClinic/PharmacistApp/Controllers/HomeController.cs @@ -586,5 +586,17 @@ View(res); return result; } + [HttpGet] + public IActionResult AnimalListReport() + { + ViewBag.Services = APIPharmacist.GetRequest>($"api/service/getservices?pharmacistid={APIPharmacist.Pharmacist.Id}"); + return View(); + } + [HttpGet] + public IActionResult Report() + { + return View(); + } } + } diff --git a/VetClinic/PharmacistApp/Views/Home/AnimalListReport.cshtml b/VetClinic/PharmacistApp/Views/Home/AnimalListReport.cshtml new file mode 100644 index 0000000..04ff55f --- /dev/null +++ b/VetClinic/PharmacistApp/Views/Home/AnimalListReport.cshtml @@ -0,0 +1,27 @@ +@using VetClinicContracts.ViewModels; + +@{ + ViewData["Title"] = "AnimalListReport"; +} + +
+

Создать списки животных для услуг

+
+
+
+
Услуги:
+
+ +
+
+
+
+
+
+
+
diff --git a/VetClinic/PharmacistApp/Views/Home/Report.cshtml b/VetClinic/PharmacistApp/Views/Home/Report.cshtml new file mode 100644 index 0000000..3c90865 --- /dev/null +++ b/VetClinic/PharmacistApp/Views/Home/Report.cshtml @@ -0,0 +1,60 @@ + +@{ + ViewData["Title"] = "Report"; +} +
+

Список медикаментов с расшифровкой по визитам и рекомендациям

+
+
+ @{ + // if (Model == null) + // { + //

Будь добр, дружок, зайди!

+ // return; + // } +
+
Начальная дата:
+
+ +
+
+
+
Конечная дата:
+
+ +
+
+ + + + + + + + + + + + будет заполняться вьюшками отчета + +
+ Номер + + Дата + + Медикамент + + Визит + + Рекомендация +
+
+
+
+
+
+
+
+
+ } +
\ No newline at end of file diff --git a/VetClinic/PharmacistApp/Views/Home/UpdateGuidance.cshtml b/VetClinic/PharmacistApp/Views/Home/UpdateGuidance.cshtml index d508714..70c74ab 100644 --- a/VetClinic/PharmacistApp/Views/Home/UpdateGuidance.cshtml +++ b/VetClinic/PharmacistApp/Views/Home/UpdateGuidance.cshtml @@ -3,7 +3,7 @@ }
-

Обновление заказа

+

Обновление рекомендации

diff --git a/VetClinic/PharmacistApp/Views/Shared/_Layout.cshtml b/VetClinic/PharmacistApp/Views/Shared/_Layout.cshtml index 1e4bdbe..9755a26 100644 --- a/VetClinic/PharmacistApp/Views/Shared/_Layout.cshtml +++ b/VetClinic/PharmacistApp/Views/Shared/_Layout.cshtml @@ -32,6 +32,12 @@ + +