Simplificacion de retorno de ventas por unidades
This commit is contained in:
@ -321,7 +321,7 @@ class Venta extends Ideal\Repository
|
||||
* @return array
|
||||
* @throws Implement\Exception\EmptyResult
|
||||
*/
|
||||
public function fetchActiveByUnidadIds(array $unidad_ids): array
|
||||
public function fetchActiveArrayByUnidadIds(array $unidad_ids): array
|
||||
{
|
||||
$subSubQuery = $this->connection->getQueryBuilder()
|
||||
->select('MAX(`id`) AS `id`, `venta`')
|
||||
@ -347,7 +347,7 @@ class Venta extends Ideal\Repository
|
||||
return array_map(function($result) {
|
||||
return [
|
||||
'unidad_id' => $result['unidad'],
|
||||
'venta' => $this->load($result)
|
||||
'venta' => $result
|
||||
];
|
||||
}, $results);
|
||||
} catch (PDOException $exception) {
|
||||
|
Reference in New Issue
Block a user