Inizio modifiche display x processing stato MIN
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Version>0.9.2601.1318</Version>
|
||||
<Version>0.9.2601.1411</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -179,7 +179,7 @@ namespace Lux.API.Services
|
||||
// gestione ritorno tipo Balance dei gruppi di lavorazione (x carico macchine/schedulazione)
|
||||
if (retData.Args.ContainsKey("Balance"))
|
||||
{
|
||||
// ATTENZIONE! qui oltre al valore UID deve leggere ANCHE il gruppo cui è riferito (es: Group: G01)
|
||||
// ATTENZIONE! qui oltre al valore UID deve leggere ANCHE il gruppo cui è riferito (es: Group: 1)
|
||||
// recupero lista risultati calcolo...
|
||||
string refGroup = retData.Args["Group"];
|
||||
string rawBalance = retData.Args["Balance"];
|
||||
|
||||
@@ -5,6 +5,10 @@
|
||||
<div class="px-0">@CurrPOR.OrderRowUID | <i class="fa-solid fa-folder-tree"></i> @CurrPOR.ProdItemQtyTot</div>
|
||||
<div class="px-0"><button class="btn btn-sm btn-dark" @onclick="() => DoBalance(CurrPOR.OrderRowID)">Send <i class="fa-solid fa-angles-right"></i></button></div>
|
||||
</li>
|
||||
<li class="list-group-item d-flex justify-content-between align-items-center small">
|
||||
<div class="px-0"><i class="fa-solid fa-folder-tree"></i> @CurrPOR.ProdItemQtyTot Parts</div>
|
||||
<div class="px-0">WorkTime <i class="fa-solid fa-clock"></i> @CurrPOR.ProdItemQtyTot</div>
|
||||
</li>
|
||||
|
||||
@* <li class="list-group-item d-flex justify-content-between">
|
||||
<div class="px-0">Saomad</div>
|
||||
|
||||
@@ -7,7 +7,7 @@ else
|
||||
{
|
||||
if (AllRecords.Count == 0)
|
||||
{
|
||||
<div class="alert alert-warning">Nessun Ordine Da bilanciare</div>
|
||||
<div class="alert alert-warning">Nessun Ordine da Bilanciare</div>
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -13,10 +13,17 @@
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-3">
|
||||
<WLB_Estimated AllRecords="@ListEstimRecords" EC_DoBalance="DoBalance"></WLB_Estimated>
|
||||
<WLB_Estimated AllRecords="@ListEstimRecords" EC_DoBalance="DoBalance"></WLB_Estimated>
|
||||
</div>
|
||||
<div class="col">
|
||||
<BalanceProgGroup AllRecords="@ListBalancedRecords"></BalanceProgGroup>
|
||||
@if (ListBalancedRecords == null || ListBalancedRecords.Count == 0)
|
||||
{
|
||||
<div class="alert alert-warning fs-4">Nessun Order Balance Attivo</div>
|
||||
}
|
||||
else
|
||||
{
|
||||
<BalanceProgGroup AllRecords="@ListBalancedRecords"></BalanceProgGroup>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -66,8 +66,8 @@ namespace Lux.UI.Components.Pages
|
||||
private async Task ReloadData()
|
||||
{
|
||||
// prendo solo ordini stimati (NON ancora bilanciati o pianificati)
|
||||
ListEstimRecords = await DLService.OrderRowGetByState(OrderStates.Estimated);
|
||||
ListBalancedRecords = await DLService.ProdGroupByOrderState(OrderStates.Estimated);
|
||||
ListEstimRecords = await DLService.OrderRowGetByStateMin(OrderStates.Estimated, PeriodoSel.Inizio, PeriodoSel.Fine);
|
||||
ListBalancedRecords = await DLService.ProdGroupByOrderState(OrderStates.Assigned);
|
||||
}
|
||||
|
||||
private async Task DoBalance(int OrderRowID)
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<UserSecretsId>aspnet-Lux.UI-a758c101-a2f4-4e38-977d-1c4887dbbd50</UserSecretsId>
|
||||
<Version>0.9.2601.1318</Version>
|
||||
<Version>0.9.2601.1411</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<body>
|
||||
<i>LUX - Web Windows MES</i>
|
||||
<h4>Versione: 0.9.2601.1318</h4>
|
||||
<h4>Versione: 0.9.2601.1411</h4>
|
||||
<br /> Note di rilascio:
|
||||
<ul>
|
||||
<li>
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.9.2601.1318
|
||||
0.9.2601.1411
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item>
|
||||
<version>0.9.2601.1318</version>
|
||||
<version>0.9.2601.1411</version>
|
||||
<url>http://nexus.steamware.net/repository/SWS/GPW/stable/GPW.UI.zip</url>
|
||||
<changelog>http://nexus.steamware.net/repository/SWS/GPW/stable/ChangeLog.html</changelog>
|
||||
<mandatory>false</mandatory>
|
||||
|
||||
Reference in New Issue
Block a user