Correzioni compilazioni TAB3
This commit is contained in:
@@ -90,7 +90,7 @@ namespace MP_TAB3.Components
|
||||
// elimino vecchio se c'�...
|
||||
await TabServ.EvListDelete(IdxMacc, DateSel, idxTipoCommento);
|
||||
// inserisco
|
||||
await TabServ.EvListInsert(newRec, MP.Data.Objects.Enums.tipoInputEvento.barcode);
|
||||
await TabServ.EvListInsert(newRec, MP.Core.Objects.Enums.tipoInputEvento.barcode);
|
||||
// reset
|
||||
DoReset();
|
||||
ToggleCtrl();
|
||||
|
||||
@@ -12,11 +12,11 @@
|
||||
<div class="px-0">
|
||||
@{
|
||||
string imgUrl = "images/pythonLogo.png";
|
||||
if (IobInfo.iType == MP.Data.Objects.Enums.IobType.rPi)
|
||||
if (IobInfo.iType == MP.Core.Objects.Enums.IobType.rPi)
|
||||
{
|
||||
imgUrl = "images/linuxLogo.png";
|
||||
}
|
||||
else if (IobInfo.iType == MP.Data.Objects.Enums.IobType.WIN)
|
||||
else if (IobInfo.iType == MP.Core.Objects.Enums.IobType.WIN)
|
||||
{
|
||||
imgUrl = "images/winLogo.png";
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using MP.Data.Objects;
|
||||
using MP.Core.Objects;
|
||||
using MP.Data.Services;
|
||||
|
||||
namespace MP_TAB3.Components
|
||||
|
||||
@@ -141,7 +141,7 @@ namespace MP_TAB3.Components
|
||||
if (!string.IsNullOrEmpty(UserComment))
|
||||
{
|
||||
// inserisco
|
||||
await TabServ.EvListInsert(newRec, MP.Data.Objects.Enums.tipoInputEvento.commento);
|
||||
await TabServ.EvListInsert(newRec, MP.Core.Objects.Enums.tipoInputEvento.commento);
|
||||
}
|
||||
// reset
|
||||
await E_relData.InvokeAsync(true);
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
using global::Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Data;
|
||||
using MP.Core.Objects;
|
||||
using MP.Data.DbModels;
|
||||
using MP.Data.Objects;
|
||||
using MP.Data.Services;
|
||||
using NLog;
|
||||
using System.Text;
|
||||
using static MP.Data.Objects.Enums;
|
||||
using static MP.Core.Objects.Enums;
|
||||
|
||||
namespace MP_TAB3.Components
|
||||
{
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
using global::Microsoft.AspNetCore.Components;
|
||||
using MP.Core.DTO;
|
||||
using MP.Data.DbModels;
|
||||
using MP.Data.DTO;
|
||||
using MP.Data.Services;
|
||||
using NLog;
|
||||
|
||||
namespace MP_TAB3.Components
|
||||
{
|
||||
public partial class ParamsMan : IDisposable
|
||||
public partial class ParamsMan : ComponentBase, IDisposable
|
||||
{
|
||||
#region Public Properties
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using global::Microsoft.AspNetCore.Components;
|
||||
using MP.Core.Objects;
|
||||
using MP.Data.DbModels;
|
||||
using MP.Data.Objects;
|
||||
using MP.Data.Services;
|
||||
|
||||
namespace MP_TAB3.Components
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using global::Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Core.Objects;
|
||||
using MP.Data.DbModels;
|
||||
using MP.Data.Objects;
|
||||
using MP.Data.Services;
|
||||
|
||||
namespace MP_TAB3.Components
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<Version>6.16.2503.1410</Version>
|
||||
<Version>6.16.2503.1418</Version>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<RootNamespace>MP_TAB3</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -102,7 +102,7 @@ namespace MP_TAB3.Pages
|
||||
pallet = rigaStato.pallet
|
||||
};
|
||||
// se realtime
|
||||
await TabDServ.EvListInsert(newRec, MP.Data.Objects.Enums.tipoInputEvento.barcode);
|
||||
await TabDServ.EvListInsert(newRec, MP.Core.Objects.Enums.tipoInputEvento.barcode);
|
||||
// resetta il microstato in modo da ricevere successive info HW
|
||||
await TabDServ.resetMicrostatoMacchina(IdxMacc);
|
||||
}
|
||||
@@ -145,7 +145,7 @@ namespace MP_TAB3.Pages
|
||||
MatrOpr = MatrOpr,
|
||||
pallet = rigaStato.pallet
|
||||
};
|
||||
await TabDServ.EvListInsert(newRec, MP.Data.Objects.Enums.tipoInputEvento.barcode);
|
||||
await TabDServ.EvListInsert(newRec, MP.Core.Objects.Enums.tipoInputEvento.barcode);
|
||||
|
||||
// update commento apertura!
|
||||
commento = $"999 - Dich StartEvt: {evento} [{codRich}]";
|
||||
@@ -159,7 +159,7 @@ namespace MP_TAB3.Pages
|
||||
MatrOpr = MatrOpr,
|
||||
pallet = rigaStato.pallet
|
||||
};
|
||||
await TabDServ.EvListInsert(newRec, MP.Data.Objects.Enums.tipoInputEvento.barcode);
|
||||
await TabDServ.EvListInsert(newRec, MP.Core.Objects.Enums.tipoInputEvento.barcode);
|
||||
// eseguo ricalcolo!
|
||||
DateTime startRicalcolo = DtRif.AddMinutes(minAnticipoRicalcolo);
|
||||
// eseguo ricalcolo periodo..
|
||||
|
||||
@@ -1,13 +1,10 @@
|
||||
using global::Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
using MP.Data;
|
||||
using MP.Data.Conf;
|
||||
using MP.Data.DbModels;
|
||||
using MP.Data.Services;
|
||||
using MP_TAB3.Shared;
|
||||
using Newtonsoft.Json;
|
||||
using NLog;
|
||||
using System.Runtime.ExceptionServices;
|
||||
|
||||
namespace MP_TAB3.Pages
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<body>
|
||||
<i>Modulo MAPOSPEC </i>
|
||||
<h4>Versione: 6.16.2503.1410</h4>
|
||||
<h4>Versione: 6.16.2503.1418</h4>
|
||||
<br /> Note di rilascio:
|
||||
<ul>
|
||||
<li>
|
||||
|
||||
@@ -1 +1 @@
|
||||
6.16.2503.1410
|
||||
6.16.2503.1418
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item>
|
||||
<version>6.16.2503.1410</version>
|
||||
<version>6.16.2503.1418</version>
|
||||
<url>https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/MP-TAB3.zip</url>
|
||||
<changelog>https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/ChangeLog.html</changelog>
|
||||
<mandatory>false</mandatory>
|
||||
|
||||
Reference in New Issue
Block a user