inizio nuova gestione note
This commit is contained in:
@@ -1,14 +1,38 @@
|
||||
@if (currFnq != null)
|
||||
{
|
||||
<div class="col-12 col-sm-6 col-lg-4 my-1 p-2">
|
||||
<div class="card" @onclick="SelectFermo">
|
||||
<div class="col-sm-6 col-lg-4 my-1 p-2">
|
||||
<div class="card">
|
||||
<div class="card-body @setSemaforo(currFnq.Semaforo)">
|
||||
<div class="text-start fw-bold" style="font-size: 1.8rem;">
|
||||
@currFnq.Stato
|
||||
</div>
|
||||
<div class="text-end" style="font-size: 1.5rem;">
|
||||
@currFnq.CodArticolo
|
||||
<div @onclick="SelectFermo">
|
||||
<div class="text-start fw-bold" style="font-size: 1.8rem;">
|
||||
@currFnq.Stato
|
||||
</div>
|
||||
<div class="text-end" style="font-size: 1.5rem;">
|
||||
@currFnq.CodArticolo
|
||||
</div>
|
||||
</div>
|
||||
@if (currNotes.Count > 0)
|
||||
{
|
||||
<div>
|
||||
<div class="accordion accordion-flush" id="accordionFlushExample">
|
||||
<div class="accordion-item">
|
||||
<h2 class="accordion-header" id="flush-headingOne">
|
||||
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne">
|
||||
Accordion Item #1
|
||||
</button>
|
||||
</h2>
|
||||
<div id="flush-collapseOne" class="accordion-collapse collapse" aria-labelledby="flush-headingOne" data-bs-parent="#accordionFlushExample">
|
||||
<div class="accordion-body">
|
||||
@foreach (var note in currNotes)
|
||||
{
|
||||
<span>@note.Value</span>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
<div class="card-footer d-flex justify-content-between bg-dark text-light">
|
||||
<div>
|
||||
|
||||
@@ -11,6 +11,8 @@ namespace MP_TAB_SERV.Components
|
||||
|
||||
[Parameter]
|
||||
public FermiNonQualModel currFnq { get; set; } = new FermiNonQualModel();
|
||||
[Parameter]
|
||||
public List<CommentiModel> currNotes { get; set; } = new List<CommentiModel>();
|
||||
|
||||
#endregion Public Properties
|
||||
|
||||
|
||||
@@ -43,9 +43,9 @@
|
||||
</div>
|
||||
|
||||
<div class="d-flex justify-content-between flex-wrap">
|
||||
@foreach (var item in RecordListFnq)
|
||||
@foreach (var item in RecordListFull)
|
||||
{
|
||||
<LongStopList currFnq="@item"></LongStopList>
|
||||
<LongStopList currFnq="@item.Fermata" currNotes="@item.CommentiFermata"></LongStopList>
|
||||
}
|
||||
</div>
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
<label for="commentsNum"># Commenti</label>
|
||||
</div>
|
||||
|
||||
|
||||
@*
|
||||
@if (RecordListComments == null)
|
||||
{
|
||||
<EgwCoreLib.Razor.LoadingData></EgwCoreLib.Razor.LoadingData>
|
||||
@@ -102,6 +102,8 @@
|
||||
</div>
|
||||
}
|
||||
}
|
||||
|
||||
*@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<Version>6.16.2310.2711</Version>
|
||||
<Version>6.16.2310.2717</Version>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<RootNamespace>MP_TAB_SERV</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<body>
|
||||
<i>Modulo MAPOSPEC </i>
|
||||
<h4>Versione: 6.16.2310.2711</h4>
|
||||
<h4>Versione: 6.16.2310.2717</h4>
|
||||
<br /> Note di rilascio:
|
||||
<ul>
|
||||
<li>
|
||||
|
||||
@@ -1 +1 @@
|
||||
6.16.2310.2711
|
||||
6.16.2310.2717
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item>
|
||||
<version>6.16.2310.2711</version>
|
||||
<version>6.16.2310.2717</version>
|
||||
<url>https://nexus.steamware.net/repository/SWS/MP-TAB-SERV/stable/LAST/MP-TAB-SERV.zip</url>
|
||||
<changelog>https://nexus.steamware.net/repository/SWS/MP-TAB-SERV/stable/LAST/ChangeLog.html</changelog>
|
||||
<mandatory>false</mandatory>
|
||||
|
||||
Reference in New Issue
Block a user