-Modifica filtri cliente in impianti e chiamate (messi per testo anzichè dropdownlist)
- detail tutti, modificata grafica
This commit is contained in:
parent
ac15dce46c
commit
9efe22e88b
@ -66,14 +66,14 @@ namespace VirtualTask.Controllers
|
|||||||
|
|
||||||
if (!string.IsNullOrEmpty(cliente))
|
if (!string.IsNullOrEmpty(cliente))
|
||||||
{
|
{
|
||||||
modelList = modelList.Where(s => s.ancodice != null && s.ancodice.Contains(cliente)).ToList();
|
modelList = modelList.Where(s => s.andescri != null && s.andescri.ToUpper().Contains(cliente.ToUpper())).ToList();
|
||||||
|
|
||||||
ViewData["CurrentFilter"] = cliente;
|
ViewData["ClienteFilter"] = cliente;
|
||||||
|
|
||||||
ViewBag.Clienti = cliente;
|
ViewBag.Clienti = cliente;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
ViewData["CurrentFilter"] = null;
|
ViewData["ClienteFilter"] = null;
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(impianto))
|
if (!string.IsNullOrEmpty(impianto))
|
||||||
{
|
{
|
||||||
|
|||||||
@ -33,7 +33,7 @@ namespace VirtualTask.Controllers
|
|||||||
|
|
||||||
#region INDEX
|
#region INDEX
|
||||||
|
|
||||||
public IActionResult Index(string searchString, string cliente, int? page = 1)
|
public IActionResult Index(string searchString, string searchCliente, int? page = 1)
|
||||||
{
|
{
|
||||||
SessionHelper helper = new SessionHelper(this);
|
SessionHelper helper = new SessionHelper(this);
|
||||||
token = helper.GetStringValue("tok");
|
token = helper.GetStringValue("tok");
|
||||||
@ -71,11 +71,13 @@ namespace VirtualTask.Controllers
|
|||||||
else
|
else
|
||||||
ViewData["CurrentFilter"] = null;
|
ViewData["CurrentFilter"] = null;
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(cliente))
|
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(searchCliente))
|
||||||
{
|
{
|
||||||
modelList = modelList.Where(x => x.imultcli != null && x.imultcli.Contains(cliente)).ToList();
|
modelList = modelList.Where(x => x.descCliente != null && x.descCliente.ToUpper().Contains(searchCliente.ToUpper())).ToList();
|
||||||
ViewData["CurrentFilterCli"] = cliente;
|
ViewData["CurrentFilterCli"] = searchCliente;
|
||||||
ViewBag.Cliente = cliente;
|
//ViewBag.Cliente = cliente;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
ViewData["CurrentFilterCli"] = null;
|
ViewData["CurrentFilterCli"] = null;
|
||||||
|
|||||||
@ -7,40 +7,115 @@
|
|||||||
|
|
||||||
<div class="agy-project-wrapper agy-project-page-wrapper">
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="table-responsive">
|
||||||
<div class="row">
|
<table class="table table-bordered table-striped table-hover align-middle">
|
||||||
<div class="col-md-10">
|
<thead class="table-primary">
|
||||||
<b>@Html.DisplayNameFor(model => model.ancodice)</b> @Html.DisplayFor(model => model.ancodice)
|
<tr>
|
||||||
</div>
|
<th scope="col"> </th>
|
||||||
<div class="col-md-10">
|
<th scope="col"> </th>
|
||||||
<b>@Html.DisplayNameFor(model => model.andescri)</b> @Html.DisplayFor(model => model.andescri)
|
</tr>
|
||||||
</div>
|
</thead>
|
||||||
<div class="col-md-10">
|
<tbody>
|
||||||
<b>@Html.DisplayNameFor(model => model.ancodfis)</b> @Html.DisplayFor(model => model.ancodfis)
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
<div class="col-md-10">
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.ancodice)</span>
|
||||||
<b>@Html.DisplayNameFor(model => model.anpariva)</b> @Html.DisplayFor(model => model.anpariva)
|
</td>
|
||||||
</div>
|
<td>@Html.DisplayFor(model => model.ancodice)</td>
|
||||||
<div class="col-md-10">
|
</tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.anindiri)</b> @Html.DisplayFor(model => model.anindiri)
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
<div class="col-md-10">
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.andescri)</span>
|
||||||
<b>@Html.DisplayNameFor(model => model.antelefo)</b> @Html.DisplayFor(model => model.antelefo)
|
</td>
|
||||||
</div>
|
<td>@Html.DisplayFor(model => model.andescri)</td>
|
||||||
<div class="col-md-10">
|
</tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.an_email)</b> @Html.DisplayFor(model => model.an_email)
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
<div class="col-md-10">
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.ancodfis)</span>
|
||||||
<b>@Html.DisplayNameFor(model => model.an_empec)</b> @Html.DisplayFor(model => model.an_empec)
|
</td>
|
||||||
</div>
|
<td>@Html.DisplayFor(model => model.ancodfis)</td>
|
||||||
<div class="col-md-4">
|
</tr>
|
||||||
<div>
|
<tr>
|
||||||
<a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
|
<td class="fw-bold fs-5">
|
||||||
@* <input type="submit" value="Torna alla lista" class="agy-btn submitForm" /> *@
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.anpariva)</span>
|
||||||
</div>
|
</td>
|
||||||
</div>
|
<td>@Html.DisplayFor(model => model.anpariva)</td>
|
||||||
</div>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.anindiri)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.anindiri)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.antelefo)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.antelefo)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.an_email)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.an_email)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.an_empec)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.an_empec)</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@* @model VirtualTask.Models.Anag *@
|
||||||
|
|
||||||
|
@* @{ *@
|
||||||
|
@* ViewData["Title"] = "Dettaglio cliente"; *@
|
||||||
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
||||||
|
@* } *@
|
||||||
|
|
||||||
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
||||||
|
@* <div class="container"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.ancodice)</b> @Html.DisplayFor(model => model.ancodice) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.andescri)</b> @Html.DisplayFor(model => model.andescri) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.ancodfis)</b> @Html.DisplayFor(model => model.ancodfis) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.anpariva)</b> @Html.DisplayFor(model => model.anpariva) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.anindiri)</b> @Html.DisplayFor(model => model.anindiri) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.antelefo)</b> @Html.DisplayFor(model => model.antelefo) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.an_email)</b> @Html.DisplayFor(model => model.an_email) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.an_empec)</b> @Html.DisplayFor(model => model.an_empec) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-4"> *@
|
||||||
|
@* <div> *@
|
||||||
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
|
||||||
|
|||||||
@ -7,81 +7,96 @@
|
|||||||
|
|
||||||
<div class="agy-project-wrapper agy-project-page-wrapper">
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<form asp-action="Edit">
|
||||||
<div class="col-md-4">
|
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||||
<form asp-action="Edit">
|
|
||||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
|
||||||
|
|
||||||
@Html.HiddenFor(x => x.antipcon)
|
@Html.HiddenFor(x => x.antipcon)
|
||||||
@Html.HiddenFor(x => x.andtobso)
|
@Html.HiddenFor(x => x.andtobso)
|
||||||
@Html.HiddenFor(x => x.annumlis)
|
@Html.HiddenFor(x => x.annumlis)
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
|
||||||
<div class="form-group">
|
<div class="table-responsive">
|
||||||
<h5><label asp-for="ancodice" class="agy-client-quote"></label></h5>
|
<table class="table table-bordered table-striped table-hover align-middle">
|
||||||
@*<input asp-for="cccodice" class="form-control" />*@
|
<thead class="table-primary">
|
||||||
@Html.HiddenFor(x => x.ancodice)
|
<tr>
|
||||||
@Html.DisplayFor(model => model.ancodice)
|
<th scope="col"> </th>
|
||||||
<span asp-validation-for="ancodice" class="text-danger"></span>
|
<th scope="col"> </th>
|
||||||
</div>
|
</tr>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
</thead>
|
||||||
<div class="form-group">
|
<tbody>
|
||||||
<h5><label asp-for="andescri" class="agy-client-quote"></label></h5>
|
<tr>
|
||||||
<input asp-for="andescri" class="agy-form-field require" placeholder="Descrizione" />
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.ancodice)</span></td>
|
||||||
<span asp-validation-for="andescri" class="text-danger"></span>
|
<td>
|
||||||
</div>
|
@Html.HiddenFor(m => m.ancodice)
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
@Html.DisplayFor(m => m.ancodice)
|
||||||
<div class="form-group">
|
<span asp-validation-for="ancodice" class="text-danger"></span>
|
||||||
<h5><label asp-for="ancodfis" class="agy-client-quote"></label></h5>
|
</td>
|
||||||
<input asp-for="ancodfis" class="agy-form-field require" placeholder="Codice fiscale" />
|
</tr>
|
||||||
<span asp-validation-for="ancodfis" class="text-danger"></span>
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.andescri)</span></td>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<td>
|
||||||
<div class="form-group">
|
<input asp-for="andescri" class="agy-form-field require" placeholder="Descrizione" />
|
||||||
<h5><label asp-for="anpariva" class="agy-client-quote"></label></h5>
|
<span asp-validation-for="andescri" class="text-danger"></span>
|
||||||
<input asp-for="anpariva" class="agy-form-field require" placeholder="P. Iva" />
|
</td>
|
||||||
<span asp-validation-for="anpariva" class="text-danger"></span>
|
</tr>
|
||||||
</div>
|
<tr>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.ancodfis)</span></td>
|
||||||
<div class="form-group">
|
<td>
|
||||||
<h5><label asp-for="anindiri" class="agy-client-quote"></label></h5>
|
<input asp-for="ancodfis" class="agy-form-field require" placeholder="Codice fiscale" />
|
||||||
<input asp-for="anindiri" class="form-control" placeholder ="Indirizzo"/>
|
<span asp-validation-for="ancodfis" class="text-danger"></span>
|
||||||
<span asp-validation-for="anindiri" class="text-danger"></span>
|
</td>
|
||||||
</div>
|
</tr>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<tr>
|
||||||
<div class="form-group">
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.anpariva)</span></td>
|
||||||
<h5><label asp-for="antelefo" class="agy-client-quote"></label></h5>
|
<td>
|
||||||
<input asp-for="antelefo" class="agy-form-field require" placeholder="Telefono" />
|
<input asp-for="anpariva" class="agy-form-field require" placeholder="P. Iva" />
|
||||||
<span asp-validation-for="antelefo" class="text-danger"></span>
|
<span asp-validation-for="anpariva" class="text-danger"></span>
|
||||||
</div>
|
</td>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
</tr>
|
||||||
<div class="form-group">
|
<tr>
|
||||||
<h5><label asp-for="annumcel" class="agy-client-quote"></label></h5>
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.anindiri)</span></td>
|
||||||
<input asp-for="annumcel" class="agy-form-field require" placeholder="Cellulare" />
|
<td>
|
||||||
<span asp-validation-for="annumcel" class="text-danger"></span>
|
<input asp-for="anindiri" class="agy-form-field require" placeholder="Indirizzo" />
|
||||||
</div>
|
<span asp-validation-for="anindiri" class="text-danger"></span>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
</td>
|
||||||
<div class="form-group">
|
</tr>
|
||||||
<h5><label asp-for="an_email" class="agy-client-quote"></label></h5>
|
<tr>
|
||||||
<input asp-for="an_email" class="agy-form-field require" placeholder="E-mail" />
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.antelefo)</span></td>
|
||||||
<span asp-validation-for="an_email" class="text-danger"></span>
|
<td>
|
||||||
</div>
|
<input asp-for="antelefo" class="agy-form-field require" placeholder="Telefono" />
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<span asp-validation-for="antelefo" class="text-danger"></span>
|
||||||
<div class="form-group">
|
</td>
|
||||||
<h5><label asp-for="an_empec" class="agy-client-quote"></label></h5>
|
</tr>
|
||||||
<input asp-for="an_empec" class="agy-form-field require" placeholder="PEC" />
|
<tr>
|
||||||
<span asp-validation-for="an_empec" class="text-danger"></span>
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.annumcel)</span></td>
|
||||||
</div>
|
<td>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<input asp-for="annumcel" class="agy-form-field require" placeholder="Cellulare" />
|
||||||
<div class="form-group">
|
<span asp-validation-for="annumcel" class="text-danger"></span>
|
||||||
<input type="submit" value="Salva" class="agy-btn submitForm" />
|
</td>
|
||||||
<a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
|
</tr>
|
||||||
</div>
|
<tr>
|
||||||
</form>
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.an_email)</span></td>
|
||||||
|
<td>
|
||||||
|
<input asp-for="an_email" class="agy-form-field require" placeholder="E-mail" />
|
||||||
|
<span asp-validation-for="an_email" class="text-danger"></span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.an_empec)</span></td>
|
||||||
|
<td>
|
||||||
|
<input asp-for="an_empec" class="agy-form-field require" placeholder="PEC" />
|
||||||
|
<span asp-validation-for="an_empec" class="text-danger"></span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div>
|
<div class="form-group">
|
||||||
@* <a asp-action="Index">Torna alla lista</a> *@
|
<input type="submit" value="Salva" class="agy-btn submitForm" />
|
||||||
</div>
|
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
@section Scripts {
|
@section Scripts {
|
||||||
@{
|
@{
|
||||||
await Html.RenderPartialAsync("_ValidationScriptsPartial");
|
await Html.RenderPartialAsync("_ValidationScriptsPartial");
|
||||||
@ -89,3 +104,94 @@
|
|||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@* @model VirtualTask.Models.Anag *@
|
||||||
|
|
||||||
|
@* @{ *@
|
||||||
|
@* ViewData["Title"] = "Modifica cliente"; *@
|
||||||
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
||||||
|
@* } *@
|
||||||
|
|
||||||
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
||||||
|
@* <div class="container"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="col-md-4"> *@
|
||||||
|
@* <form asp-action="Edit"> *@
|
||||||
|
@* <div asp-validation-summary="ModelOnly" class="text-danger"></div> *@
|
||||||
|
|
||||||
|
@* @Html.HiddenFor(x => x.antipcon) *@
|
||||||
|
@* @Html.HiddenFor(x => x.andtobso) *@
|
||||||
|
@* @Html.HiddenFor(x => x.annumlis) *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="ancodice" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* @Html.HiddenFor(x => x.ancodice) *@
|
||||||
|
@* @Html.DisplayFor(model => model.ancodice) *@
|
||||||
|
@* <span asp-validation-for="ancodice" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="andescri" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="andescri" class="agy-form-field require" placeholder="Descrizione" /> *@
|
||||||
|
@* <span asp-validation-for="andescri" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="ancodfis" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="ancodfis" class="agy-form-field require" placeholder="Codice fiscale" /> *@
|
||||||
|
@* <span asp-validation-for="ancodfis" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="anpariva" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="anpariva" class="agy-form-field require" placeholder="P. Iva" /> *@
|
||||||
|
@* <span asp-validation-for="anpariva" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="anindiri" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="anindiri" class="form-control" placeholder ="Indirizzo"/> *@
|
||||||
|
@* <span asp-validation-for="anindiri" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="antelefo" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="antelefo" class="agy-form-field require" placeholder="Telefono" /> *@
|
||||||
|
@* <span asp-validation-for="antelefo" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="annumcel" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="annumcel" class="agy-form-field require" placeholder="Cellulare" /> *@
|
||||||
|
@* <span asp-validation-for="annumcel" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="an_email" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="an_email" class="agy-form-field require" placeholder="E-mail" /> *@
|
||||||
|
@* <span asp-validation-for="an_email" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="an_empec" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="an_empec" class="agy-form-field require" placeholder="PEC" /> *@
|
||||||
|
@* <span asp-validation-for="an_empec" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <input type="submit" value="Salva" class="agy-btn submitForm" /> *@
|
||||||
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </form> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* @section Scripts { *@
|
||||||
|
@* @{ *@
|
||||||
|
@* await Html.RenderPartialAsync("_ValidationScriptsPartial"); *@
|
||||||
|
@* } *@
|
||||||
|
@* } *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
|||||||
@ -7,41 +7,116 @@
|
|||||||
|
|
||||||
<div class="agy-project-wrapper agy-project-page-wrapper">
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="table-responsive">
|
||||||
<div class="col-md-4">
|
<table class="table table-bordered table-striped table-hover align-middle">
|
||||||
<div class="col-md-10">
|
<thead class="table-primary">
|
||||||
<b>@Html.DisplayNameFor(model => model.SlCodice)</b> @Html.DisplayFor(model => model.SlCodice)
|
<tr>
|
||||||
</div>
|
<th scope="col"> </th>
|
||||||
<div class="col-md-10">
|
<th scope="col"> </th>
|
||||||
<b>@Html.DisplayNameFor(model => model.ArDesArt)</b> @Html.DisplayFor(model => model.ArDesArt)
|
</tr>
|
||||||
</div>
|
</thead>
|
||||||
<div class="col-md-10">
|
<tbody>
|
||||||
<b>@Html.DisplayNameFor(model => model.SlCodMag)</b> @Html.DisplayFor(model => model.SlCodMag)
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
<div class="col-md-10">
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.SlCodice)</span>
|
||||||
<b>@Html.DisplayNameFor(model => model.SlQtAper)</b> @Html.DisplayFor(model => model.SlQtAper)
|
</td>
|
||||||
</div>
|
<td>@Html.DisplayFor(model => model.SlCodice)</td>
|
||||||
<div class="col-md-10">
|
</tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.LiPrezzo)</b> @Html.DisplayFor(model => model.LiPrezzo)
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
@Html.HiddenFor(model => model.Azienda)
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.ArDesArt)</span>
|
||||||
@Html.HiddenFor(model => model.AmCodice)
|
</td>
|
||||||
@Html.HiddenFor(model => model.LoCodice)
|
<td>@Html.DisplayFor(model => model.ArDesArt)</td>
|
||||||
@Html.HiddenFor(model => model.LiCodLis)
|
</tr>
|
||||||
@Html.HiddenFor(model => model.LiCodArt)
|
<tr>
|
||||||
@Html.HiddenFor(model => model.LiDatAtt)
|
<td class="fw-bold fs-5">
|
||||||
@Html.HiddenFor(model => model.LiQuanti)
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.SlCodMag)</span>
|
||||||
@Html.HiddenFor(model => model.LiScont1)
|
</td>
|
||||||
@Html.HiddenFor(model => model.LiScont2)
|
<td>@Html.DisplayFor(model => model.SlCodMag)</td>
|
||||||
@Html.HiddenFor(model => model.LiScont3)
|
</tr>
|
||||||
@Html.HiddenFor(model => model.LiScont4)
|
<tr>
|
||||||
@Html.HiddenFor(model => model.Gest_Matr)
|
<td class="fw-bold fs-5">
|
||||||
@Html.HiddenFor(model => model.Gest_Lotti)
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.SlQtAper)</span>
|
||||||
@Html.HiddenFor(model => model.Desc_sup)
|
</td>
|
||||||
<div>
|
<td>@Html.DisplayFor(model => model.SlQtAper)</td>
|
||||||
<a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
|
</tr>
|
||||||
</div>
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.LiPrezzo)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.LiPrezzo)</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@* Hidden fields *@
|
||||||
|
@Html.HiddenFor(model => model.Azienda)
|
||||||
|
@Html.HiddenFor(model => model.AmCodice)
|
||||||
|
@Html.HiddenFor(model => model.LoCodice)
|
||||||
|
@Html.HiddenFor(model => model.LiCodLis)
|
||||||
|
@Html.HiddenFor(model => model.LiCodArt)
|
||||||
|
@Html.HiddenFor(model => model.LiDatAtt)
|
||||||
|
@Html.HiddenFor(model => model.LiQuanti)
|
||||||
|
@Html.HiddenFor(model => model.LiScont1)
|
||||||
|
@Html.HiddenFor(model => model.LiScont2)
|
||||||
|
@Html.HiddenFor(model => model.LiScont3)
|
||||||
|
@Html.HiddenFor(model => model.LiScont4)
|
||||||
|
@Html.HiddenFor(model => model.Gest_Matr)
|
||||||
|
@Html.HiddenFor(model => model.Gest_Lotti)
|
||||||
|
@Html.HiddenFor(model => model.Desc_sup)
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@* @model VirtualTask.Models.Articoli *@
|
||||||
|
|
||||||
|
@* @{ *@
|
||||||
|
@* ViewData["Title"] = "Dettaglio articolo"; *@
|
||||||
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
||||||
|
@* } *@
|
||||||
|
|
||||||
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
||||||
|
@* <div class="container"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="col-md-4"> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.SlCodice)</b> @Html.DisplayFor(model => model.SlCodice) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.ArDesArt)</b> @Html.DisplayFor(model => model.ArDesArt) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.SlCodMag)</b> @Html.DisplayFor(model => model.SlCodMag) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.SlQtAper)</b> @Html.DisplayFor(model => model.SlQtAper) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.LiPrezzo)</b> @Html.DisplayFor(model => model.LiPrezzo) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* @Html.HiddenFor(model => model.Azienda) *@
|
||||||
|
@* @Html.HiddenFor(model => model.AmCodice) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LoCodice) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiCodLis) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiCodArt) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiDatAtt) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiQuanti) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiScont1) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiScont2) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiScont3) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiScont4) *@
|
||||||
|
@* @Html.HiddenFor(model => model.Gest_Matr) *@
|
||||||
|
@* @Html.HiddenFor(model => model.Gest_Lotti) *@
|
||||||
|
@* @Html.HiddenFor(model => model.Desc_sup) *@
|
||||||
|
@* <div> *@
|
||||||
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
|||||||
@ -7,65 +7,151 @@
|
|||||||
|
|
||||||
<div class="agy-project-wrapper agy-project-page-wrapper">
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<form asp-action="Edit">
|
||||||
<div class="col-md-4">
|
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||||
<form asp-action="Edit">
|
|
||||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
<div class="table-responsive">
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<table class="table table-bordered table-striped table-hover align-middle">
|
||||||
<div class="form-group">
|
<thead class="table-primary">
|
||||||
<h5><label asp-for="SlCodice" class="agy-client-quote"></label></h5>
|
<tr>
|
||||||
<input asp-for="SlCodice" class="agy-form-field require" class="form-control"/>
|
<th scope="col"> </th>
|
||||||
<span asp-validation-for="SlCodice" class="text-danger"></span>
|
<th scope="col"> </th>
|
||||||
</div>
|
</tr>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
</thead>
|
||||||
<div class="form-group">
|
<tbody>
|
||||||
<h5><label asp-for="ArDesArt" class="agy-client-quote"></label></h5>
|
<tr>
|
||||||
<input asp-for="ArDesArt" class="agy-form-field require" class="form-control"/>
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.SlCodice)</span></td>
|
||||||
<span asp-validation-for="ArDesArt" class="text-danger"></span>
|
<td>
|
||||||
</div>
|
<input asp-for="SlCodice" class="agy-form-field require" />
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<span asp-validation-for="SlCodice" class="text-danger"></span>
|
||||||
<div class="form-group">
|
</td>
|
||||||
<h5><label asp-for="SlCodMag" class="agy-client-quote"></label></h5>
|
</tr>
|
||||||
@Html.DropDownListFor(x => x.SlCodMag, (IEnumerable<SelectListItem>)ViewBag.Magazzini, new { @class = "agy-form-field require" })
|
<tr>
|
||||||
<span asp-validation-for="SlCodMag" class="text-danger"></span>
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.ArDesArt)</span></td>
|
||||||
</div>
|
<td>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<input asp-for="ArDesArt" class="agy-form-field require" />
|
||||||
<div class="form-group">
|
<span asp-validation-for="ArDesArt" class="text-danger"></span>
|
||||||
<h5><label asp-for="SlQtAper" class="agy-client-quote"></label></h5>
|
</td>
|
||||||
<input asp-for="SlQtAper" class="agy-form-field require" class="form-control" />
|
</tr>
|
||||||
<span asp-validation-for="SlQtAper" class="text-danger"></span>
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.SlCodMag)</span></td>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<td>
|
||||||
<div class="form-group">
|
@Html.DropDownListFor(x => x.SlCodMag, (IEnumerable<SelectListItem>)ViewBag.Magazzini, new { @class = "agy-form-field require" })
|
||||||
<h5><label asp-for="LiPrezzo" class="agy-client-quote"></label></h5>
|
<span asp-validation-for="SlCodMag" class="text-danger"></span>
|
||||||
<input asp-for="LiPrezzo_input" class="agy-form-field require" class="form-control" />
|
</td>
|
||||||
<span asp-validation-for="LiPrezzo" class="text-danger"></span>
|
</tr>
|
||||||
</div>
|
<tr>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.SlQtAper)</span></td>
|
||||||
<div class="form-group">
|
<td>
|
||||||
<input type="submit" value="Salva" class="agy-btn submitForm" />
|
<input asp-for="SlQtAper" class="agy-form-field require" />
|
||||||
<a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
|
<span asp-validation-for="SlQtAper" class="text-danger"></span>
|
||||||
</div>
|
</td>
|
||||||
@Html.HiddenFor(x => x.Azienda)
|
</tr>
|
||||||
@Html.HiddenFor(model => model.AmCodice)
|
<tr>
|
||||||
@Html.HiddenFor(model => model.LoCodice)
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.LiPrezzo)</span></td>
|
||||||
@Html.HiddenFor(model => model.LiCodLis)
|
<td>
|
||||||
@Html.HiddenFor(model => model.LiCodArt)
|
<input asp-for="LiPrezzo_input" class="agy-form-field require" />
|
||||||
@Html.HiddenFor(model => model.LiDatAtt)
|
<span asp-validation-for="LiPrezzo" class="text-danger"></span>
|
||||||
@Html.HiddenFor(model => model.LiQuanti)
|
</td>
|
||||||
@Html.HiddenFor(model => model.LiScont1)
|
</tr>
|
||||||
@Html.HiddenFor(model => model.LiScont2)
|
</tbody>
|
||||||
@Html.HiddenFor(model => model.LiScont3)
|
</table>
|
||||||
@Html.HiddenFor(model => model.LiScont4)
|
|
||||||
@Html.HiddenFor(model => model.Gest_Matr)
|
|
||||||
@Html.HiddenFor(model => model.Gest_Lotti)
|
|
||||||
@Html.HiddenFor(model => model.Desc_sup)
|
|
||||||
</form>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
<div class="form-group">
|
||||||
|
<input type="submit" value="Salva" class="agy-btn submitForm" />
|
||||||
|
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@* Campi nascosti *@
|
||||||
|
@Html.HiddenFor(x => x.Azienda)
|
||||||
|
@Html.HiddenFor(x => x.AmCodice)
|
||||||
|
@Html.HiddenFor(x => x.LoCodice)
|
||||||
|
@Html.HiddenFor(x => x.LiCodLis)
|
||||||
|
@Html.HiddenFor(x => x.LiCodArt)
|
||||||
|
@Html.HiddenFor(x => x.LiDatAtt)
|
||||||
|
@Html.HiddenFor(x => x.LiQuanti)
|
||||||
|
@Html.HiddenFor(x => x.LiScont1)
|
||||||
|
@Html.HiddenFor(x => x.LiScont2)
|
||||||
|
@Html.HiddenFor(x => x.LiScont3)
|
||||||
|
@Html.HiddenFor(x => x.LiScont4)
|
||||||
|
@Html.HiddenFor(x => x.Gest_Matr)
|
||||||
|
@Html.HiddenFor(x => x.Gest_Lotti)
|
||||||
|
@Html.HiddenFor(x => x.Desc_sup)
|
||||||
|
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@* @model VirtualTask.Models.Articoli *@
|
||||||
|
|
||||||
|
@* @{ *@
|
||||||
|
@* ViewData["Title"] = "Modifica articolo"; *@
|
||||||
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
||||||
|
@* } *@
|
||||||
|
|
||||||
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
||||||
|
@* <div class="container"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="col-md-4"> *@
|
||||||
|
@* <form asp-action="Edit"> *@
|
||||||
|
@* <div asp-validation-summary="ModelOnly" class="text-danger"></div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="SlCodice" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="SlCodice" class="agy-form-field require" class="form-control"/> *@
|
||||||
|
@* <span asp-validation-for="SlCodice" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="ArDesArt" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="ArDesArt" class="agy-form-field require" class="form-control"/> *@
|
||||||
|
@* <span asp-validation-for="ArDesArt" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="SlCodMag" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* @Html.DropDownListFor(x => x.SlCodMag, (IEnumerable<SelectListItem>)ViewBag.Magazzini, new { @class = "agy-form-field require" }) *@
|
||||||
|
@* <span asp-validation-for="SlCodMag" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="SlQtAper" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="SlQtAper" class="agy-form-field require" class="form-control" /> *@
|
||||||
|
@* <span asp-validation-for="SlQtAper" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="LiPrezzo" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="LiPrezzo_input" class="agy-form-field require" class="form-control" /> *@
|
||||||
|
@* <span asp-validation-for="LiPrezzo" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <input type="submit" value="Salva" class="agy-btn submitForm" /> *@
|
||||||
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* @Html.HiddenFor(x => x.Azienda) *@
|
||||||
|
@* @Html.HiddenFor(model => model.AmCodice) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LoCodice) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiCodLis) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiCodArt) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiDatAtt) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiQuanti) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiScont1) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiScont2) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiScont3) *@
|
||||||
|
@* @Html.HiddenFor(model => model.LiScont4) *@
|
||||||
|
@* @Html.HiddenFor(model => model.Gest_Matr) *@
|
||||||
|
@* @Html.HiddenFor(model => model.Gest_Lotti) *@
|
||||||
|
@* @Html.HiddenFor(model => model.Desc_sup) *@
|
||||||
|
@* </form> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
|
||||||
@* <script type="text/javascript">
|
@* <script type="text/javascript">
|
||||||
$(function () {
|
$(function () {
|
||||||
$("#imultcli").select2();
|
$("#imultcli").select2();
|
||||||
|
|||||||
@ -150,10 +150,6 @@
|
|||||||
<td class="fw-bold fs-5"><span class="badge bg-success">@Html.DisplayNameFor(model => model.chserial)</span></td>
|
<td class="fw-bold fs-5"><span class="badge bg-success">@Html.DisplayNameFor(model => model.chserial)</span></td>
|
||||||
<td>@Html.DisplayFor(model => model.chserial)</td>
|
<td>@Html.DisplayFor(model => model.chserial)</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -63,7 +63,9 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<i class="bx bxl-angular bx-sm text-black me-3">Cliente</i>
|
<i class="bx bxl-angular bx-sm text-black me-3">Cliente</i>
|
||||||
<span class="fw-medium">@Html.DropDownList("cliente", ViewBag.Clienti, null, new { @class = "agy-form-field require" })</span>
|
@* <span class="fw-medium">@Html.DropDownList("cliente", ViewBag.Clienti, null, new { @class = "agy-form-field require" })</span> *@
|
||||||
|
<span class="fw-medium">@Html.TextBox("cliente", null, new { placeholder = "Cerca per nome cliente", @class = "agy-form-field require" })</span>
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<i class="bx bxl-angular bx-sm text-black me-3">Tecnico</i>
|
<i class="bx bxl-angular bx-sm text-black me-3">Tecnico</i>
|
||||||
@ -204,6 +206,7 @@
|
|||||||
@Html.PagedListPager(Model, page => Url.Action("index", new
|
@Html.PagedListPager(Model, page => Url.Action("index", new
|
||||||
{
|
{
|
||||||
page = page,
|
page = page,
|
||||||
|
cliente = ViewData["ClienteFilter"],
|
||||||
impianto = ViewData["CurrentFilter"],
|
impianto = ViewData["CurrentFilter"],
|
||||||
tecnico = ViewData["CurrentFilterTec"],
|
tecnico = ViewData["CurrentFilterTec"],
|
||||||
indirizzo = ViewData["CurrentFilterIndiri"],
|
indirizzo = ViewData["CurrentFilterIndiri"],
|
||||||
|
|||||||
@ -7,27 +7,74 @@
|
|||||||
|
|
||||||
<div class="agy-project-wrapper agy-project-page-wrapper">
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="table-responsive">
|
||||||
<div class="row">
|
<table class="table table-bordered table-striped table-hover align-middle">
|
||||||
<div class="col-md-4">
|
<thead class="table-primary">
|
||||||
<div class="col-md-10">
|
<tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.cccodazi)</b> @Html.DisplayFor(model => model.cccodazi)
|
<th scope="col"> </th>
|
||||||
</div>
|
<th scope="col"> </th>
|
||||||
<div class="col-md-10">
|
</tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.cccodice)</b> @Html.DisplayFor(model => model.cccodice)
|
</thead>
|
||||||
</div>
|
<tbody>
|
||||||
<div class="col-md-10">
|
<tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.ccdescr)</b> @Html.DisplayFor(model => model.ccdescr)
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(model => model.cccodazi)</span>
|
||||||
</div>
|
</td>
|
||||||
<div class="col-md-10">
|
<td>@Html.DisplayFor(model => model.cccodazi)</td>
|
||||||
<b>@Html.DisplayNameFor(model => model.ccdessup)</b> @Html.DisplayFor(model => model.ccdessup)
|
</tr>
|
||||||
</div>
|
<tr>
|
||||||
<div>
|
<td class="fw-bold fs-5">
|
||||||
<a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.cccodice)</span>
|
||||||
@* <input type="submit" value="Torna alla lista" class="agy-btn submitForm" /> *@
|
</td>
|
||||||
</div>
|
<td>@Html.DisplayFor(model => model.cccodice)</td>
|
||||||
</div>
|
</tr>
|
||||||
</div>
|
<tr>
|
||||||
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(model => model.ccdescr)</span></td>
|
||||||
|
<td>@Html.DisplayFor(model => model.ccdescr)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(model => model.ccdessup)</span></td>
|
||||||
|
<td>@Html.DisplayFor(model => model.ccdessup)</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@* @model VirtualTask.Models.Chiusure *@
|
||||||
|
|
||||||
|
@* @{ *@
|
||||||
|
@* ViewData["Title"] = "Dettaglio chiusura"; *@
|
||||||
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
||||||
|
@* } *@
|
||||||
|
|
||||||
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
||||||
|
@* <div class="container"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="col-md-4"> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.cccodazi)</b> @Html.DisplayFor(model => model.cccodazi) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.cccodice)</b> @Html.DisplayFor(model => model.cccodice) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.ccdescr)</b> @Html.DisplayFor(model => model.ccdescr) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.ccdessup)</b> @Html.DisplayFor(model => model.ccdessup) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div> *@
|
||||||
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
||||||
|
@* <input type="submit" value="Torna alla lista" class="agy-btn submitForm" /> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
@ -5,72 +5,147 @@
|
|||||||
Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml";
|
Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml";
|
||||||
}
|
}
|
||||||
|
|
||||||
@* <h1>Modifica</h1> *@
|
|
||||||
|
|
||||||
<h4 hidden>Chiusure</h4>
|
|
||||||
<hr />
|
|
||||||
<div class="agy-project-wrapper agy-project-page-wrapper">
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<form asp-action="Edit">
|
||||||
<div class="row">
|
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||||
<div class="col-md-4">
|
|
||||||
<form asp-action="Edit">
|
|
||||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="table-responsive">
|
||||||
<h5><label asp-for="cccodice" class="agy-client-quote"></label></h5>
|
<table class="table table-bordered table-striped table-hover align-middle">
|
||||||
@*<input asp-for="cccodice" class="form-control" />*@
|
<thead class="table-primary">
|
||||||
@Html.HiddenFor(x => x.cccodice)
|
<tr>
|
||||||
@Html.DisplayFor(model => model.cccodice)
|
<th scope="col"> </th>
|
||||||
<span asp-validation-for="cccodice" class="text-danger"></span>
|
<th scope="col"> </th>
|
||||||
</div>
|
</tr>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
</thead>
|
||||||
<div class="form-group">
|
<tbody>
|
||||||
<h5><label asp-for="ccdescr" class="agy-client-quote"></label></h5>
|
<tr>
|
||||||
@* <input asp-for="ccdescr" class="form-control" /> *@
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.cccodice)</span></td>
|
||||||
<input asp-for="ccdescr" class="agy-form-field require" class="form-control" placeholder="Descrizione"/>
|
<td>
|
||||||
<span asp-validation-for="ccdescr" class="text-danger"></span>
|
@Html.HiddenFor(x => x.cccodice)
|
||||||
</div>
|
@Html.DisplayFor(x => x.cccodice)
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<span asp-validation-for="cccodice" class="text-danger"></span>
|
||||||
<div class="form-group">
|
</td>
|
||||||
<h5><label asp-for="ccdessup" class="agy-client-quote"></label></h5>
|
</tr>
|
||||||
@* <input asp-for="ccdessup" class="form-control" /> *@
|
<tr>
|
||||||
<input asp-for="ccdessup" class="agy-form-field require" class="form-control" placeholder="Testo del rapportino" />
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.ccdescr)</span></td>
|
||||||
<span asp-validation-for="ccdessup" class="text-danger"></span>
|
<td>
|
||||||
</div>
|
<input asp-for="ccdescr" class="agy-form-field require" placeholder="Descrizione" />
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
<span asp-validation-for="ccdescr" class="text-danger"></span>
|
||||||
<div class="form-group">
|
</td>
|
||||||
<input type="submit" value="Salva" class="agy-btn submitForm" />
|
</tr>
|
||||||
<a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5"><span class="badge bg-secondary">@Html.DisplayNameFor(m => m.ccdessup)</span></td>
|
||||||
@Html.HiddenFor(x => x.cccodazi)
|
<td>
|
||||||
@Html.HiddenFor(x => x.ccflfatt)
|
<input asp-for="ccdessup" class="agy-form-field require" placeholder="Testo del rapportino" />
|
||||||
@Html.HiddenFor(x => x.ccflrep)
|
<span asp-validation-for="ccdessup" class="text-danger"></span>
|
||||||
@Html.HiddenFor(x => x.cctipcod)
|
</td>
|
||||||
@Html.HiddenFor(x => x.ccgruppo)
|
</tr>
|
||||||
@Html.HiddenFor(x => x.ccimpint)
|
</tbody>
|
||||||
@Html.HiddenFor(x => x.ccimpman)
|
</table>
|
||||||
@Html.HiddenFor(x => x.ccserint)
|
|
||||||
@Html.HiddenFor(x => x.ccserman)
|
|
||||||
@Html.HiddenFor(x => x.ccnumore)
|
|
||||||
@Html.HiddenFor(x => x.ccperman)
|
|
||||||
@Html.HiddenFor(x => x.corecom)
|
|
||||||
@Html.HiddenFor(x => x.codtobso)
|
|
||||||
@Html.HiddenFor(x => x.ccriapre)
|
|
||||||
@Html.HiddenFor(x => x.ccchiint)
|
|
||||||
@Html.HiddenFor(x => x.ccrapabi)
|
|
||||||
@Html.HiddenFor(x => x.ccrapobb)
|
|
||||||
@* <div class="form-group">
|
|
||||||
<input type="submit" value="Salva" class="btn btn-primary" />
|
|
||||||
</div> *@
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
@section Scripts {
|
|
||||||
@{
|
<div class="form-group">
|
||||||
await Html.RenderPartialAsync("_ValidationScriptsPartial");
|
<input type="submit" value="Salva" class="agy-btn submitForm" />
|
||||||
}
|
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@* Campi nascosti *@
|
||||||
|
@Html.HiddenFor(x => x.cccodazi)
|
||||||
|
@Html.HiddenFor(x => x.ccflfatt)
|
||||||
|
@Html.HiddenFor(x => x.ccflrep)
|
||||||
|
@Html.HiddenFor(x => x.cctipcod)
|
||||||
|
@Html.HiddenFor(x => x.ccgruppo)
|
||||||
|
@Html.HiddenFor(x => x.ccimpint)
|
||||||
|
@Html.HiddenFor(x => x.ccimpman)
|
||||||
|
@Html.HiddenFor(x => x.ccserint)
|
||||||
|
@Html.HiddenFor(x => x.ccserman)
|
||||||
|
@Html.HiddenFor(x => x.ccnumore)
|
||||||
|
@Html.HiddenFor(x => x.ccperman)
|
||||||
|
@Html.HiddenFor(x => x.corecom)
|
||||||
|
@Html.HiddenFor(x => x.codtobso)
|
||||||
|
@Html.HiddenFor(x => x.ccriapre)
|
||||||
|
@Html.HiddenFor(x => x.ccchiint)
|
||||||
|
@Html.HiddenFor(x => x.ccrapabi)
|
||||||
|
@Html.HiddenFor(x => x.ccrapobb)
|
||||||
|
</form>
|
||||||
|
|
||||||
|
@section Scripts {
|
||||||
|
@{
|
||||||
|
await Html.RenderPartialAsync("_ValidationScriptsPartial");
|
||||||
}
|
}
|
||||||
</div>
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@* @model VirtualTask.Models.Chiusure *@
|
||||||
|
|
||||||
|
@* @{ *@
|
||||||
|
@* ViewData["Title"] = "Modifica chiusura"; *@
|
||||||
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
||||||
|
@* } *@
|
||||||
|
|
||||||
|
|
||||||
|
@* <h4 hidden>Chiusure</h4> *@
|
||||||
|
@* <hr /> *@
|
||||||
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
||||||
|
@* <div class="container"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="col-md-4"> *@
|
||||||
|
@* <form asp-action="Edit"> *@
|
||||||
|
@* <div asp-validation-summary="ModelOnly" class="text-danger"></div> *@
|
||||||
|
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="cccodice" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* @Html.HiddenFor(x => x.cccodice) *@
|
||||||
|
@* @Html.DisplayFor(model => model.cccodice) *@
|
||||||
|
@* <span asp-validation-for="cccodice" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="ccdescr" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="ccdescr" class="agy-form-field require" class="form-control" placeholder="Descrizione"/> *@
|
||||||
|
@* <span asp-validation-for="ccdescr" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <h5><label asp-for="ccdessup" class="agy-client-quote"></label></h5> *@
|
||||||
|
@* <input asp-for="ccdessup" class="agy-form-field require" class="form-control" placeholder="Testo del rapportino" /> *@
|
||||||
|
@* <span asp-validation-for="ccdessup" class="text-danger"></span> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <input type="submit" value="Salva" class="agy-btn submitForm" /> *@
|
||||||
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* @Html.HiddenFor(x => x.cccodazi) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccflfatt) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccflrep) *@
|
||||||
|
@* @Html.HiddenFor(x => x.cctipcod) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccgruppo) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccimpint) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccimpman) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccserint) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccserman) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccnumore) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccperman) *@
|
||||||
|
@* @Html.HiddenFor(x => x.corecom) *@
|
||||||
|
@* @Html.HiddenFor(x => x.codtobso) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccriapre) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccchiint) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccrapabi) *@
|
||||||
|
@* @Html.HiddenFor(x => x.ccrapobb) *@
|
||||||
|
|
||||||
|
@* </form> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* @section Scripts { *@
|
||||||
|
@* @{ *@
|
||||||
|
@* await Html.RenderPartialAsync("_ValidationScriptsPartial"); *@
|
||||||
|
@* } *@
|
||||||
|
@* } *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
|||||||
@ -7,33 +7,95 @@
|
|||||||
|
|
||||||
<div class="agy-project-wrapper agy-project-page-wrapper">
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="table-responsive">
|
||||||
<div class="col-md-4">
|
<table class="table table-bordered table-striped table-hover align-middle">
|
||||||
<div class="col-md-10">
|
<thead class="table-primary">
|
||||||
<b>@Html.DisplayNameFor(model => model.cscodice)</b> - @Html.DisplayFor(model => model.cscodice)
|
<tr>
|
||||||
</div>
|
<th scope="col"> </th>
|
||||||
<div class="col-md-10">
|
<th scope="col"> </th>
|
||||||
<b>@Html.DisplayNameFor(model => model.csdescr)</b> - @Html.DisplayFor(model => model.csdescr)
|
</tr>
|
||||||
</div>
|
</thead>
|
||||||
<div class="col-md-10">
|
<tbody>
|
||||||
<b>@Html.DisplayNameFor(model => model.csferimp)</b> - @Html.DisplayFor(model => model.csferimp)
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
<div class="col-md-10">
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.cscodice)</span>
|
||||||
<b>@Html.DisplayNameFor(model => model.cscodazi)</b> @Html.DisplayFor(model => model.cscodazi)
|
</td>
|
||||||
</div>
|
<td>@Html.DisplayFor(model => model.cscodice)</td>
|
||||||
<div class="col-md-10">
|
</tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.cstipseg)</b> @Html.DisplayFor(model => model.cstipseg)
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
@Html.HiddenFor(model => model.DataObso)
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.csdescr)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.csdescr)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.csferimp)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.csferimp)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.cscodazi)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.cscodazi)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.cstipseg)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.cstipseg)</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div>
|
@Html.HiddenFor(model => model.DataObso)
|
||||||
<a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
|
|
||||||
</div>
|
<div>
|
||||||
</div>
|
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@* @model VirtualTask.Models.CodiceSegnalazione *@
|
||||||
|
|
||||||
|
@* @{ *@
|
||||||
|
@* ViewData["Title"] = "Dettaglio codice segnalazione"; *@
|
||||||
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
||||||
|
@* } *@
|
||||||
|
|
||||||
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
||||||
|
@* <div class="container"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="col-md-4"> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.cscodice)</b> - @Html.DisplayFor(model => model.cscodice) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.csdescr)</b> - @Html.DisplayFor(model => model.csdescr) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.csferimp)</b> - @Html.DisplayFor(model => model.csferimp) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.cscodazi)</b> @Html.DisplayFor(model => model.cscodazi) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.cstipseg)</b> @Html.DisplayFor(model => model.cstipseg) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* @Html.HiddenFor(model => model.DataObso) *@
|
||||||
|
|
||||||
|
@* <div> *@
|
||||||
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
|
||||||
|
|
||||||
@* @model VirtualTask.Models.CodiceSegnalazione *@
|
@* @model VirtualTask.Models.CodiceSegnalazione *@
|
||||||
|
|
||||||
@* @{ *@
|
@* @{ *@
|
||||||
|
|||||||
@ -1,60 +1,121 @@
|
|||||||
@using X.PagedList.Mvc.Core;
|
@using X.PagedList.Mvc.Core
|
||||||
@using X.PagedList.Web.Common;
|
@using X.PagedList.Web.Common
|
||||||
@using X.PagedList;
|
@using X.PagedList
|
||||||
@model VirtualTask.Models.CommesseVT_Table
|
@model VirtualTask.Models.CommesseVT_Table
|
||||||
|
|
||||||
<link href="~/Content/PagedList.css" rel="stylesheet" type="text/css" />
|
<link href="~/Content/PagedList.css" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "Dettaglio commessa";
|
ViewData["Title"] = "Dettaglio commessa";
|
||||||
Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml";
|
Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
<div class="agy-project-wrapper agy-project-page-wrapper">
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="table-responsive">
|
||||||
<div class="row">
|
<table class="table table-bordered table-striped table-hover align-middle">
|
||||||
<div class="col-md-4">
|
<thead class="table-primary">
|
||||||
<div class="col-md-10">
|
<tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.laserial)</b> @Html.DisplayFor(model => model.laserial)
|
<th scope="col"> </th>
|
||||||
</div>
|
<th scope="col"> </th>
|
||||||
@Html.HiddenFor(model => model.lacodazi)
|
</tr>
|
||||||
@* <div class="col-md-10">
|
</thead>
|
||||||
<b>@Html.DisplayNameFor(model => model.lacodazi)</b> @Html.DisplayFor(model => model.lacodazi)
|
<tbody>
|
||||||
</div> *@
|
<tr>
|
||||||
<div class="col-md-10">
|
<td class="fw-bold fs-5">
|
||||||
<b>@Html.DisplayNameFor(model => model.lacodcom)</b> @Html.DisplayFor(model => model.lacodcom)
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.laserial)</span>
|
||||||
</div>
|
</td>
|
||||||
<div class="col-md-10">
|
<td>@Html.DisplayFor(model => model.laserial)</td>
|
||||||
<b>@Html.DisplayNameFor(model => model.ladeslav)</b> @Html.DisplayFor(model => model.ladeslav)
|
</tr>
|
||||||
</div>
|
<tr>
|
||||||
@Html.HiddenFor(model => model.ladatchi)
|
<td class="fw-bold fs-5">
|
||||||
@* <dt class="col-sm-2">
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.lacodcom)</span>
|
||||||
@Html.DisplayNameFor(model => model.ladatchi)
|
</td>
|
||||||
</dt>
|
<td>@Html.DisplayFor(model => model.lacodcom)</td>
|
||||||
<dd class="col-sm-10">
|
</tr>
|
||||||
@Html.DisplayFor(model => model.ladatchi)
|
<tr>
|
||||||
</dd> *@
|
<td class="fw-bold fs-5">
|
||||||
@Html.HiddenFor(model => model.latipcli)
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.ladeslav)</span>
|
||||||
@* <div class="col-md-10">
|
</td>
|
||||||
<b>@Html.DisplayNameFor(model => model.latipcli)</b> @Html.DisplayFor(model => model.latipcli)
|
<td>@Html.DisplayFor(model => model.ladeslav)</td>
|
||||||
</div> *@
|
</tr>
|
||||||
<div class="col-md-10">
|
<tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.lacodcli)</b> @Html.DisplayFor(model => model.lacodcli)
|
<td class="fw-bold fs-5">
|
||||||
</div>
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.lacodcli)</span>
|
||||||
<div class="col-md-10">
|
</td>
|
||||||
<b>@Html.DisplayNameFor(model => model.lacodimp)</b> @Html.DisplayFor(model => model.lacodimp)
|
<td>@Html.DisplayFor(model => model.lacodcli)</td>
|
||||||
</div>
|
</tr>
|
||||||
<div class="col-md-10">
|
<tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.lacomgen)</b> @Html.DisplayFor(model => model.lacomgen)
|
<td class="fw-bold fs-5">
|
||||||
</div>
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.lacodimp)</span>
|
||||||
|
</td>
|
||||||
<div>
|
<td>@Html.DisplayFor(model => model.lacodimp)</td>
|
||||||
<a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
|
</tr>
|
||||||
@* <input type="submit" value="Torna alla lista" class="agy-btn submitForm" /> *@
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
</div>
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.lacomgen)</span>
|
||||||
</div>
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.lacomgen)</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@Html.HiddenFor(model => model.lacodazi)
|
||||||
|
@Html.HiddenFor(model => model.ladatchi)
|
||||||
|
@Html.HiddenFor(model => model.latipcli)
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@* @using X.PagedList.Mvc.Core; *@
|
||||||
|
@* @using X.PagedList.Web.Common; *@
|
||||||
|
@* @using X.PagedList; *@
|
||||||
|
@* @model VirtualTask.Models.CommesseVT_Table *@
|
||||||
|
|
||||||
|
@* <link href="~/Content/PagedList.css" rel="stylesheet" type="text/css" /> *@
|
||||||
|
@* @{ *@
|
||||||
|
@* ViewData["Title"] = "Dettaglio commessa"; *@
|
||||||
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
||||||
|
@* } *@
|
||||||
|
|
||||||
|
|
||||||
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
||||||
|
@* <div class="container"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="col-md-4"> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.laserial)</b> @Html.DisplayFor(model => model.laserial) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* @Html.HiddenFor(model => model.lacodazi) *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.lacodcom)</b> @Html.DisplayFor(model => model.lacodcom) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.ladeslav)</b> @Html.DisplayFor(model => model.ladeslav) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* @Html.HiddenFor(model => model.ladatchi) *@
|
||||||
|
@* @Html.HiddenFor(model => model.latipcli) *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.lacodcli)</b> @Html.DisplayFor(model => model.lacodcli) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.lacodimp)</b> @Html.DisplayFor(model => model.lacodimp) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.lacomgen)</b> @Html.DisplayFor(model => model.lacomgen) *@
|
||||||
|
@* </div> *@
|
||||||
|
|
||||||
|
@* <div> *@
|
||||||
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
@ -7,63 +7,92 @@
|
|||||||
|
|
||||||
<div class="agy-project-wrapper agy-project-page-wrapper">
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="table-responsive">
|
||||||
<div class="row">
|
<table class="table table-bordered table-striped table-hover align-middle">
|
||||||
<div class="col-md-10">
|
<thead class="table-primary">
|
||||||
<b>@Html.DisplayNameFor(model => model.imcodimp)</b> @Html.DisplayFor(model => model.imcodimp)
|
<tr>
|
||||||
</div>
|
<th scope="col"> </th>
|
||||||
|
<th scope="col"> </th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.imcodimp)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.imcodimp)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.imdescri)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.imdescri)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.imultcli)</span>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
@Html.DisplayFor(model => model.imultcli)
|
||||||
|
-
|
||||||
|
@Html.DisplayFor(model => model.descCliente)
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.indirizzo)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.indirizzo)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.imcodazi)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.imcodazi)</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="col-md-10">
|
<div>
|
||||||
<b>@Html.DisplayNameFor(model => model.imdescri)</b> @Html.DisplayFor(model => model.imdescri)
|
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
|
||||||
</div>
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.imultcli)</b> @Html.DisplayFor(model => model.imultcli) - @Html.DisplayFor(model => model.descCliente)
|
|
||||||
</div>
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.indirizzo)</b> @Html.DisplayFor(model => model.indirizzo)
|
|
||||||
</div>
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.imcodazi)</b> @Html.DisplayFor(model => model.imcodazi)
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@* <div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.imindiri1)</b> @Html.DisplayFor(model => model.imindiri1)
|
|
||||||
</div>
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.imindiri2)</b> @Html.DisplayFor(model => model.imindiri2)
|
|
||||||
</div>
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.imindiri3)</b> @Html.DisplayFor(model => model.imindiri3)
|
|
||||||
</div>
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.imindiri4)</b> @Html.DisplayFor(model => model.imindiri4)
|
|
||||||
</div>
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.imindiri5)</b> @Html.DisplayFor(model => model.imindiri5)
|
|
||||||
</div>
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.imlocali)</b> @Html.DisplayFor(model => model.imlocali)
|
|
||||||
</div>
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.imcodcap)</b> @Html.DisplayFor(model => model.imcodcap)
|
|
||||||
</div>
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.imcomune)</b> @Html.DisplayFor(model => model.imcomune)
|
|
||||||
</div>
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.improvin)</b> @Html.DisplayFor(model => model.improvin)
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="col-md-10">
|
|
||||||
<b>@Html.DisplayNameFor(model => model.descCliente)</b> @Html.DisplayFor(model => model.descCliente)
|
|
||||||
</div>*@
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@* @model VirtualTask.Models.Impianto *@
|
||||||
|
|
||||||
|
@* @{ *@
|
||||||
|
@* ViewData["Title"] = "Dettaglio impianto"; *@
|
||||||
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
||||||
|
@* } *@
|
||||||
|
|
||||||
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
||||||
|
@* <div class="container"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.imcodimp)</b> @Html.DisplayFor(model => model.imcodimp) *@
|
||||||
|
@* </div> *@
|
||||||
|
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.imdescri)</b> @Html.DisplayFor(model => model.imdescri) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.imultcli)</b> @Html.DisplayFor(model => model.imultcli) - @Html.DisplayFor(model => model.descCliente) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.indirizzo)</b> @Html.DisplayFor(model => model.indirizzo) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.imcodazi)</b> @Html.DisplayFor(model => model.imcodazi) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div> *@
|
||||||
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
@ -31,7 +31,8 @@
|
|||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<i class="bx bxl-angular bx-sm text-black me-3">Cliente:</i>
|
<i class="bx bxl-angular bx-sm text-black me-3">Cliente:</i>
|
||||||
<span class="fw-medium">@Html.DropDownList("cliente", ViewBag.Clienti, null, new { @class = "agy-form-field require" })</span>
|
@* <span class="fw-medium">@Html.DropDownList("cliente", ViewBag.Clienti, null, new { @class = "agy-form-field require" })</span> *@
|
||||||
|
<span class="fw-medium">@Html.TextBox("searchCliente", null, new { placeholder = "Cerca per nome cliente", @class = "agy-form-field require" })</span>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<i class="bx bxl-angular bx-sm text-black me-3"> </i>
|
<i class="bx bxl-angular bx-sm text-black me-3"> </i>
|
||||||
|
|||||||
@ -7,28 +7,76 @@
|
|||||||
|
|
||||||
<div class="agy-project-wrapper agy-project-page-wrapper">
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="table-responsive">
|
||||||
<div class="row">
|
<table class="table table-bordered table-striped table-hover align-middle">
|
||||||
<div class="col-md-4">
|
<thead class="table-primary">
|
||||||
<div class="col-md-10">
|
<tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.Mgcodmag)</b> @Html.DisplayFor(model => model.Mgcodmag)
|
<th scope="col"> </th>
|
||||||
</div>
|
<th scope="col"> </th>
|
||||||
<div class="col-md-10">
|
</tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.Mgdesmag)</b> @Html.DisplayFor(model => model.Mgdesmag)
|
</thead>
|
||||||
</div>
|
<tbody>
|
||||||
@Html.HiddenFor(x => x.Azienda)
|
<tr>
|
||||||
@Html.HiddenFor(model => model.DataObso)
|
<td class="fw-bold fs-5">
|
||||||
</div>
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.Mgcodmag)</span>
|
||||||
<div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div>
|
</td>
|
||||||
<form asp-action="DeleteConfirmed">
|
<td>@Html.DisplayFor(model => model.Mgcodmag)</td>
|
||||||
<div class="form-group">
|
</tr>
|
||||||
<input type="submit" value="Elimina" class="agy-btn submitForm" />
|
<tr>
|
||||||
<input type="hidden" id="id" value=@Html.DisplayFor(model => model.Mgcodmag) name="id" />
|
<td class="fw-bold fs-5">
|
||||||
<a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.Mgdesmag)</span>
|
||||||
</div>
|
</td>
|
||||||
</form>
|
<td>@Html.DisplayFor(model => model.Mgdesmag)</td>
|
||||||
</div>
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@Html.HiddenFor(x => x.Azienda)
|
||||||
|
@Html.HiddenFor(model => model.DataObso)
|
||||||
|
|
||||||
|
<form asp-action="DeleteConfirmed" method="post" class="mt-3">
|
||||||
|
<div class="form-group d-flex gap-2">
|
||||||
|
<input type="submit" value="Elimina" class="agy-btn submitForm btn btn-danger" />
|
||||||
|
<input type="hidden" id="id" name="id" value="@Model.Mgcodmag" />
|
||||||
|
<a asp-action="Index" class="agy-btn submitForm btn btn-secondary">Torna alla lista</a>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@* @model VirtualTask.Models.MagazziniVT *@
|
||||||
|
|
||||||
|
@* @{ *@
|
||||||
|
@* ViewData["Title"] = "Dettaglio"; *@
|
||||||
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
||||||
|
@* } *@
|
||||||
|
|
||||||
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
||||||
|
@* <div class="container"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="col-md-4"> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.Mgcodmag)</b> @Html.DisplayFor(model => model.Mgcodmag) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.Mgdesmag)</b> @Html.DisplayFor(model => model.Mgdesmag) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* @Html.HiddenFor(x => x.Azienda) *@
|
||||||
|
@* @Html.HiddenFor(model => model.DataObso) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-lg-6 col-md-6 col-sm-12 col-12"> </div> *@
|
||||||
|
@* <form asp-action="DeleteConfirmed"> *@
|
||||||
|
@* <div class="form-group"> *@
|
||||||
|
@* <input type="submit" value="Elimina" class="agy-btn submitForm" /> *@
|
||||||
|
@* <input type="hidden" id="id" value=@Html.DisplayFor(model => model.Mgcodmag) name="id" /> *@
|
||||||
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </form> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
|
||||||
|
|||||||
@ -1,55 +1,117 @@
|
|||||||
@model VirtualTask.Models.Tecnici
|
@model VirtualTask.Models.Tecnici
|
||||||
|
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "Dettaglio";
|
ViewData["Title"] = "Dettaglio tecnico";
|
||||||
Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml";
|
Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
<div class="agy-project-wrapper agy-project-page-wrapper">
|
<div class="agy-project-wrapper agy-project-page-wrapper">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="table-responsive">
|
||||||
<div class="row">
|
<table class="table table-bordered table-striped table-hover align-middle">
|
||||||
<div class="col-md-10">
|
<thead class="table-primary">
|
||||||
<b>@Html.DisplayNameFor(model => model.tccodazi)</b> @Html.DisplayFor(model => model.tccodazi)
|
<tr>
|
||||||
</div>
|
<th scope="col"> </th>
|
||||||
<div class="col-md-10">
|
<th scope="col"> </th>
|
||||||
<b>@Html.DisplayNameFor(model => model.tccodice)</b> @Html.DisplayFor(model => model.tccodice)
|
</tr>
|
||||||
</div>
|
</thead>
|
||||||
<div class="col-md-10">
|
<tbody>
|
||||||
<b>@Html.DisplayNameFor(model => model.tcdescri)</b> @Html.DisplayFor(model => model.tcdescri)
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
<div class="col-md-10">
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.tccodazi)</span>
|
||||||
<b>@Html.DisplayNameFor(model => model.tctelef1)</b> @Html.DisplayFor(model => model.tctelef1)
|
</td>
|
||||||
</div>
|
<td>@Html.DisplayFor(model => model.tccodazi)</td>
|
||||||
<div class="col-md-10">
|
</tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.tcuser)</b> @Html.DisplayFor(model => model.tcuser)
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
<div class="col-md-10">
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.tccodice)</span>
|
||||||
<b>@Html.DisplayNameFor(model => model.tcpwd)</b> @Html.DisplayFor(model => model.tcpwd)
|
</td>
|
||||||
</div>
|
<td>@Html.DisplayFor(model => model.tccodice)</td>
|
||||||
<div class="col-md-10">
|
</tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.tccoor)</b> @Html.DisplayFor(model => model.tccoor)
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
@* <div class="col-md-10">
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.tcdescri)</span>
|
||||||
<b>@Html.DisplayNameFor(model => model.tccono)</b> @Html.DisplayFor(model => model.tccono)
|
</td>
|
||||||
</div>
|
<td>@Html.DisplayFor(model => model.tcdescri)</td>
|
||||||
<div class="col-md-10">
|
</tr>
|
||||||
<b>@Html.DisplayNameFor(model => model.tccost)</b> @Html.DisplayFor(model => model.tccost)
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
<div class="col-md-10">
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.tctelef1)</span>
|
||||||
<b>@Html.DisplayNameFor(model => model.tccofe)</b> @Html.DisplayFor(model => model.tccofe)
|
</td>
|
||||||
</div> *@
|
<td>@Html.DisplayFor(model => model.tctelef1)</td>
|
||||||
<div>
|
</tr>
|
||||||
<a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a>
|
<tr>
|
||||||
</div>
|
<td class="fw-bold fs-5">
|
||||||
</div>
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.tcuser)</span>
|
||||||
</div>
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.tcuser)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.tcpwd)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.tcpwd)</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="fw-bold fs-5">
|
||||||
|
<span class="badge bg-secondary">@Html.DisplayNameFor(model => model.tccoor)</span>
|
||||||
|
</td>
|
||||||
|
<td>@Html.DisplayFor(model => model.tccoor)</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a asp-action="Index" class="agy-btn submitForm">Torna alla lista</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@* @model VirtualTask.Models.Tecnici *@
|
||||||
|
|
||||||
|
@* @{ *@
|
||||||
|
@* ViewData["Title"] = "Dettaglio"; *@
|
||||||
|
@* Layout = "~/Views/Shared/_LayoutAreaRiservata.cshtml"; *@
|
||||||
|
@* } *@
|
||||||
|
|
||||||
|
|
||||||
|
@* <div class="agy-project-wrapper agy-project-page-wrapper"> *@
|
||||||
|
@* <div class="container"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="row"> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.tccodazi)</b> @Html.DisplayFor(model => model.tccodazi) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.tccodice)</b> @Html.DisplayFor(model => model.tccodice) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.tcdescri)</b> @Html.DisplayFor(model => model.tcdescri) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.tctelef1)</b> @Html.DisplayFor(model => model.tctelef1) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.tcuser)</b> @Html.DisplayFor(model => model.tcuser) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.tcpwd)</b> @Html.DisplayFor(model => model.tcpwd) *@
|
||||||
|
@* </div> *@
|
||||||
|
@* <div class="col-md-10"> *@
|
||||||
|
@* <b>@Html.DisplayNameFor(model => model.tccoor)</b> @Html.DisplayFor(model => model.tccoor) *@
|
||||||
|
@* </div> *@
|
||||||
|
|
||||||
|
@* <div> *@
|
||||||
|
@* <a asp-action="Index" value="Torna alla lista" class="agy-btn submitForm">Torna alla lista</a> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
@* </div> *@
|
||||||
|
|
||||||
|
|
||||||
@* <h1>Dettaglio tecnico</h1>
|
@* <h1>Dettaglio tecnico</h1>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user