corregido bug de servicios por defecto

This commit is contained in:
Jaime Jiménez Ortega
2024-03-13 21:07:34 +01:00
parent 0ca809805d
commit 879669a7f0
2 changed files with 4 additions and 4 deletions

View File

@ -91,6 +91,6 @@ class PapelFormatoModel extends \App\Models\GoBaseModel
->table($this->table . " t1")
->select(
"t1.id AS id, CONCAT(t1.ancho, ' x ', t1.alto) AS tamanio"
)->get()->getResultObject();
)->where('is_deleted', 0)->get()->getResultObject();
}
}