modificado form papel generico

This commit is contained in:
2024-11-19 20:51:11 +01:00
parent 9e4cd024bd
commit 8be0e3d16c
8 changed files with 75 additions and 37 deletions

View File

@ -10,13 +10,15 @@ class PapelGenerico extends \CodeIgniter\Entity\Entity
"nombre" => null,
"code" => null,
"code_ot" => null,
"show_in_client" => true,
"show_in_client" => false,
"show_in_client_special" => false,
"is_deleted" => 0,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"show_in_client" => "boolean",
"show_in_client_special" => "boolean",
"is_deleted" => "int",
];
}