Макет для покупок готов
This commit is contained in:
parent
b7fb6df828
commit
e558896d4f
@ -88,7 +88,7 @@ namespace HardwareShopClientApp.Controllers
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return RedirectToAction("Index", "Worker");
|
return Redirect("Index");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -46,6 +46,25 @@ namespace HardwareShopClientApp.Controllers
|
|||||||
return View(APIClient.GetRequest<List<PurchaseViewModel>>($"api/client/getpurchases?UserId={APIClient.User.Id}"));
|
return View(APIClient.GetRequest<List<PurchaseViewModel>>($"api/client/getpurchases?UserId={APIClient.User.Id}"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[HttpPost]
|
||||||
|
public void Purchases(int id)
|
||||||
|
{
|
||||||
|
//return View();
|
||||||
|
//string login = (string)TempData["UserId"];
|
||||||
|
|
||||||
|
Response.Redirect("Purchase");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
[HttpGet]
|
||||||
|
public IActionResult Purchase()
|
||||||
|
{
|
||||||
|
//return View();
|
||||||
|
//string login = (string)TempData["UserId"];
|
||||||
|
|
||||||
|
return View();
|
||||||
|
}
|
||||||
|
|
||||||
public IActionResult WorkerReport()
|
public IActionResult WorkerReport()
|
||||||
{
|
{
|
||||||
return View();
|
return View();
|
||||||
|
@ -14,6 +14,10 @@
|
|||||||
<label class="form-label">Пароль</label>
|
<label class="form-label">Пароль</label>
|
||||||
<input type="password" class="form-control" name="password">
|
<input type="password" class="form-control" name="password">
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-sm-2 d-flex justify-content-evenly align-items-baseline">
|
||||||
<button type="submit" class="btn btn-primary mt-3 px-4">Submit</button>
|
<button type="submit" class="btn btn-primary mt-3 px-4">Submit</button>
|
||||||
|
<a asp-action="Register">Регистрация</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
106
HardwareShop/HardwareShopClientApp/Views/Worker/Purchase.cshtml
Normal file
106
HardwareShop/HardwareShopClientApp/Views/Worker/Purchase.cshtml
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
@using HardwareShopContracts.ViewModels
|
||||||
|
@{
|
||||||
|
ViewData["Title"] = "Purchase";
|
||||||
|
}
|
||||||
|
|
||||||
|
@model List<GoodViewModel>
|
||||||
|
|
||||||
|
@section Header {
|
||||||
|
<header>
|
||||||
|
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
|
||||||
|
aria-expanded="false" aria-label="Toggle navigation">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
|
||||||
|
<ul class="navbar-nav flex-grow-1">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link text-dark" asp-area="" asp-controller="Worker" asp-action="Purchases">Purchases</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link text-dark" asp-area="" asp-controller="Worker" asp-action="Builds">Builds</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link text-dark" asp-area="" asp-controller="Worker" asp-action="Comments">Comments</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link text-dark" asp-area="" asp-controller="Worker" asp-action="listComponents">listComponents</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link text-dark" asp-area="" asp-controller="Worker" asp-action="WorkerReport">WorkerReport</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
}
|
||||||
|
<form class="d-flex justify-content-evenly">
|
||||||
|
<div class=" col-sm-8">
|
||||||
|
<div class="text-center">
|
||||||
|
<h2 class="display-4">Товары</h2>
|
||||||
|
</div>
|
||||||
|
<div class="text-center" name="id">
|
||||||
|
<table class="table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Номер
|
||||||
|
</th>
|
||||||
|
<th>
|
||||||
|
Название товара
|
||||||
|
</th>
|
||||||
|
<th>
|
||||||
|
Цена
|
||||||
|
</th>
|
||||||
|
<th>
|
||||||
|
Пользователь
|
||||||
|
</th>
|
||||||
|
<th>
|
||||||
|
Количество
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="text-center d-flex flex-column mt-5">
|
||||||
|
<button type="button" class="btn btn-primary btn-lg mb-5" data-bs-toggle="modal" data-bs-target="#exampleModal">Добавить</button>
|
||||||
|
<button type="button" class="btn btn-primary btn-lg mb-5" data-bs-toggle="modal" data-bs-target="#exampleModal">Изменить</button>
|
||||||
|
<button type="button" class="btn btn-primary btn-lg mb-5">Удалить</button>
|
||||||
|
<button type="button" class="btn btn-primary btn-lg mb-5">Обновить</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Модальное окно -->
|
||||||
|
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h5 class="modal-title" id="exampleModalLabel">Заголовок модального окна</h5>
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Закрыть"></button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="col-sm-3">
|
||||||
|
<label class="form-label">Товар</label>
|
||||||
|
<select class="form-select" name="role">
|
||||||
|
<option value="1">Товар 1</option>
|
||||||
|
<option value="2">Товар 2</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm-3">
|
||||||
|
<label class="form-label">Количество</label>
|
||||||
|
<input type="number" class="form-control" name="count">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Закрыть</button>
|
||||||
|
<button type="button" class="btn btn-primary">Сохранить изменения</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
@ -36,11 +36,12 @@
|
|||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
}
|
}
|
||||||
|
<form method="post" class="d-flex justify-content-evenly">
|
||||||
|
<div class=" col-sm-8">
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<h2 class="display-4">Регистрация</h2>
|
<h2 class="display-4">Покупки</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-center">
|
<div class="text-center" name="id">
|
||||||
@{
|
@{
|
||||||
if (Model == null)
|
if (Model == null)
|
||||||
{
|
{
|
||||||
@ -54,13 +55,7 @@
|
|||||||
Номер
|
Номер
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Блюдо
|
Дата оплаты
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
Дата создания
|
|
||||||
</th>
|
|
||||||
<th>
|
|
||||||
Количество
|
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Сумма
|
Сумма
|
||||||
@ -68,6 +63,9 @@
|
|||||||
<th>
|
<th>
|
||||||
Статус
|
Статус
|
||||||
</th>
|
</th>
|
||||||
|
<th>
|
||||||
|
Пользователь
|
||||||
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -95,4 +93,11 @@
|
|||||||
</table>
|
</table>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="text-center d-flex flex-column mt-5">
|
||||||
|
<button type="submit" class="btn btn-primary btn-lg mb-5">Добавить</button>
|
||||||
|
<button type="submit" class="btn btn-primary btn-lg mb-5">Изменить</button>
|
||||||
|
<button type="button" class="btn btn-primary btn-lg mb-5">Удалить</button>
|
||||||
|
<button type="button" class="btn btn-primary btn-lg mb-5">Обновить</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
Loading…
Reference in New Issue
Block a user