diff --git a/MP.Prog/Pages/Archive.razor b/MP.Prog/Pages/Archive.razor index 0d2984cb..a938d3e6 100644 --- a/MP.Prog/Pages/Archive.razor +++ b/MP.Prog/Pages/Archive.razor @@ -4,187 +4,172 @@
- Elenco Ordini + Elenco Programmi
- -
-
-
-
-
-
-
- - -
-
-
-
- @if (ShowAddNew) - { - - } -
-
-
-
-
-
-
-
- inizio: -
- -
-
-
-
-
- fine: -
- +
-
-
-
-
- - - + @*
+
+
+
+ inizio: +
+
-
-
-
-
-
- - - +
+
+
+ fine: +
+
-
-
-
+
*@ +
+
+ @*
+
+
+
+ + + +
+ +
+
+
+
+
+ + + +
+ +
+
+
*@
@if (currRecord != null) { - +

mostrare dettaglio: diff? comando accetta/annulla?

+ @**@ } @if (ListRecords == null) { - + @**@ } else if (totalCount == 0) { -
Nessun record trovato
+
Nessun record trovato
} else { -
-
- - - - - - - - - - - - - - - @foreach (var record in ListRecords) - { - - - - - - - - - - - } - -
ImpiantoData OrdineOrdineFornitoreRichiestaCaricoEffettivo
- @if (currRecord == null) - { - - } - else - { - - } - -
@record.Plant.PlantCode
-
@record.Plant.PlantDesc
-
-
@record.DtOrder.ToString("yyyy.MM.dd")
-
@record.DtOrder.ToString("ddd HH:mm.ss")
-
@record.OrderCode | @record.OrderDesc -
- @record.Supplier.SupplierDesc -
-
@record.Transporter.TransporterDesc
-
- @record.OrderQty.ToString("N0") - - @if (!record.DtExecStart.Equals(@record.DtExecEnd)) - { -
- @record.DtExecStart.Date.ToString("ddd dd/MM/yyyyy") -
-
@record.DtExecStart.ToString("HH:mm:ss") --> @record.DtExecEnd.ToString("HH:mm:ss")
- } -
- @if (record.ExecutionQty > 0) - { - @record.ExecutionQty.ToString("N0") - } -
+
+
+ + + + + + + + + + + + + + + @foreach (var record in ListRecords) + { + @* + + + + + + + + + *@ + } + +
ImpiantoData OrdineOrdineFornitoreRichiestaCaricoEffettivo
+ @if (currRecord == null) + { + + } + else + { + + } + +
@record.Plant.PlantCode
+
@record.Plant.PlantDesc
+
+
@record.DtOrder.ToString("yyyy.MM.dd")
+
@record.DtOrder.ToString("ddd HH:mm.ss")
+
@record.OrderCode | @record.OrderDesc +
+ @record.Supplier.SupplierDesc +
+
@record.Transporter.TransporterDesc
+
+ @record.OrderQty.ToString("N0") + + @if (!record.DtExecStart.Equals(@record.DtExecEnd)) + { +
+ @record.DtExecStart.Date.ToString("ddd dd/MM/yyyyy") +
+
@record.DtExecStart.ToString("HH:mm:ss") --> @record.DtExecEnd.ToString("HH:mm:ss")
+ } +
+ @if (record.ExecutionQty > 0) + { + @record.ExecutionQty.ToString("N0") + } +
+
-
}
\ No newline at end of file diff --git a/MP.Prog/Pages/Index.razor b/MP.Prog/Pages/Index.razor index 73d0d8b8..c3d800dd 100644 --- a/MP.Prog/Pages/Index.razor +++ b/MP.Prog/Pages/Index.razor @@ -1,5 +1,57 @@ @page "/" -

Hello, world!

+@using MP.Prog.Data +@inject MessageService AppMService -Welcome to your new app. \ No newline at end of file +
+
+
+

MAPO Prog

+
+ Gestione archivio programmi macchina per MES 4.0 +
+
+
+
+ | | +
+
+
+
+
+
+ @**@ +
+
+
+
+
+ +
+
+
+

+ Sistema di gestione ed archiviazione storica dei programmi macchina CNC. +

+
+
+
+
+ +
+
+ +@code +{ + + protected override void OnInitialized() + { + AppMService.ShowSearch = false; + AppMService.PageName = "Home"; + AppMService.PageIcon = "fas fa-home pr-2"; + } +} \ No newline at end of file