Реализовал форму отчета по диагнозам
This commit is contained in:
parent
36cb96aad0
commit
a348a44221
@ -123,6 +123,7 @@ namespace PolyclinicWebAppImplementer.Controllers
|
|||||||
{
|
{
|
||||||
if (HttpContext.Request.Method == "POST")
|
if (HttpContext.Request.Method == "POST")
|
||||||
{
|
{
|
||||||
|
ViewData["ShowReport"] = true;
|
||||||
return View();
|
return View();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -1,3 +1,113 @@
|
|||||||
@{
|
@{
|
||||||
ViewBag.SelectedSiteMenuItem = SiteMenuItems.Diagnose;
|
ViewBag.SelectedSiteMenuItem = SiteMenuItems.DiagnosesReport;
|
||||||
}
|
}
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<form id="diagnosesReportForm" method="post" class="d-flex mb-4">
|
||||||
|
<div class="me-5">
|
||||||
|
<label for="dateFrom">
|
||||||
|
Дата начала
|
||||||
|
</label>
|
||||||
|
<input type="date" id="dateFrom" name="dateFrom" />
|
||||||
|
</div>
|
||||||
|
<div class="me-5">
|
||||||
|
<label for="dateTo">
|
||||||
|
Дата завершения
|
||||||
|
</label>
|
||||||
|
<input type="date" id="dateTo" name="dateTo" />
|
||||||
|
</div>
|
||||||
|
<div class="me-5">
|
||||||
|
<fieldset class="d-flex">
|
||||||
|
<div class="me-4">
|
||||||
|
<label for="radioreportTypeEmail">Отправить на почту</label>
|
||||||
|
<input id="radioreportTypeEmail" type="radio" name="reportType" value="email" />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="radioreportTypeForm">Показать на форме</label>
|
||||||
|
<input id="radioreportTypeForm" type="radio" name="reportType" value="form" />
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
|
</div>
|
||||||
|
<button class="btn btn-primary btn-sm" type="submit">
|
||||||
|
Сформировать
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
@if (ViewData.ContainsKey("ShowReport"))
|
||||||
|
{
|
||||||
|
<table class="table mt-3 caption-top table-hover">
|
||||||
|
<caption>Отчет по болезням с 01.01.2023 по 31.12.2023</caption>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">
|
||||||
|
#
|
||||||
|
</th>
|
||||||
|
<th scope="col">
|
||||||
|
Болезнь
|
||||||
|
</th>
|
||||||
|
<th scope="col">
|
||||||
|
Дата начала
|
||||||
|
</th>
|
||||||
|
<th scope="col">
|
||||||
|
Дата завершения
|
||||||
|
</th>
|
||||||
|
<th scope="col">
|
||||||
|
Курсы
|
||||||
|
</th>
|
||||||
|
<th scope="col">
|
||||||
|
Симптомы
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
@{
|
||||||
|
for (int i = 0; i < 5; i++)
|
||||||
|
{
|
||||||
|
<tr>
|
||||||
|
<th scope="row">
|
||||||
|
@(i + 1)
|
||||||
|
</th>
|
||||||
|
<td>
|
||||||
|
Лихорадка Эбола
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
16.03.2023
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
20.10.2023
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
Курс приема топорина<sup>®</sup>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
Лихорадка
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Курс приема четвертина<sup>®</sup></td>
|
||||||
|
<td>Покрасения</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Курс приема колесовина<sup>®</sup></td>
|
||||||
|
<td>Головокружение</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
<td>Курс электрофореза</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user