Skip to content

Commit

Permalink
FK Statut not null
Browse files Browse the repository at this point in the history
  • Loading branch information
atm-irvine committed Sep 2, 2024
1 parent 0bd0338 commit 56b9e03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/resource/class/dolresource.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class DolResource extends CommonObject
"fk_user_author" => array("type" => "integer:User:user/class/user.class.php", "label" => "UserAuthor", "enabled" => "1", 'position' => 150, 'notnull' => 0, "visible" => "-2"),
"fk_user_modif" => array("type" => "integer:User:user/class/user.class.php", "label" => "UserModif", "enabled" => "1", 'position' => 160, 'notnull' => 0, "visible" => "-2"),
"fk_user_valid" => array("type" => "integer:User:user/class/user.class.php", "label" => "UserValid", "enabled" => "1", 'position' => 170, 'notnull' => 0, "visible" => "-2"),
"fk_statut" => array("type" => "integer", "label" => "Status", "enabled" => "1", 'position' => 180, 'notnull' => 1, "visible" => "0", "arrayofkeyval" => array("0" => "Draft", "1" => "Validated", "9" => "Canceled")),
"fk_statut" => array("type" => "integer", "label" => "Status", "enabled" => "1", 'position' => 180, 'notnull' => -2, "visible" => "0", "arrayofkeyval" => array("0" => "Draft", "1" => "Validated", "9" => "Canceled")),
"note_public" => array("type" => "html", "label" => "NotePublic", "enabled" => "1", 'position' => 190, 'notnull' => 0, "visible" => "0"),
"note_private" => array("type" => "html", "label" => "NotePrivate", "enabled" => "1", 'position' => 200, 'notnull' => 0, "visible" => "0"),
"import_key" => array("type" => "varchar(14)", "label" => "ImportKey", "enabled" => "1", 'position' => 210, 'notnull' => 0, "visible" => "-2"),
Expand Down

0 comments on commit 56b9e03

Please sign in to comment.