2024-06-18
This commit is contained in:
55
app/src/Repository/Sociedad.php
Normal file
55
app/src/Repository/Sociedad.php
Normal file
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
namespace Incoviba\Repository;
|
||||
|
||||
use Incoviba\Common\Define;
|
||||
use Incoviba\Common\Ideal;
|
||||
use Incoviba\Common\Implement;
|
||||
use Incoviba\Model;
|
||||
use Incoviba\Service;
|
||||
|
||||
class Sociedad extends Ideal\Repository
|
||||
{
|
||||
public function __construct(Define\Connection $connection,
|
||||
protected Inmobiliaria\TipoSociedad $tipoSociedadRepository,
|
||||
protected Service\Persona $personaService)
|
||||
{
|
||||
parent::__construct($connection);
|
||||
$this->setTable('sociedades');
|
||||
}
|
||||
|
||||
public function create(?array $data = null): Model\Sociedad
|
||||
{
|
||||
$map = (new Implement\Repository\MapperParser(['rut', 'digito', 'nombre']))
|
||||
->register('razon', (new Implement\Repository\Mapper())
|
||||
->setProperty('razonSocial'))
|
||||
->register('tipo_sociedad_id', (new Implement\Repository\Mapper())
|
||||
->setProperty('tipoSociedad')
|
||||
->setFunction(function ($data) {
|
||||
return $this->tipoSociedadRepository->fetchById($data['tipo_sociedad_id']);
|
||||
})
|
||||
)
|
||||
->register('contacto_rut', (new Implement\Repository\Mapper())
|
||||
->setProperty('contacto')
|
||||
->setFunction(function ($data) {
|
||||
return $this->personaService->getByRut($data['contacto_rut']);
|
||||
}));
|
||||
return $this->parseData(new Model\Sociedad(), $data, $map);
|
||||
}
|
||||
public function save(Define\Model $model): Model\Sociedad
|
||||
{
|
||||
$this->saveNew(['rut', 'digito', 'nombre', 'razon', 'tipo_sociedad_id', 'contacto_rut'],
|
||||
[$model->rut, $model->digito, $model->nombre, $model->razonSocial, $model->tipoSociedad->id,
|
||||
$model->contacto->rut]);
|
||||
return $model;
|
||||
}
|
||||
public function edit(Define\Model $model, array $new_data): Model\Sociedad
|
||||
{
|
||||
return $this->update($model,
|
||||
['digito', 'nombre', 'razon', 'tipo_sociedad_id', 'contacto_rut'], $new_data);
|
||||
}
|
||||
|
||||
protected function getKey(): string
|
||||
{
|
||||
return 'rut';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user