54 lines
1.8 KiB
PHP
54 lines
1.8 KiB
PHP
<?php
|
|
namespace Incoviba\Repository\MediosPago\Toku;
|
|
|
|
use DateTimeImmutable;
|
|
use Incoviba\Common\Define;
|
|
use Incoviba\Common\Ideal;
|
|
use Incoviba\Common\Implement;
|
|
use Incoviba\Repository;
|
|
use Incoviba\Model;
|
|
|
|
class Invoice extends Ideal\Repository
|
|
{
|
|
public function __construct(Define\Connection $connection, protected Repository\Venta\Cuota $cuotaRepository)
|
|
{
|
|
parent::__construct($connection);
|
|
}
|
|
|
|
public function getTable(): string
|
|
{
|
|
return 'toku_invoices';
|
|
}
|
|
public function create(?array $data = null): Model\MediosPago\Toku\Invoice
|
|
{
|
|
$map = (new Implement\Repository\MapperParser(['toku_id']))
|
|
->register('cuota_id', (new Implement\Repository\Mapper())
|
|
->setProperty('cuota')
|
|
->setFunction(function($data) {
|
|
return $this->cuotaRepository->fetchById($data['cuota_id']);
|
|
}));
|
|
return $this->parseData(new Model\MediosPago\Toku\Invoice(), $data, $map);
|
|
}
|
|
public function save(Define\Model $model): Model\MediosPago\Toku\Invoice
|
|
{
|
|
$model->id = $this->saveNew(
|
|
['cuota_id', 'toku_id', 'created_at'],
|
|
[$model->cuota->id, $model->toku_id, (new DateTimeImmutable())->format('Y-m-d H:i:s.u')]
|
|
);
|
|
return $model;
|
|
}
|
|
public function edit(Define\Model $model, array $new_data): Model\MediosPago\Toku\Invoice
|
|
{
|
|
return $this->update($model, ['cuota_id', 'toku_id', 'updated_at'], array_merge($new_data, ['updated_at' => (new DateTimeImmutable())->format('Y-m-d H:i:s.u')]));
|
|
}
|
|
|
|
public function fetchByCuota(int $cuota_id): Model\MediosPago\Toku\Invoice
|
|
{
|
|
$query = $this->connection->getQueryBuilder()
|
|
->select()
|
|
->from($this->getTable())
|
|
->where('cuota_id = :cuota_id');
|
|
return $this->fetchOne($query, compact('cuota_id'));
|
|
}
|
|
}
|