79 lines
2.5 KiB
PHP
79 lines
2.5 KiB
PHP
<?php
|
|
namespace Incoviba\Repository\Venta;
|
|
|
|
use DateTimeImmutable;
|
|
use Incoviba\Common\Ideal;
|
|
use Incoviba\Common\Define;
|
|
use Incoviba\Common\Implement;
|
|
use Incoviba\Model;
|
|
use Incoviba\Service;
|
|
|
|
class Escritura extends Ideal\Repository
|
|
{
|
|
public function __construct(Define\Connection $connection, protected Service\Venta\Pago $pagoService)
|
|
{
|
|
parent::__construct($connection);
|
|
$this->setTable('escritura');
|
|
}
|
|
|
|
public function create(?array $data = null): Define\Model
|
|
{
|
|
$map = (new Implement\Repository\MapperParser())
|
|
->register('pago', (new Implement\Repository\Mapper())
|
|
->setFunction(function($data) {
|
|
return $this->pagoService->getById($data['pago']);
|
|
}))
|
|
->register('fecha', new Implement\Repository\Mapper\DateTime('fecha'));
|
|
return $this->parseData(new Model\Venta\Escritura(), $data, $map);
|
|
}
|
|
public function save(Define\Model $model): Define\Model
|
|
{
|
|
$model->id = $this->saveNew(
|
|
['valor', 'fecha', 'uf', 'abonado', 'fecha_abono', 'pago'],
|
|
[$model->pago->valor, $model->fecha->format('Y-m-d'), $model->pago->uf, null, null, $model->pago->id]
|
|
);
|
|
return $model;
|
|
}
|
|
public function edit(Define\Model $model, array $new_data): Define\Model
|
|
{
|
|
return $this->update($model, ['valor', 'fecha', 'uf', 'abonado', 'fecha_abono', 'pago'], $new_data);
|
|
}
|
|
|
|
/**
|
|
* @param int $value
|
|
* @return array
|
|
* @throws Implement\Exception\EmptyResult
|
|
*/
|
|
public function fetchByValue(int $value): array
|
|
{
|
|
$query = $this->connection->getQueryBuilder()
|
|
->select()
|
|
->from($this->getTable())
|
|
->where('valor = ?');
|
|
return $this->fetchMany($query, [$value]);
|
|
}
|
|
public function fetchByPago(int $pago_id): Model\Venta\Escritura
|
|
{
|
|
$query = $this->connection->getQueryBuilder()
|
|
->select()
|
|
->from($this->getTable())
|
|
->where('pago = ?');
|
|
return $this->fetchOne($query, [$pago_id]);
|
|
}
|
|
|
|
/**
|
|
* @param int $venta_id
|
|
* @return Model\Venta\Escritura
|
|
* @throws Implement\Exception\EmptyResult
|
|
*/
|
|
public function fetchByVenta(int $venta_id): Model\Venta\Escritura
|
|
{
|
|
$query = $this->connection->getQueryBuilder()
|
|
->select('a.*')
|
|
->from("{$this->getTable()} a")
|
|
->joined('JOIN venta ON venta.escritura = a.id')
|
|
->where('venta.id = ?');
|
|
return $this->fetchOne($query, [$venta_id]);
|
|
}
|
|
}
|