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]); } }