Compare commits
10 Commits
v2.1.3(20)
...
a4c2eee49d
| Author | SHA1 | Date | |
|---|---|---|---|
| a4c2eee49d | |||
| 70a34eef06 | |||
| c61ebe348c | |||
| e586279c6b | |||
| 85e227a5cb | |||
| 71ce027fb8 | |||
| 9318d7bd3f | |||
| 3ae0a7f7d1 | |||
| 2879008c20 | |||
| 0dfc0baa28 |
@@ -51,6 +51,9 @@
|
|||||||
<key>NSPhotoLibraryAddUsageDescription</key>
|
<key>NSPhotoLibraryAddUsageDescription</key>
|
||||||
<string>Permette all'app di salvare file o immagini nella tua libreria fotografica se necessario.</string>
|
<string>Permette all'app di salvare file o immagini nella tua libreria fotografica se necessario.</string>
|
||||||
|
|
||||||
|
<key>NSBluetoothAlwaysUsageDescription</key>
|
||||||
|
<string>Alcune librerie di sistema potrebbero accedere al Bluetooth. L’app non utilizza direttamente il Bluetooth.</string>
|
||||||
|
|
||||||
<key>UIBackgroundModes</key>
|
<key>UIBackgroundModes</key>
|
||||||
<array>
|
<array>
|
||||||
<string>remote-notification</string>
|
<string>remote-notification</string>
|
||||||
|
|||||||
@@ -29,8 +29,8 @@
|
|||||||
<ApplicationId>it.integry.salesbook</ApplicationId>
|
<ApplicationId>it.integry.salesbook</ApplicationId>
|
||||||
|
|
||||||
<!-- Versions -->
|
<!-- Versions -->
|
||||||
<ApplicationDisplayVersion>2.1.3</ApplicationDisplayVersion>
|
<ApplicationDisplayVersion>2.1.4</ApplicationDisplayVersion>
|
||||||
<ApplicationVersion>20</ApplicationVersion>
|
<ApplicationVersion>22</ApplicationVersion>
|
||||||
|
|
||||||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
|
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
|
||||||
<!--<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">
|
<!--<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">
|
||||||
@@ -120,6 +120,7 @@
|
|||||||
<PublishTrimmed>true</PublishTrimmed>
|
<PublishTrimmed>true</PublishTrimmed>
|
||||||
<PublishAot>true</PublishAot>
|
<PublishAot>true</PublishAot>
|
||||||
<MonoAotMode>Hybrid</MonoAotMode>
|
<MonoAotMode>Hybrid</MonoAotMode>
|
||||||
|
<MtouchLink>None</MtouchLink>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -214,7 +214,8 @@
|
|||||||
@if (item.p.Type == AttachedDTO.TypeAttached.Position)
|
@if (item.p.Type == AttachedDTO.TypeAttached.Position)
|
||||||
{
|
{
|
||||||
<MudChip T="string" Icon="@Icons.Material.Rounded.LocationOn" Color="Color.Success"
|
<MudChip T="string" Icon="@Icons.Material.Rounded.LocationOn" Color="Color.Success"
|
||||||
OnClick="@(() => OpenPosition(item.p))" OnClose="@(() => OnRemoveAttached(item.index))">
|
OnClick="@(() => OpenPosition(item.p))"
|
||||||
|
OnClose="@(() => OnRemoveAttached(item.index))">
|
||||||
@item.p.Description
|
@item.p.Description
|
||||||
</MudChip>
|
</MudChip>
|
||||||
}
|
}
|
||||||
@@ -234,7 +235,8 @@
|
|||||||
{
|
{
|
||||||
foreach (var file in ActivityFileList)
|
foreach (var file in ActivityFileList)
|
||||||
{
|
{
|
||||||
<MudChip T="string" OnClick="@(() => OpenAttached(file.Id, file.FileName))" OnClose="@(() => DeleteAttach(file))" Color="Color.Default">
|
<MudChip T="string" OnClick="@(() => OpenAttached(file.Id, file.FileName))"
|
||||||
|
OnClose="@(() => DeleteAttach(file))" Color="Color.Default">
|
||||||
@file.FileName
|
@file.FileName
|
||||||
</MudChip>
|
</MudChip>
|
||||||
}
|
}
|
||||||
@@ -242,7 +244,7 @@
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
<MudProgressLinear Color="Color.Primary" Indeterminate="true" Class="my-7" />
|
<MudProgressLinear Color="Color.Primary" Indeterminate="true" Class="my-7"/>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -576,6 +578,9 @@
|
|||||||
{
|
{
|
||||||
ActivityModel.CodAnag = parts[0];
|
ActivityModel.CodAnag = parts[0];
|
||||||
ActivityModel.Cliente = parts[1];
|
ActivityModel.Cliente = parts[1];
|
||||||
|
|
||||||
|
var isCliente = Clienti.FirstOrDefault(x => x.CodAnag != null && x.CodAnag.Equals(ActivityModel.CodAnag));
|
||||||
|
ActivityModel.TipoAnag = isCliente == null ? "P" : "C";
|
||||||
}
|
}
|
||||||
|
|
||||||
OnAfterChangeValue();
|
OnAfterChangeValue();
|
||||||
@@ -593,6 +598,7 @@
|
|||||||
if (com.CodAnag != null)
|
if (com.CodAnag != null)
|
||||||
{
|
{
|
||||||
ActivityModel.CodAnag = com.CodAnag;
|
ActivityModel.CodAnag = com.CodAnag;
|
||||||
|
ActivityModel.TipoAnag = com.TipoAnag;
|
||||||
ActivityModel.Cliente = Clienti
|
ActivityModel.Cliente = Clienti
|
||||||
.Where(x => x.CodAnag != null && x.CodAnag.Equals(com.CodAnag))
|
.Where(x => x.CodAnag != null && x.CodAnag.Equals(com.CodAnag))
|
||||||
.Select(x => x.RagSoc)
|
.Select(x => x.RagSoc)
|
||||||
@@ -605,6 +611,7 @@
|
|||||||
{
|
{
|
||||||
ActivityModel.CodAnag = null;
|
ActivityModel.CodAnag = null;
|
||||||
ActivityModel.Cliente = null;
|
ActivityModel.Cliente = null;
|
||||||
|
ActivityModel.TipoAnag = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -613,6 +620,7 @@
|
|||||||
ActivityModel.Commessa = null;
|
ActivityModel.Commessa = null;
|
||||||
ActivityModel.CodAnag = null;
|
ActivityModel.CodAnag = null;
|
||||||
ActivityModel.Cliente = null;
|
ActivityModel.Cliente = null;
|
||||||
|
ActivityModel.TipoAnag = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
OnAfterChangeValue();
|
OnAfterChangeValue();
|
||||||
|
|||||||
Reference in New Issue
Block a user