mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
try catch getTiempoProcesamientoHHMM
This commit is contained in:
@ -1353,9 +1353,13 @@ class ProductionService extends BaseService
|
|||||||
}
|
}
|
||||||
public function getTiempoProcesamientoHHMM(): ?string
|
public function getTiempoProcesamientoHHMM(): ?string
|
||||||
{
|
{
|
||||||
$time_tareas_seconds = array_map(fn($q) => $q->tiempo_estimado ?? 0, $this->ot->tareas());
|
try {
|
||||||
$seconds = array_sum($time_tareas_seconds);
|
$time_tareas_seconds = array_map(fn($q) => $q->tiempo_estimado ?? 0, $this->ot->tareas());
|
||||||
return float_seconds_to_hhmm_string($seconds);
|
$seconds = array_sum($time_tareas_seconds);
|
||||||
|
return float_seconds_to_hhmm_string($seconds);
|
||||||
|
} catch (\Throwable $th) {
|
||||||
|
return '00:00';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
public function getTiempoTareasImpresionHHMM(): string
|
public function getTiempoTareasImpresionHHMM(): string
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user