From c1a133c61e7e0521f6b65928fe1d727f3b5ef825 Mon Sep 17 00:00:00 2001 From: MarcoE Date: Tue, 17 Feb 2026 09:47:14 +0100 Subject: [PATCH] Aggiunti nuovi campi al form --- SteUp.Shared/Components/Layout/NavMenu.razor | 2 +- .../Modal/ModalFormScheda.razor | 21 +++++++++++++++++++ SteUp.Shared/Core/Dto/SchedaDto.cs | 2 ++ 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/SteUp.Shared/Components/Layout/NavMenu.razor b/SteUp.Shared/Components/Layout/NavMenu.razor index b74db5c..27afc7c 100644 --- a/SteUp.Shared/Components/Layout/NavMenu.razor +++ b/SteUp.Shared/Components/Layout/NavMenu.razor @@ -43,7 +43,7 @@ else { - Nuova rilevazione + Nuova ispezione } diff --git a/SteUp.Shared/Components/SingleElements/Modal/ModalFormScheda.razor b/SteUp.Shared/Components/SingleElements/Modal/ModalFormScheda.razor index e466043..a0f9c15 100644 --- a/SteUp.Shared/Components/SingleElements/Modal/ModalFormScheda.razor +++ b/SteUp.Shared/Components/SingleElements/Modal/ModalFormScheda.razor @@ -119,6 +119,27 @@ }
+
+ Scadenza + + + + + + + +
+ +
+ + + +
+ diff --git a/SteUp.Shared/Core/Dto/SchedaDto.cs b/SteUp.Shared/Core/Dto/SchedaDto.cs index f566ed1..5de8269 100644 --- a/SteUp.Shared/Core/Dto/SchedaDto.cs +++ b/SteUp.Shared/Core/Dto/SchedaDto.cs @@ -5,4 +5,6 @@ public class SchedaDto public JtbFasiDto? Reparto { get; set; } public string? ActivityTypeId { get; set; } public string? Note { get; set; } + public string? Responsabile { get; set; } + public int Scadenza { get; set; } = 24; } \ No newline at end of file