Skip to content

Commit

Permalink
fix tabella gestione date per gli ordini
Browse files Browse the repository at this point in the history
  • Loading branch information
madbob committed Jan 19, 2024
1 parent ed796b0 commit 516a01e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions code/resources/views/dates/table.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
]
Expand All @@ -37,7 +36,7 @@
'label' => _i('Data'),
'field' => 'date',
'type' => 'datepicker',
'width' => 2,
'width' => 20,
'extra' => [
'defaults_now' => true
]
Expand All @@ -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()
]
Expand Down

0 comments on commit 516a01e

Please sign in to comment.