From 37889fa277183f1b42b1a14faf3b38bb21fe4bd6 Mon Sep 17 00:00:00 2001 From: Marco Antonio Mauro Date: Mon, 7 Feb 2022 14:19:09 +0100 Subject: [PATCH] Risolta issue #1014 --- modules/tipi_intervento/actions.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/tipi_intervento/actions.php b/modules/tipi_intervento/actions.php index 1093cfade..15ce287c5 100755 --- a/modules/tipi_intervento/actions.php +++ b/modules/tipi_intervento/actions.php @@ -42,13 +42,12 @@ switch (post('op')) { case 'add': $codice = post('codice'); - $tipo->calcola_km = post('calcola_km'); $descrizione = post('descrizione'); $tipo = Tipo::build($codice, $descrizione); $tipo->tempo_standard = post('tempo_standard'); - + $tipo->calcola_km = post('calcola_km'); $tipo->costo_orario = post('costo_orario'); $tipo->costo_km = post('costo_km'); $tipo->costo_diritto_chiamata = post('costo_diritto_chiamata');