From 8a121f59b25de4f2cec4941f1af54d888e6adf64 Mon Sep 17 00:00:00 2001 From: "zaccaria.majid" Date: Wed, 25 Oct 2023 17:34:38 +0200 Subject: [PATCH] ok pagine iob info mach det e work shift --- MP-TAB-SERV/Components/IobInfoMan.razor | 54 ++++++++++++++++- MP-TAB-SERV/Components/IobInfoMan.razor.css | 5 ++ MP-TAB-SERV/Components/IobInfoMan.razor.less | 5 ++ .../Components/IobInfoMan.razor.min.css | 1 + MP-TAB-SERV/Components/ProdConfirm.razor | 14 +++-- MP-TAB-SERV/MP-TAB-SERV.csproj | 2 +- MP-TAB-SERV/Pages/WorkShift.razor | 57 ++++++------------ MP-TAB-SERV/Pages/WorkShift.razor.css | 5 ++ MP-TAB-SERV/Pages/WorkShift.razor.less | 5 ++ MP-TAB-SERV/Pages/WorkShift.razor.min.css | 1 + MP-TAB-SERV/Resources/ChangeLog.html | 2 +- MP-TAB-SERV/Resources/VersNum.txt | 2 +- MP-TAB-SERV/Resources/manifest.xml | 2 +- MP-TAB-SERV/compilerconfig.json | 12 ++++ MP-TAB-SERV/wwwroot/images/linuxLogo.png | Bin 0 -> 23552 bytes MP-TAB-SERV/wwwroot/images/winLogo.png | Bin 0 -> 11471 bytes 16 files changed, 118 insertions(+), 49 deletions(-) create mode 100644 MP-TAB-SERV/Components/IobInfoMan.razor.css create mode 100644 MP-TAB-SERV/Components/IobInfoMan.razor.less create mode 100644 MP-TAB-SERV/Components/IobInfoMan.razor.min.css create mode 100644 MP-TAB-SERV/Pages/WorkShift.razor.css create mode 100644 MP-TAB-SERV/Pages/WorkShift.razor.less create mode 100644 MP-TAB-SERV/Pages/WorkShift.razor.min.css create mode 100644 MP-TAB-SERV/wwwroot/images/linuxLogo.png create mode 100644 MP-TAB-SERV/wwwroot/images/winLogo.png diff --git a/MP-TAB-SERV/Components/IobInfoMan.razor b/MP-TAB-SERV/Components/IobInfoMan.razor index f5a92a64..3569926f 100644 --- a/MP-TAB-SERV/Components/IobInfoMan.razor +++ b/MP-TAB-SERV/Components/IobInfoMan.razor @@ -1,4 +1,4 @@ -
+@*
@@ -31,4 +31,56 @@
+
*@ + +
+
+
+
+
Iob Type
+
+ @if(infosIob.iType == MP.Data.Objects.Enums.IobType.rPi) + { + + } + else if (infosIob.iType == MP.Data.Objects.Enums.IobType.WIN || infosIob.iType == MP.Data.Objects.Enums.IobType.ND) + { + + } +
+
+
+
+
+
+
+
Machine Cod
+
@idxMacch
+
+
+
+
+
Iob Address
+
@infosIob.IP
+
+
+
+
+
+
+
+
+
Iob Name
+
@infosIob.name
+
+
+
+
+
+
+
CNC Absolute counter
+
@infosIob.CNC_Counter
+
+
+
\ No newline at end of file diff --git a/MP-TAB-SERV/Components/IobInfoMan.razor.css b/MP-TAB-SERV/Components/IobInfoMan.razor.css new file mode 100644 index 00000000..6c8e12e9 --- /dev/null +++ b/MP-TAB-SERV/Components/IobInfoMan.razor.css @@ -0,0 +1,5 @@ +.cardObj { + border-radius: 0.375rem; + background: linear-gradient(121deg, rgba(255, 255, 255, 0.2) -0.71%, rgba(255, 255, 255, 0.05) 97.66%); + box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.25); +} \ No newline at end of file diff --git a/MP-TAB-SERV/Components/IobInfoMan.razor.less b/MP-TAB-SERV/Components/IobInfoMan.razor.less new file mode 100644 index 00000000..debe0f23 --- /dev/null +++ b/MP-TAB-SERV/Components/IobInfoMan.razor.less @@ -0,0 +1,5 @@ +.cardObj { + border-radius: 0.375rem; + background: linear-gradient(121deg, rgba(255, 255, 255, 0.20) -0.71%, rgba(255, 255, 255, 0.05) 97.66%); + box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.25); +} diff --git a/MP-TAB-SERV/Components/IobInfoMan.razor.min.css b/MP-TAB-SERV/Components/IobInfoMan.razor.min.css new file mode 100644 index 00000000..a73512c0 --- /dev/null +++ b/MP-TAB-SERV/Components/IobInfoMan.razor.min.css @@ -0,0 +1 @@ +.cardObj{border-radius:.375rem;background:linear-gradient(121deg,rgba(255,255,255,.2) -.71%,rgba(255,255,255,.05) 97.66%);box-shadow:0 4px 24px -1px rgba(0,0,0,.25);} \ No newline at end of file diff --git a/MP-TAB-SERV/Components/ProdConfirm.razor b/MP-TAB-SERV/Components/ProdConfirm.razor index 0da9cd1e..d08a10a4 100644 --- a/MP-TAB-SERV/Components/ProdConfirm.razor +++ b/MP-TAB-SERV/Components/ProdConfirm.razor @@ -49,7 +49,7 @@ else
- +
@@ -57,8 +57,8 @@ else
@if (enablePzProdLasciati) { - - + + } else { @@ -67,10 +67,12 @@ else
-
- +
Pz Buoni @lblPz2RecBuoni
+
Pz scarto @lblPz2RecScarto
+ @* + -
+ *@
@if (showConfirm) diff --git a/MP-TAB-SERV/MP-TAB-SERV.csproj b/MP-TAB-SERV/MP-TAB-SERV.csproj index be2d53cc..a565a4f8 100644 --- a/MP-TAB-SERV/MP-TAB-SERV.csproj +++ b/MP-TAB-SERV/MP-TAB-SERV.csproj @@ -3,7 +3,7 @@ net6.0 enable - 6.16.2310.2509 + 6.16.2310.2517 enable MP_TAB_SERV diff --git a/MP-TAB-SERV/Pages/WorkShift.razor b/MP-TAB-SERV/Pages/WorkShift.razor index 218c51da..2f3ace78 100644 --- a/MP-TAB-SERV/Pages/WorkShift.razor +++ b/MP-TAB-SERV/Pages/WorkShift.razor @@ -7,25 +7,30 @@ else { -
-
-

Gestione Turni

-
-
-
-
+

Gestione Turni

+
+
+
+
+

Stato Turni Attivi

+
+
+
+
+
+
@@ -33,38 +38,14 @@ else
-
-
-
-
-

Stato Turni Attivi

-
-
-
-
- Turno 1 -
-
-
-
- Turno 2 -
-
-
-
- Turno 3 -
-
+
+
+
+
+ Turno Aperto
-
-
-
- Turno Aperto -
-
- Turno Chiuso -
-
+
+ Turno Chiuso
diff --git a/MP-TAB-SERV/Pages/WorkShift.razor.css b/MP-TAB-SERV/Pages/WorkShift.razor.css new file mode 100644 index 00000000..ed8d08f3 --- /dev/null +++ b/MP-TAB-SERV/Pages/WorkShift.razor.css @@ -0,0 +1,5 @@ +.cardShift { + border-radius: 0.375rem; + background: linear-gradient(121deg, rgba(255, 255, 255, 0.2) -0.71%, rgba(255, 255, 255, 0.05) 97.66%); + box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.25); +} \ No newline at end of file diff --git a/MP-TAB-SERV/Pages/WorkShift.razor.less b/MP-TAB-SERV/Pages/WorkShift.razor.less new file mode 100644 index 00000000..0f29e9a7 --- /dev/null +++ b/MP-TAB-SERV/Pages/WorkShift.razor.less @@ -0,0 +1,5 @@ +.cardShift { + border-radius: 0.375rem; + background: linear-gradient(121deg, rgba(255, 255, 255, 0.20) -0.71%, rgba(255, 255, 255, 0.05) 97.66%); + box-shadow: 0px 4px 24px -1px rgba(0, 0, 0, 0.25); +} diff --git a/MP-TAB-SERV/Pages/WorkShift.razor.min.css b/MP-TAB-SERV/Pages/WorkShift.razor.min.css new file mode 100644 index 00000000..ac6b40dc --- /dev/null +++ b/MP-TAB-SERV/Pages/WorkShift.razor.min.css @@ -0,0 +1 @@ +.cardShift{border-radius:.375rem;background:linear-gradient(121deg,rgba(255,255,255,.2) -.71%,rgba(255,255,255,.05) 97.66%);box-shadow:0 4px 24px -1px rgba(0,0,0,.25);} \ No newline at end of file diff --git a/MP-TAB-SERV/Resources/ChangeLog.html b/MP-TAB-SERV/Resources/ChangeLog.html index 511e3d72..287877e4 100644 --- a/MP-TAB-SERV/Resources/ChangeLog.html +++ b/MP-TAB-SERV/Resources/ChangeLog.html @@ -1,6 +1,6 @@ Modulo MAPOSPEC -

Versione: 6.16.2310.2509

+

Versione: 6.16.2310.2517


Note di rilascio: