note consegna
This commit is contained in:
parent
47851907a7
commit
d896ef9831
@ -135,8 +135,9 @@ namespace SoftwayWeb.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
public IActionResult IndexValidate(string id, string? codAutista, string? nomeAutista, DateTime dataGiro, string? codMezzo, string? desMezzo, int? page = 1)
|
|
||||||
{
|
public IActionResult IndexValidate(string id, string? codAutista, string? nomeAutista, DateTime dataGiro, string? codMezzo, string? desMezzo, int? page = 1)
|
||||||
|
{
|
||||||
helper = new SessionHelper(this);
|
helper = new SessionHelper(this);
|
||||||
|
|
||||||
token = helper.GetStringValue("tok");
|
token = helper.GetStringValue("tok");
|
||||||
@ -199,7 +200,7 @@ namespace SoftwayWeb.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
urlBase = apiUrl + "Giri/listaDestinazioniByAutistaDataMezzoWeb";
|
urlBase = apiUrl + "Giri/listaDestinazioniByAutistaDataMezzoWeb";
|
||||||
urlBase = urlBase + "?autista=" + codAutista + "&dataGiro=" + dataGi + "&mezzo=" + codMezzo;
|
urlBase = urlBase + "?autista=" + codAutista.Trim() + "&dataGiro=" + dataGi.Trim() + "&mezzo=" + codMezzo.Trim();
|
||||||
Uri baseAddress = new Uri(urlBase);
|
Uri baseAddress = new Uri(urlBase);
|
||||||
client = new HttpClient();
|
client = new HttpClient();
|
||||||
client.BaseAddress = baseAddress;
|
client.BaseAddress = baseAddress;
|
||||||
@ -231,7 +232,7 @@ namespace SoftwayWeb.Controllers
|
|||||||
return RedirectToAction("Error");
|
return RedirectToAction("Error");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public IActionResult EliminaDestinazione(string serial)
|
public IActionResult EliminaDestinazione(string serial)
|
||||||
{
|
{
|
||||||
@ -565,6 +566,7 @@ namespace SoftwayWeb.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<SelectListItem> getAutisti()
|
private List<SelectListItem> getAutisti()
|
||||||
{
|
{
|
||||||
SessionHelper helper = new SessionHelper(this);
|
SessionHelper helper = new SessionHelper(this);
|
||||||
|
|||||||
@ -485,9 +485,6 @@ namespace SoftwayWeb.Controllers
|
|||||||
return RedirectToAction("Index", "Giri");
|
return RedirectToAction("Index", "Giri");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
||||||
public IActionResult Error()
|
public IActionResult Error()
|
||||||
{
|
{
|
||||||
|
|||||||
@ -55,6 +55,8 @@ namespace SoftwayWeb.Models
|
|||||||
public int? Uova { get; set; }
|
public int? Uova { get; set; }
|
||||||
public int? Cist { get; set; }
|
public int? Cist { get; set; }
|
||||||
public string? Note { get; set; }
|
public string? Note { get; set; }
|
||||||
|
[Display(Name = "Note cons.")]
|
||||||
|
public string? noteConsegna { get; set; }
|
||||||
public int? Seq { get; set; }
|
public int? Seq { get; set; }
|
||||||
public string? Prog { get; set; }
|
public string? Prog { get; set; }
|
||||||
public string? Pisergir { get; set; }
|
public string? Pisergir { get; set; }
|
||||||
|
|||||||
@ -154,7 +154,7 @@
|
|||||||
@Html.HiddenFor(model => model.Cist)
|
@Html.HiddenFor(model => model.Cist)
|
||||||
@Html.HiddenFor(model => model.Cist)
|
@Html.HiddenFor(model => model.Cist)
|
||||||
@Html.HiddenFor(model => model.Note)
|
@Html.HiddenFor(model => model.Note)
|
||||||
@Html.HiddenFor(model => model.Note)
|
@Html.HiddenFor(model => model.noteConsegna)
|
||||||
@Html.HiddenFor(model => model.Seq)
|
@Html.HiddenFor(model => model.Seq)
|
||||||
@Html.HiddenFor(model => model.Seq)
|
@Html.HiddenFor(model => model.Seq)
|
||||||
@Html.HiddenFor(model => model.Prog)
|
@Html.HiddenFor(model => model.Prog)
|
||||||
|
|||||||
@ -172,6 +172,10 @@
|
|||||||
@Html.DisplayFor(modelItem => item.Note)
|
@Html.DisplayFor(modelItem => item.Note)
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
<td style="font-size:12px;border-right-width:2px">
|
||||||
|
@Html.DisplayFor(modelItem => item.noteConsegna)
|
||||||
|
</td>
|
||||||
|
|
||||||
@if (item.ConsFatta != null && item.ConsFatta.consFattaBanCar != null && item.ConsFatta.consFattaBanSca!=null)
|
@if (item.ConsFatta != null && item.ConsFatta.consFattaBanCar != null && item.ConsFatta.consFattaBanSca!=null)
|
||||||
{
|
{
|
||||||
diffBancali = item.ConsFatta.consFattaBanCar.Value - item.ConsFatta.consFattaBanSca.Value;
|
diffBancali = item.ConsFatta.consFattaBanCar.Value - item.ConsFatta.consFattaBanSca.Value;
|
||||||
|
|||||||
@ -42,6 +42,7 @@
|
|||||||
<th>Uo</th>
|
<th>Uo</th>
|
||||||
<th>Ci.</th>
|
<th>Ci.</th>
|
||||||
<th>Note</th>
|
<th>Note</th>
|
||||||
|
<th>Note Consegna</th>
|
||||||
<th>Bc - Bs</th>
|
<th>Bc - Bs</th>
|
||||||
<th> </th>
|
<th> </th>
|
||||||
<th> </th>
|
<th> </th>
|
||||||
@ -172,6 +173,10 @@
|
|||||||
@Html.DisplayFor(modelItem => item.Note)
|
@Html.DisplayFor(modelItem => item.Note)
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
<td style="font-size:12px;border-right-width:2px">
|
||||||
|
@Html.DisplayFor(modelItem => item.noteConsegna)
|
||||||
|
</td>
|
||||||
|
|
||||||
@if (item.ConsFatta != null && item.ConsFatta.consFattaBanCar != null && item.ConsFatta.consFattaBanSca!=null)
|
@if (item.ConsFatta != null && item.ConsFatta.consFattaBanCar != null && item.ConsFatta.consFattaBanSca!=null)
|
||||||
{
|
{
|
||||||
diffBancali = item.ConsFatta.consFattaBanCar.Value - item.ConsFatta.consFattaBanSca.Value;
|
diffBancali = item.ConsFatta.consFattaBanCar.Value - item.ConsFatta.consFattaBanSca.Value;
|
||||||
|
|||||||
@ -82,6 +82,7 @@
|
|||||||
@Html.HiddenFor(model => model.Uova)
|
@Html.HiddenFor(model => model.Uova)
|
||||||
@Html.HiddenFor(model => model.Cist)
|
@Html.HiddenFor(model => model.Cist)
|
||||||
@Html.HiddenFor(model => model.Note)
|
@Html.HiddenFor(model => model.Note)
|
||||||
|
@Html.HiddenFor(model => model.noteConsegna)
|
||||||
@Html.HiddenFor(model => model.Seq)
|
@Html.HiddenFor(model => model.Seq)
|
||||||
@Html.HiddenFor(model => model.Prog)
|
@Html.HiddenFor(model => model.Prog)
|
||||||
|
|
||||||
|
|||||||
@ -68,6 +68,7 @@
|
|||||||
@Html.HiddenFor(model => model.Uova)
|
@Html.HiddenFor(model => model.Uova)
|
||||||
@Html.HiddenFor(model => model.Cist)
|
@Html.HiddenFor(model => model.Cist)
|
||||||
@Html.HiddenFor(model => model.Note)
|
@Html.HiddenFor(model => model.Note)
|
||||||
|
@Html.HiddenFor(model => model.noteConsegna)
|
||||||
@Html.HiddenFor(model => model.Seq)
|
@Html.HiddenFor(model => model.Seq)
|
||||||
@Html.HiddenFor(model => model.Prog)
|
@Html.HiddenFor(model => model.Prog)
|
||||||
|
|
||||||
|
|||||||
@ -179,6 +179,11 @@
|
|||||||
<td style="font-size:12px; border-right-width:2px">
|
<td style="font-size:12px; border-right-width:2px">
|
||||||
@Html.DisplayFor(modelItem => modelList[i].Note)
|
@Html.DisplayFor(modelItem => modelList[i].Note)
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
<td style="font-size:12px; border-right-width:2px">
|
||||||
|
@Html.DisplayFor(modelItem => modelList[i].noteConsegna)
|
||||||
|
</td>
|
||||||
|
|
||||||
<td style="border-right-width:2px"> </td>
|
<td style="border-right-width:2px"> </td>
|
||||||
<td style="border-right-width:2px"> </td>
|
<td style="border-right-width:2px"> </td>
|
||||||
@* @if (modelList[i].ConsFatta == null)
|
@* @if (modelList[i].ConsFatta == null)
|
||||||
|
|||||||
@ -70,6 +70,7 @@
|
|||||||
@Html.HiddenFor(modelItem => modelList[i].Uova)
|
@Html.HiddenFor(modelItem => modelList[i].Uova)
|
||||||
@Html.HiddenFor(modelItem => modelList[i].Cist)
|
@Html.HiddenFor(modelItem => modelList[i].Cist)
|
||||||
@Html.HiddenFor(modelItem => modelList[i].Note)
|
@Html.HiddenFor(modelItem => modelList[i].Note)
|
||||||
|
@Html.HiddenFor(modelItem => modelList[i].noteConsegna)
|
||||||
@Html.HiddenFor(modelItem => modelList[i].Seq)
|
@Html.HiddenFor(modelItem => modelList[i].Seq)
|
||||||
@Html.HiddenFor(modelItem => modelList[i].Prog)
|
@Html.HiddenFor(modelItem => modelList[i].Prog)
|
||||||
}
|
}
|
||||||
@ -179,6 +180,12 @@
|
|||||||
<td style="font-size:12px; border-right-width:2px">
|
<td style="font-size:12px; border-right-width:2px">
|
||||||
@Html.DisplayFor(modelItem => modelList[i].Note)
|
@Html.DisplayFor(modelItem => modelList[i].Note)
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
<td style="font-size:12px; border-right-width:2px">
|
||||||
|
@Html.DisplayFor(modelItem => modelList[i].noteConsegna)
|
||||||
|
</td>
|
||||||
|
|
||||||
|
|
||||||
<td style="border-right-width:2px"> </td>
|
<td style="border-right-width:2px"> </td>
|
||||||
<td style="border-right-width:2px"> </td>
|
<td style="border-right-width:2px"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user