Implemented repository mapper, and venta show

This commit is contained in:
Juan Pablo Vial
2023-08-08 23:53:49 -04:00
parent ef30ae67d2
commit 59825259b6
111 changed files with 2766 additions and 612 deletions

View File

@ -0,0 +1,34 @@
<?php
namespace Incoviba\Repository\Proyecto;
use Incoviba\Common\Ideal;
use Incoviba\Common\Define;
use Incoviba\Common\Implement;
use Incoviba\Model;
class Elemento extends Ideal\Repository
{
public function __construct(Define\Connection $connection)
{
parent::__construct($connection);
$this->setTable('tipo_elemento');
}
public function create(?array $data = null): Define\Model
{
$map = (new Implement\Repository\MapperParser(['descripcion', 'abreviacion', 'orden']));
return $this->parseData(new Model\Proyecto\Elemento(), $data, $map);
}
public function save(Define\Model $model): Define\Model
{
$model->id = $this->saveNew(
['descripcion', 'abreviacion', 'orden'],
[$model->descripcion, $model->abreviacion, $model->orden]
);
return $model;
}
public function edit(Define\Model $model, array $new_data): Define\Model
{
return $this->update($model, ['descripcion', 'abreviacion', 'orden'], $new_data);
}
}

View File

@ -3,6 +3,7 @@ namespace Incoviba\Repository\Proyecto;
use Incoviba\Common\Define;
use Incoviba\Common\Ideal;
use Incoviba\Common\Implement;
use Incoviba\Model;
use Incoviba\Repository;
@ -16,27 +17,18 @@ class ProyectoTipoUnidad extends Ideal\Repository
public function create(?array $data = null): Define\Model
{
$map = [
'proyecto' => [
'function' => function($data) {
$map = (new Implement\Repository\MapperParser(['nombre', 'abreviacion', 'logia', 'terraza', 'descripcion']))
->register('proyecto', (new Implement\Repository\Mapper())
->setFunction(function($data) {
return $this->proyectoRepository->fetchById($data['proyecto']);
}
],
'tipo' => [
'property' => 'tipoUnidad',
'function' => function($data) {
}))
->register('tipo', (new Implement\Repository\Mapper())
->setProperty('tipoUnidad')
->setFunction(function($data) {
return $this->tipoUnidadRepository->fetchById($data['tipo']);
}
],
'nombre' => [],
'abreviacion' => [],
'm2' => [
'property' => 'util'
],
'logia' => [],
'terraza' => [],
'descripcion' => []
];
}))
->register('m2', (new Implement\Repository\Mapper())
->setProperty('util'));
return $this->parseData(new Model\Proyecto\ProyectoTipoUnidad(), $data, $map);
}
public function save(Define\Model $model): Define\Model

View File

@ -0,0 +1,34 @@
<?php
namespace Incoviba\Repository\Proyecto;
use Incoviba\Common\Ideal;
use Incoviba\Common\Define;
use Incoviba\Common\Implement;
use Incoviba\Model;
class TipoTipologia extends Ideal\Repository
{
public function __construct(Define\Connection $connection)
{
parent::__construct($connection);
$this->setTable('tipologia');
}
public function create(?array $data = null): Define\Model
{
$map = (new Implement\Repository\MapperParser(['descripcion']));
return $this->parseData(new Model\Proyecto\TipoTipologia(), $data, $map);
}
public function save(Define\Model $model): Define\Model
{
$model->id = $this->saveNew(
['descripcion'],
[$model->descripcion]
);
return $model;
}
public function edit(Define\Model $model, array $new_data): Define\Model
{
return $this->update($model, ['descripcion'], $new_data);
}
}

View File

@ -0,0 +1,58 @@
<?php
namespace Incoviba\Repository\Proyecto;
use Incoviba\Common\Ideal;
use Incoviba\Common\Define;
use Incoviba\Common\Implement;
use Incoviba\Model;
class Tipologia extends Ideal\Repository
{
public function __construct(
Define\Connection $connection,
protected ProyectoTipoUnidad $proyectoTipoUnidadRepository,
protected TipoTipologia $tipoTipologiaRepository,
protected Elemento $elementoRepository
)
{
parent::__construct($connection);
$this->setTable('tipo_tipologia');
}
public function create(?array $data = null): Define\Model
{
$map = (new Implement\Repository\MapperParser(['cantidad']))
->register('tipo', (new Implement\Repository\Mapper())
->setProperty('proyectoTipoUnidad')
->setFunction(function($data) {
return $this->proyectoTipoUnidadRepository->fetchById($data['tipo']);
}))
->register('tipologia', (new Implement\Repository\Mapper())
->setFunction(function($data) {
return $this->tipoTipologiaRepository->fetchById($data['tipologia']);
}))
->register('elemento', (new Implement\Repository\Mapper())
->setFunction(function($data) {
return $this->elementoRepository->fetchById($data['elemento']);
}));
return $this->parseData(new Model\Proyecto\Tipologia(), $data, $map);
}
public function save(Define\Model $model): Define\Model
{
$model->id = $this->saveNew(
['tipo', 'tipologia', 'cantidad', 'elemento'],
[$model->proyectoTipoUnidad->id, $model->tipoTipologia->id, $model->cantidad, $model->elemento->id]
);
return $model;
}
public function edit(Define\Model $model, array $new_data): Define\Model
{
return $this->update($model, ['tipo', 'tipologia', 'cantidad', 'elemento'], $new_data);
}
public function fetchByProyectoTipoUnidad(int $proyecto_tipo_unidad_id): array
{
$query = "SELECT * FROM `{$this->getTable()}` WHERE `tipo` = ?";
return $this->fetchMany($query, [$proyecto_tipo_unidad_id]);
}
}