Aggiunta indicazione kit/art
This commit is contained in:
@@ -62,8 +62,28 @@
|
||||
<i class="@item.icona"></i> @item.Descrizione
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-2 px-0 text-center">
|
||||
<b class="fs-2">@item.Qta</b> pz
|
||||
<div class="col-2 px-0 text-center text-nowrap d-flex justify-content-center">
|
||||
<div>
|
||||
<b class="fs-2">@item.Qta</b>
|
||||
</div>
|
||||
<div class="ps-1 fs-4">
|
||||
×
|
||||
@if (item.Tipo == "KIT")
|
||||
{
|
||||
@if (item.KitSplit)
|
||||
{
|
||||
<i class="fa-solid fa-box-open"></i>
|
||||
}
|
||||
else
|
||||
{
|
||||
<i class="fa-solid fa-box"></i>
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
<span>pz</span>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-5 text-end small">
|
||||
<div class="text-truncate">
|
||||
|
||||
@@ -22,10 +22,12 @@ namespace MP.Data.DatabaseModels
|
||||
public string CodArticolo { get; set; } = "";
|
||||
public int MatrOpr { get; set; } = 0;
|
||||
public DateTime? DataOraProdRec { get; set; } = null;
|
||||
public bool KitSplit { get; set; } = false;
|
||||
public string Descrizione { get; set; } = "";
|
||||
public string cssClass { get; set; } = "";
|
||||
public string icona { get; set; } = "";
|
||||
public bool KitSplit { get; set; } = false;
|
||||
public string DescArticolo { get; set; } = "";
|
||||
public string Tipo { get; set; } = "";
|
||||
|
||||
#endregion Public Properties
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user