se modifica el calculo del factor ponderado y se añade orden al tamaño de papel

This commit is contained in:
Jaime Jiménez
2024-03-14 18:27:40 +01:00
parent da2a532336
commit 8eac04292d
3 changed files with 13 additions and 3 deletions

View File

@ -9,6 +9,7 @@ class PapelFormatoEntity extends \CodeIgniter\Entity\Entity
"id" => null,
"ancho" => null,
"alto" => null,
"orden_select" => null,
"is_deleted" => 0,
"deleted_at" => null,
"created_at" => null,
@ -17,6 +18,7 @@ class PapelFormatoEntity extends \CodeIgniter\Entity\Entity
protected $casts = [
"ancho" => "float",
"alto" => "float",
"orden_select" => "int",
"is_deleted" => "int",
];
}