From 516a01e09abe4c49f6c68574b259a8ea97bea989 Mon Sep 17 00:00:00 2001 From: Roberto Guido Date: Fri, 19 Jan 2024 15:28:44 +0100 Subject: [PATCH] fix tabella gestione date per gli ordini --- code/resources/views/dates/table.blade.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/code/resources/views/dates/table.blade.php b/code/resources/views/dates/table.blade.php index bdd80405..4a39e868 100644 --- a/code/resources/views/dates/table.blade.php +++ b/code/resources/views/dates/table.blade.php @@ -22,13 +22,12 @@ 'label' => _i('ID'), 'field' => 'id', 'type' => 'hidden', - 'width' => 0 ], [ 'label' => _i('Fornitore'), 'field' => 'target_id', 'type' => 'selectobj', - 'width' => 2, + 'width' => 15, 'extra' => [ 'options' => $suppliers ] @@ -37,7 +36,7 @@ 'label' => _i('Data'), 'field' => 'date', 'type' => 'datepicker', - 'width' => 2, + 'width' => 20, 'extra' => [ 'defaults_now' => true ] @@ -46,19 +45,19 @@ 'label' => _i('Ricorrenza'), 'field' => 'recurring', 'type' => 'periodic', - 'width' => 3, + 'width' => 30, ], [ 'label' => _i('Descrizione'), 'field' => 'description', 'type' => 'text', - 'width' => 2, + 'width' => 20, ], [ 'label' => _i('Tipo'), 'field' => 'type', 'type' => 'select', - 'width' => 2, + 'width' => 10, 'extra' => [ 'options' => App\Date::types() ]