Merge branch 'release/FixDisplayFerieMultiDay'
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<Version>3.0.2303.2808</Version>
|
||||
<Version>3.0.2304.0309</Version>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<PackageProjectUrl>www.egalware.com</PackageProjectUrl>
|
||||
<Description>GPW Smart UI</Description>
|
||||
|
||||
@@ -264,7 +264,7 @@ namespace GPW.CORE.Smart.Pages
|
||||
{
|
||||
string cssSpec = "";
|
||||
foreach (var item in ListFermateAzienda)
|
||||
{
|
||||
{
|
||||
|
||||
cssSpec = item.codGiust == "FEST" ? cssFest : cssChius;
|
||||
if (!DateCFF.ContainsKey(item.data))
|
||||
@@ -272,7 +272,7 @@ namespace GPW.CORE.Smart.Pages
|
||||
if (item.data.DayOfWeek != DayOfWeek.Saturday && item.data.DayOfWeek != DayOfWeek.Sunday)
|
||||
{
|
||||
DateCFF.Add(item.data, cssSpec);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
eventList.Add(new CalendarEvent()
|
||||
@@ -309,8 +309,8 @@ namespace GPW.CORE.Smart.Pages
|
||||
break;
|
||||
}
|
||||
// aggiungo x tutte le date richieste...
|
||||
int numGG = item.DtEnd.Subtract(item.DtStart).Days;
|
||||
for (int i = 0; i <= numGG; i++)
|
||||
int numGG = item.DtEnd.Subtract(item.DtStart).Days + 1;
|
||||
for (int i = 0; i < numGG; i++)
|
||||
{
|
||||
dtIns = item.DtStart.Date.AddDays(i);
|
||||
if (!DateRDip.ContainsKey(dtIns))
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<body>
|
||||
<i>GPW - Gestione Presenze Web</i>
|
||||
<h4>Versione: 3.0.2303.2808</h4>
|
||||
<h4>Versione: 3.0.2304.0309</h4>
|
||||
<br /> Note di rilascio:
|
||||
<ul>
|
||||
<li>
|
||||
|
||||
@@ -1 +1 @@
|
||||
3.0.2303.2808
|
||||
3.0.2304.0309
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item>
|
||||
<version>3.0.2303.2808</version>
|
||||
<version>3.0.2304.0309</version>
|
||||
<url>http://nexus.steamware.net/repository/SWS/GPW/stable/GPW.Smart.zip</url>
|
||||
<changelog>http://nexus.steamware.net/repository/SWS/GPW/stable/ChangeLog.html</changelog>
|
||||
<mandatory>false</mandatory>
|
||||
|
||||
Reference in New Issue
Block a user