grafica
This commit is contained in:
parent
782eef1d71
commit
547749a2e0
@ -7,6 +7,7 @@ namespace SoftwayWeb.Models
|
|||||||
[Display(Name = "Seriale Giro")]
|
[Display(Name = "Seriale Giro")]
|
||||||
public string? SerialeGiro { get; set; }
|
public string? SerialeGiro { get; set; }
|
||||||
|
|
||||||
|
[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}")]
|
||||||
[Display(Name = "Data giro")]
|
[Display(Name = "Data giro")]
|
||||||
public DateTime? DataGiro { get; set; }
|
public DateTime? DataGiro { get; set; }
|
||||||
|
|
||||||
@ -29,6 +30,7 @@ namespace SoftwayWeb.Models
|
|||||||
[Display(Name = "Importo recuperato"),System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)"), Required(ErrorMessage = "Importo recuperato obbligatorio")]
|
[Display(Name = "Importo recuperato"),System.ComponentModel.DataAnnotations.Schema.Column(TypeName = "decimal(18, 5)"), Required(ErrorMessage = "Importo recuperato obbligatorio")]
|
||||||
public decimal? ImportoRecuperato { get; set; }
|
public decimal? ImportoRecuperato { get; set; }
|
||||||
|
|
||||||
|
[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}")]
|
||||||
[Display(Name = "Data chiusura")]
|
[Display(Name = "Data chiusura")]
|
||||||
public DateTime? DataChiusura { get; set; }
|
public DateTime? DataChiusura { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
@ -43,7 +43,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
@* <th>Seriale giro</th> *@
|
@* <th>Seriale giro</th> *@
|
||||||
<th>Data</th>
|
<th>Data</th>
|
||||||
<th>Cod. Autista</th>
|
@*<th>Cod. Autista</th>*@
|
||||||
<th>Autista</th>
|
<th>Autista</th>
|
||||||
<th>Bancali caricati</th>
|
<th>Bancali caricati</th>
|
||||||
<th>Bancali recuperati</th>
|
<th>Bancali recuperati</th>
|
||||||
@ -90,11 +90,13 @@
|
|||||||
@Html.DisplayFor(modelItem => item.DataGiro)
|
@Html.DisplayFor(modelItem => item.DataGiro)
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@Html.DisplayFor(modelItem => item.CodAutista)
|
@Html.DisplayFor(modelItem => item.CodAutista) - @Html.DisplayFor(modelItem => item.Autista)
|
||||||
</td>
|
</td>
|
||||||
<td>
|
|
||||||
|
@* <td>
|
||||||
@Html.DisplayFor(modelItem => item.Autista)
|
@Html.DisplayFor(modelItem => item.Autista)
|
||||||
</td>
|
</td>*@
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
@Html.DisplayFor(modelItem => item.BancaliCaricati)
|
@Html.DisplayFor(modelItem => item.BancaliCaricati)
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
@ -7,21 +7,6 @@
|
|||||||
Layout = "~/Views/Shared/_LayoutAreaRis.cshtml";
|
Layout = "~/Views/Shared/_LayoutAreaRis.cshtml";
|
||||||
}
|
}
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<div class="text-center">
|
||||||
<html lang="en">
|
<h1 class="display-4">Area Riservata</h1>
|
||||||
<head>
|
</div>
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<title>@ViewData["Title"] - SoftwayWeb</title>
|
|
||||||
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
|
||||||
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
|
||||||
<link rel="stylesheet" href="~/SoftwayWeb.styles.css" asp-append-version="true" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
@* <div class="col-lg-12 col-md-12 col-sm-12 col-12">
|
|
||||||
<input type="submit" value="Giri" class="agy-btn submitForm" />
|
|
||||||
<div class="response"></div>
|
|
||||||
</div> *@
|
|
||||||
|
|
||||||
<a href="@Url.Action("Index", "Giri")" title="Giri Consegna" class="links">Giri Consegna</a>
|
|
||||||
</body>
|
|
||||||
@ -20,8 +20,9 @@
|
|||||||
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
|
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
|
||||||
<ul class="navbar-nav flex-grow-1">
|
<ul class="navbar-nav flex-grow-1">
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">Torna a Home</a>
|
<a class="nav-link text-dark" asp-area="" asp-controller="Giri" asp-action="Index">Giri di consegna</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
@* <li class="nav-item">
|
@* <li class="nav-item">
|
||||||
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
|
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Privacy">Privacy</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user