Venta->Listado->Cierres

This commit is contained in:
Juan Pablo Vial
2023-07-25 17:03:57 -04:00
parent 1a7b10ce3c
commit 43cd955061
12 changed files with 596 additions and 5 deletions

View File

@ -0,0 +1,66 @@
<?php
namespace Incoviba\Repository\Venta;
use DateTimeImmutable;
use Incoviba\Common\Ideal;
use Incoviba\Common\Define;
use Incoviba\Model;
use Incoviba\Repository;
class EstadoCierre extends Ideal\Repository
{
public function __construct(Define\Connection $connection, protected Repository\Venta\Cierre $cierreRepository, protected Repository\Venta\TipoEstadoCierre $tipoEstadoCierreRepository)
{
parent::__construct($connection);
$this->setTable('estado_cierre');
}
public function create(?array $data = null): Define\Model
{
$map = [
'cierre' => [
'function' => function($data) {
return $this->cierreRepository->fetchById($data['cierre']);
}
],
'tipo' => [
'property' => 'tipoEstadoCierre',
'function' => function($data) {
return $this->tipoEstadoCierreRepository->fetchById($data['tipo']);
}
],
'fecha' => [
'function' => function($data) {
return new DateTimeImmutable($data['fecha']);
}
]
];
return $this->parseData(new Model\Venta\EstadoCierre(), $data, $map);
}
public function save(Define\Model $model): Define\Model
{
$model->id = $this->saveNew(
['cierre', 'tipo', 'fecha'],
[$model->cierre->id, $model->tipoEstadoCierre->id, $model->fecha->format('Y-m-d')]
);
return $model;
}
public function edit(Define\Model $model, array $new_data): Define\Model
{
return $this->update($model, ['cierre', 'tipo', 'fecha'], $new_data);
}
public function fetchByCierre(int $cierre_id): array
{
$query = "SELECT * FROM `{$this->getTable()}` WHERE `cierre` = ?";
return $this->fetchMany($query, [$cierre_id]);
}
public function fetchCurrentByCierre(int $cierre_id): Define\Model
{
$query = "SELECT e1.*
FROM `{$this->getTable()}` e1
JOIN (SELECT MAX(`id`) AS 'id', `cierre` FROM `{$this->getTable()}` GROUP BY `cierre`) e0 ON e0.`id` = e1.`id`
WHERE e1.`cierre` = ?";
return $this->fetchOne($query, [$cierre_id]);
}
}