Добавление отчёта в приложение кассира.
This commit is contained in:
parent
e219fbb2b4
commit
259791b693
@ -174,6 +174,39 @@ namespace BankYouBankruptCashierApp.Controllers
|
||||
//TODO
|
||||
});
|
||||
|
||||
Response.Redirect("Index");
|
||||
}
|
||||
|
||||
//открытие формы отчёта. Получаем и передаём список изделий во вьюху?
|
||||
[HttpGet]
|
||||
public IActionResult CreateReport()
|
||||
{
|
||||
//ViewBag.Accountes = APICashier.GetRequest<List<AccountViewModel>>("api/main/getaccountlist");
|
||||
|
||||
return View();
|
||||
}
|
||||
|
||||
//создание отчёта Post-запросом
|
||||
[HttpPost]
|
||||
public void CreateReport(DateTime DateFrom, DateTime DateTo)
|
||||
{
|
||||
if (APICashier.Cashier == null)
|
||||
{
|
||||
//throw new Exception("Вы как сюда попали? Суда вход только авторизованным");
|
||||
}
|
||||
|
||||
if (DateFrom > DateTo)
|
||||
{
|
||||
throw new Exception("Дата начала периода не может быть позже даты конца периода");
|
||||
}
|
||||
|
||||
APICashier.PostRequest("api/main/createreport", new ReportBindingModel
|
||||
{
|
||||
FileName = APICashier.Cashier.Surname
|
||||
|
||||
//TODO
|
||||
});
|
||||
|
||||
Response.Redirect("Index");
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,42 @@
|
||||
@{
|
||||
ViewData["Title"] = "CreateReport";
|
||||
}
|
||||
|
||||
<div class="text-center">
|
||||
<h2 class="display-4">Создание отчёта</h2>
|
||||
</div>
|
||||
<form method="post">
|
||||
<div class="container px-4">
|
||||
<div class="row gx-5">
|
||||
<div class="col">
|
||||
<div class="p-3">С</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="p-3 btn-group">
|
||||
<button class="btn btn-secondary btn-sm dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false" padding="10">
|
||||
Начало периода
|
||||
</button>
|
||||
<ul class="dropdown-menu">
|
||||
...
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="p-3">по</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="p-3 btn-group">
|
||||
<button class="btn btn-secondary btn-sm dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false" padding="10">
|
||||
Конец периода
|
||||
</button>
|
||||
<ul class="dropdown-menu">
|
||||
...
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-4">Отчёт:</div>
|
||||
</div>
|
||||
</form>
|
@ -26,7 +26,7 @@
|
||||
<a class="nav-link text-dark" asparea="" asp-controller="Home" asp-action="Index">Счета</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asparea="" asp-controller="Home" asp-action="#">Отчёт</a>
|
||||
<a class="nav-link text-dark" asparea="" asp-controller="Home" asp-action="CreateReport">Отчёт</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-dark" asparea="" asp-controller="Home" asp-action="Privacy">Личные данные</a>
|
||||
|
Loading…
Reference in New Issue
Block a user