diff --git a/MP.Data/DTO/UriDTO.cs b/MP.Data/DTO/UriDTO.cs new file mode 100644 index 00000000..2cacf030 --- /dev/null +++ b/MP.Data/DTO/UriDTO.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MP.Data.DTO +{ + public class UriDTO + { + public int MatrOpr { get; set; } = 0; + public int IdSessione { get; set; } = 0; + public string IdMag { get; set; } = ""; + public string UserAuthKey { get; set; } = ""; + } +} diff --git a/MP.INVE/Components/ListQrOpr.razor.cs b/MP.INVE/Components/ListQrOpr.razor.cs index f3f0fdc7..00a84acc 100644 --- a/MP.INVE/Components/ListQrOpr.razor.cs +++ b/MP.INVE/Components/ListQrOpr.razor.cs @@ -65,7 +65,7 @@ namespace MP.INVE.Components get { string answ = ""; - answ = $"{BaseUrlTab}MatrOpr={idOperatore}&UserAuthKey={authKey}"; + answ = $"{BaseUrlTab}MatrOpr={idOperatore}&UserAuthKey={authKey}&IdSessione=0&IdMag=0"; return answ; } } diff --git a/MP.INVE/Components/ProcSess.razor b/MP.INVE/Components/ProcSess.razor new file mode 100644 index 00000000..2d3a5591 --- /dev/null +++ b/MP.INVE/Components/ProcSess.razor @@ -0,0 +1,23 @@ +@if (lastScanSessione != "0" && !string.IsNullOrEmpty(lastScanSessione)) +{ + @if (sessioneScelta != null) + { +