31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
@page "/SMIn2Event"
|
|
<h3>SMIn2Event</h3>
|
|
|
|
<p>
|
|
Deve permettere upload file *.rul e generazione righe regole (come x csv)
|
|
</p>
|
|
|
|
<p>
|
|
I dati generati potrebbero andare direttamente sul DB, nella tab <b>TransizioneIngressiNew</b>:
|
|
<br />
|
|
select * from TransizioneIngressiNew
|
|
</p>
|
|
<p>
|
|
Vista in preview si può poi inserire in prod se confermato
|
|
</p>
|
|
|
|
<div class="d-flex justify-content-between">
|
|
<div>
|
|
<CircleGauge Titolo="@($"{Files.Count()}")" Testo="Loaded Files" maxVal="@maxAllowedFiles" currVal="@Files.Count()" strokeColorVal="@circleCssColor" StyleTitolo="font-size: 2.7rem; font-weight:bold; fill: #212427;" StyleTesto="font-size: 1rem; fill: #ACACAC;" ShowCircleBtn="false"></CircleGauge>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex justify-content-between">
|
|
<div>
|
|
<InputFile OnChange="@LoadFiles" multiple />
|
|
</div>
|
|
</div>
|
|
|
|
<FilesList PagerResetReq="pgResetReq" updateRecordCount="UpdateTotCount" currFilter="@currFilter" hasBit="true"></FilesList>
|
|
|
|
<DataPager @ref="pagerSMIn2Ev" PageSize="@numRecord" currPage="@currPage" numRecordChanged="@ForceReload" numPageChanged="@ForceReloadPage" totalCount="@totalCount" /> |