diff --git a/Core/DTO/TicketDTO.cs b/Core/DTO/TicketDTO.cs
index 1d70a51..7999d8d 100644
--- a/Core/DTO/TicketDTO.cs
+++ b/Core/DTO/TicketDTO.cs
@@ -6,6 +6,9 @@ namespace Core.DTO
{
#region Public Properties
+ public string CodApp { get; set; } = "";
+ public string CodInst { get; set; } = "";
+
///
/// Codice univoco della sub licenza (opzionale)
///
diff --git a/LiMan.DB/Controllers/DbController.cs b/LiMan.DB/Controllers/DbController.cs
index b7f8998..e7fb861 100644
--- a/LiMan.DB/Controllers/DbController.cs
+++ b/LiMan.DB/Controllers/DbController.cs
@@ -975,9 +975,12 @@ namespace LiMan.DB.Controllers
.DbSetTicket
.Where(x => (x.Status <= StatoRichiesta.Valutazione || !onlyOpen))
.OrderByDescending(x => x.IdxTicket)
+ .Include(l => l.LicenzaNav)
.Take(maxNum)
.Select(x => new TicketDTO
{
+ CodApp = x.LicenzaNav.CodApp,
+ CodInst = x.LicenzaNav.CodInst,
IdxTicket = x.IdxTicket,
IdxLic = x.IdxLic,
IdxSubLic = x.IdxSubLic,
diff --git a/LiMan.Transfer/Resources/ChangeLog.html b/LiMan.Transfer/Resources/ChangeLog.html
index ac6d0cf..c9745ca 100644
--- a/LiMan.Transfer/Resources/ChangeLog.html
+++ b/LiMan.Transfer/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
License Manager
- Versione: 1.1.2202.0912
+ Versione: 1.1.2202.0915
Note di rilascio:
diff --git a/LiMan.Transfer/Resources/VersNum.txt b/LiMan.Transfer/Resources/VersNum.txt
index 29776ab..399bf10 100644
--- a/LiMan.Transfer/Resources/VersNum.txt
+++ b/LiMan.Transfer/Resources/VersNum.txt
@@ -1 +1 @@
-1.1.2202.0912
+1.1.2202.0915
diff --git a/LiMan.Transfer/Resources/manifest.xml b/LiMan.Transfer/Resources/manifest.xml
index 3d50f58..e4141cc 100644
--- a/LiMan.Transfer/Resources/manifest.xml
+++ b/LiMan.Transfer/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 1.1.2202.0912
+ 1.1.2202.0915
https://nexus.steamware.net/repository/SWS/LiMan/stable/LAST/LiMan.Transfer.zip
https://nexus.steamware.net/repository/SWS/LiMan/stable/LAST/ChangeLog.html
false
diff --git a/LiMan.UI/Components/Tickets.razor b/LiMan.UI/Components/Tickets.razor
index 567f637..8451005 100644
--- a/LiMan.UI/Components/Tickets.razor
+++ b/LiMan.UI/Components/Tickets.razor
@@ -31,6 +31,8 @@
|
|
+ Applicativo |
+ Installazione |
# |
Richiedente |
Contatti |
@@ -47,6 +49,12 @@
|
+
+ @record.CodApp
+ |
+
+ @record.CodInst
+ |
@record.IdxTicket
@record.Status
diff --git a/LiMan.UI/LiMan.UI.csproj b/LiMan.UI/LiMan.UI.csproj
index 5fff649..11d88d7 100644
--- a/LiMan.UI/LiMan.UI.csproj
+++ b/LiMan.UI/LiMan.UI.csproj
@@ -2,7 +2,7 @@
net5.0
- 1.1.2202.0912
+ 1.1.2202.0915
LiMan.UI
LiMan.UI
diff --git a/LiMan.UI/Resources/ChangeLog.html b/LiMan.UI/Resources/ChangeLog.html
index ac6d0cf..c9745ca 100644
--- a/LiMan.UI/Resources/ChangeLog.html
+++ b/LiMan.UI/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
License Manager
- Versione: 1.1.2202.0912
+ Versione: 1.1.2202.0915
Note di rilascio:
diff --git a/LiMan.UI/Resources/VersNum.txt b/LiMan.UI/Resources/VersNum.txt
index 29776ab..399bf10 100644
--- a/LiMan.UI/Resources/VersNum.txt
+++ b/LiMan.UI/Resources/VersNum.txt
@@ -1 +1 @@
-1.1.2202.0912
+1.1.2202.0915
diff --git a/LiMan.UI/Resources/manifest.xml b/LiMan.UI/Resources/manifest.xml
index 0970b42..4731f1c 100644
--- a/LiMan.UI/Resources/manifest.xml
+++ b/LiMan.UI/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 1.1.2202.0912
+ 1.1.2202.0915
https://nexus.steamware.net/repository/SWS/LiMan/stable/LAST/LiMan.UI.zip
https://nexus.steamware.net/repository/SWS/LiMan/stable/LAST/ChangeLog.html
false
|