add new dates in form

This commit is contained in:
amazuecos
2025-04-15 01:30:46 +02:00
parent 14c5cf493c
commit ab99baaa81
11 changed files with 183 additions and 99 deletions

View File

@ -24,6 +24,10 @@ class OrdenTrabajoDateEntity extends Entity
"cosido_at" => null,
"solapa_at" => null,
"cosido_at" => null,
"retractilado_at"=> null,
"retractilado5_at"=> null,
"prototipo_at"=> null,
"marcapaginas_at"=> null,
//FERRO
"pendiente_ferro_at" => null,
"ferro_en_cliente_at" => null,

View File

@ -21,21 +21,21 @@ class OrdenTrabajoEntity extends Entity
"pedido_id" => null,
"user_created_id" => null,
"user_updated_id" => null,
"fecha_entrega_warning" => false,
"fecha_entrega_warning_revised" => false,
"fecha_entrega_warning" => null,
"fecha_entrega_warning_revised" => null,
"total_tirada" => null,
"total_precio" => null,
"tipo_entrada" => "out",
"progreso" => 0.00,
"estado" => "I",
"comentarios" => null,
"revisar_formato" => false,
"revisar_lomo" => false,
"revisar_solapa" => false,
"revisar_isbn" => false,
"revisar_codigo_barras" => false,
"realizar_imposicion" => false,
"enviar_impresion" => false,
"revisar_formato" => null,
"revisar_lomo" => null,
"revisar_solapa" => null,
"revisar_isbn" => null,
"revisar_codigo_barras" => null,
"realizar_imposicion" => null,
"enviar_impresion" => null,
"portada_path" => null,
"is_pedido_espera" => null,
"pedido_espera_by" => null,

View File

@ -25,9 +25,13 @@ class OrdenTrabajoUserEntity extends Entity
"corte_user_id" => null,
"preparacion_interior_user_id" => null,
"entrada_manipulado_user_id" => null,
"cosido_user_id"=> null,
"solapa_user_id"=> null,
"grapado_user_id"=> null,
"cosido_user_id" => null,
"solapa_user_id" => null,
"grapado_user_id" => null,
"retractilado_user_id" => null,
"retractilado5_user_id" => null,
"prototipo_user_id" => null,
"marcapaginas_user_id" => null,
//FERRO
"pendiente_ferro_user_id" => null,
"ferro_en_cliente_user_id" => null,
@ -42,9 +46,9 @@ class OrdenTrabajoUserEntity extends Entity
"pre_codbarras_user_id" => null,
"pre_imposicion_user_id" => null,
//UNUSED
"inaplazable_revised_change_user_id" => null,//!DELETE
"ferro_disponible_hecho_user_id" => null,//!DELETE
"ferro_entregado_user_id" => null,//!DELETE
"inaplazable_revised_change_user_id" => null, //!DELETE
"ferro_disponible_hecho_user_id" => null, //!DELETE
"ferro_entregado_user_id" => null, //!DELETE
"pre_imprimir_user_id" => null, //!DELETE
"ferro_disponible_ok_user_id" => null, //!DELETE
];
@ -88,7 +92,7 @@ class OrdenTrabajoUserEntity extends Entity
}
return $user;
}
public function getPlastificadoBy() : ?UserEntity
public function getPlastificadoBy(): ?UserEntity
{
return $this->userBy('plastificado_user_id');
}