toggle corte rotativa planning

This commit is contained in:
amazuecos
2025-03-31 09:05:03 +02:00
parent c65c6571cd
commit 460cb0344f
10 changed files with 174 additions and 59 deletions

View File

@ -25,6 +25,8 @@ class OrdenTrabajoTareaEntity extends Entity
"imposicion_id" => null,
"tiempo_estimado" => null,
"tiempo_real" => null,
"is_corte" => null,
"tipo_corte" => null,
"comment" => null,
];
protected $datamap = [];
@ -39,6 +41,8 @@ class OrdenTrabajoTareaEntity extends Entity
"imposicion_id" => "?integer",
"tiempo_estimado" => "?float",
"tiempo_real" => "?float",
"is_corte" => "boolean",
"tipo_corte" => "string",
"comment" => "?string"
];