@(item.WorkLoad?.NumMachines ?? 0)
@@ -463,7 +463,7 @@ else if (WorkLoadRecord != null)
Workable Parts: @WorkLoadRecord.NumOk
- @WorkLoadRecord.ListMachines
+ @WorkLoadRecord.ListMachinesJoin
@@ -493,7 +493,7 @@ else if (WorkLoadRecord != null)
Vincolated Parts: @WorkLoadRecord.NumKo
- @WorkLoadRecord.ListMachines
+ @WorkLoadRecord.ListMachinesJoin
Unworkable Parts: @WorkLoadRecord.NumKo
- @WorkLoadRecord.ListMachines
+ @WorkLoadRecord.ListMachinesJoin
Impianti considerati
- @DetailRecord.ListMachines
+ @DetailRecord.ListMachinesJoin
diff --git a/Lux.UI/Components/Compo/WorkLoad/TimeEstim.razor b/Lux.UI/Components/Compo/WorkLoad/TimeEstim.razor
index b3f025c0..3dbfc284 100644
--- a/Lux.UI/Components/Compo/WorkLoad/TimeEstim.razor
+++ b/Lux.UI/Components/Compo/WorkLoad/TimeEstim.razor
@@ -15,7 +15,7 @@
Impianti considerati
- @DetailRecord.ListMachines
+ @DetailRecord.ListMachinesJoin
@@ -24,80 +24,125 @@
-
+
+
+ @if (DetailRecord.NumKo > 0)
+ {
+
+
+
+
+
+ @foreach (var item in DetailRecord.ListUnWorkable)
+ {
+
+ }
+
+
+
+
+ }
+ @if (DetailRecord.NumOkVin > 0)
+ {
+
+
+
+
+
+ @foreach (var item in DetailRecord.ListVincolated)
+ {
+
+ }
+
+
+
+
+ }
+ @if (DetailRecord.NumOk > 0)
+ {
+
+
+
+
+
+ @foreach (var item in DetailRecord.ListWorkable)
+ {
+
+ }
+
+
+
+
+ }
+
+
+
-
- @if (DetailRecord.NumKo > 0)
- {
-
-
-
-
-
- @foreach (var item in DetailRecord.ListUnWorkable)
- {
-
- }
-
-
-
-
- }
- @if (DetailRecord.NumOkVin > 0)
- {
-
-
-
-
-
- @foreach (var item in DetailRecord.ListVincolated)
- {
-
- }
-
-
-
-
- }
- @if (DetailRecord.NumOk > 0)
- {
-
-
-
-
-
- @foreach (var item in DetailRecord.ListWorkable)
- {
-
- }
-
-
-
-
- }
-
diff --git a/Lux.UI/Components/Compo/WorkLoad/TimeEstim.razor.cs b/Lux.UI/Components/Compo/WorkLoad/TimeEstim.razor.cs
index 2c17a5d0..d6671dd3 100644
--- a/Lux.UI/Components/Compo/WorkLoad/TimeEstim.razor.cs
+++ b/Lux.UI/Components/Compo/WorkLoad/TimeEstim.razor.cs
@@ -21,8 +21,27 @@ namespace Lux.UI.Components.Compo.WorkLoad
#endregion Public Properties
+ private string selUid = "";
+
+ protected string MainCss
+ {
+ get => string.IsNullOrEmpty(selUid) ? "col-12" : "col-6";
+ }
+
#region Public Classes
+ protected List ListTargetMachine
+ {
+ get
+ {
+ var answ = DetailRecord.ListMachines;
+ // aggiungo la macchina EXT...
+ answ.Add("EXT");
+ return answ;
+ }
+ }
+
+
///
/// Definizione richiesta di bilanciamento per il calcolo
///
diff --git a/Lux.UI/Lux.UI.csproj b/Lux.UI/Lux.UI.csproj
index 9f476827..3082f343 100644
--- a/Lux.UI/Lux.UI.csproj
+++ b/Lux.UI/Lux.UI.csproj
@@ -5,7 +5,7 @@
enable
enable
aspnet-Lux.UI-a758c101-a2f4-4e38-977d-1c4887dbbd50
- 0.9.2512.2312
+ 0.9.2512.2316
@@ -17,7 +17,7 @@
-
+
diff --git a/Resources/ChangeLog.html b/Resources/ChangeLog.html
index da7282a5..848a0ad2 100644
--- a/Resources/ChangeLog.html
+++ b/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
LUX - Web Windows MES
- Versione: 0.9.2512.2312
+ Versione: 0.9.2512.2316
Note di rilascio:
-
diff --git a/Resources/VersNum.txt b/Resources/VersNum.txt
index db4ff637..c06c6685 100644
--- a/Resources/VersNum.txt
+++ b/Resources/VersNum.txt
@@ -1 +1 @@
-0.9.2512.2312
+0.9.2512.2316
diff --git a/Resources/manifest.xml b/Resources/manifest.xml
index aba1c5ec..13b14879 100644
--- a/Resources/manifest.xml
+++ b/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 0.9.2512.2312
+ 0.9.2512.2316
http://nexus.steamware.net/repository/SWS/GPW/stable/GPW.UI.zip
http://nexus.steamware.net/repository/SWS/GPW/stable/ChangeLog.html
false
|