FIX: Fetch by state

This commit is contained in:
Juan Pablo Vial
2025-09-11 15:05:07 -03:00
parent afd05f9765
commit 5a60e79e47
6 changed files with 184 additions and 38 deletions

View File

@ -181,4 +181,33 @@ class Reservations
} catch (ServiceAction\Read) {}
return $this->withJson($response, $output);
}
public function approve(ServerRequestInterface $request, ResponseInterface $response,
Service\Venta\Reservation $reservationService, int $reservation_id): ResponseInterface
{
$output = [
'reservation_id' => $reservation_id,
'success' => false,
];
try {
$reservation = $reservationService->get($reservation_id);
$reservationService->approve($reservation);
$output['success'] = true;
} catch (ServiceAction\Read | ServiceAction\Update) {}
return $this->withJson($response, $output);
}
public function reject(ServerRequestInterface $request, ResponseInterface $response,
Service\Venta\Reservation $reservationService, int $reservation_id): ResponseInterface
{
$output = [
'reservation_id' => $reservation_id,
'success' => false,
];
try {
$reservation = $reservationService->get($reservation_id);
$reservationService->reject($reservation);
$output['success'] = true;
} catch (ServiceAction\Read | ServiceAction\Update) {}
return $this->withJson($response, $output);
}
}

View File

@ -7,6 +7,7 @@ enum Type: int
case ACTIVE = 1;
case PROMISED = 2;
case REJECTED = -1;
case CANCELLED = -2;
public function jsonSerialize(): array
{

View File

@ -134,11 +134,10 @@ class Reservation extends Common\Ideal\Repository
->joined("INNER JOIN ({$sub1}) er0 ON er0.id = er1.id");
$query = $this->connection->getQueryBuilder()
->select()
->from('reservations')
->joined("INNER JOIN ({$sub2}) er ON er.reservation_id = reservations.id")
->where('project_id = :project_id AND er.type = :state');
->select('a.*')
->from("{$this->getTable()} a")
->joined("INNER JOIN ({$sub2}) er ON er.reservation_id = a.id")
->where('a.project_id = :project_id AND er.type = :state');
return $this->fetchMany($query, ['project_id' => $project_id,
'state' => $state]);
}
@ -178,7 +177,10 @@ class Reservation extends Common\Ideal\Repository
public function fetchRejected(int $project_id): array
{
try {
return $this->fetchState($project_id, Model\Venta\Reservation\State\Type::REJECTED->value);
return [
...$this->fetchState($project_id, Model\Venta\Reservation\State\Type::REJECTED->value),
...$this->fetchState($project_id, Model\Venta\Reservation\State\Type::CANCELLED->value)
];
} catch (InvalidState $exception) {
throw new Common\Implement\Exception\EmptyResult('Select rejected reservations', $exception);
}

View File

@ -132,6 +132,9 @@ class Reservation extends Ideal\Service\API
} catch (ServiceAction\Read) {}
}
} catch (Implement\Exception\EmptyResult) {
if (!$this->reservationRepository->getConnection()->getPDO()->inTransaction()) {
$this->reservationRepository->getConnection()->getPDO()->beginTransaction();
}
$buyerData = [];
foreach ($data as $key => $value) {
if (!str_starts_with($key, 'buyer_')) {
@ -147,34 +150,38 @@ class Reservation extends Ideal\Service\API
$reservation = $this->reservationRepository->create($reservationData);
$reservation = $this->reservationRepository->save($reservation);
try {
$stateType = Model\Venta\Reservation\State\Type::ACTIVE;
$stateData = [
'reservation_id' => $reservation->id,
'date' => $data['date'],
'type' => $stateType->value,
];
$state = $this->stateRepository->create($stateData);
$this->stateRepository->save($state);
} catch (PDOException $exception) {
$this->logger->warning($exception->getMessage(), ['reservation_id' => $reservation->id, 'exception' => $exception->getTraceAsString()]);
$stateType = Model\Venta\Reservation\State\Type::INACTIVE;
$stateData = [
'reservation_id' => $reservation->id,
'date' => $data['date'],
'type' => $stateType->value,
];
$state = $this->stateRepository->create($stateData);
$this->stateRepository->save($state);
$units = array_combine($data['units'], $data['units_value']);
$this->addUnits($reservation, $units);
if (array_key_exists('broker_rut', $data) and !empty($data['broker_rut'])) {
$this->addBroker($reservation, $data['broker_rut']);
}
if (array_key_exists('promotions', $data)) {
$this->addPromotions($reservation, $data['promotions']);
}
if ($this->reservationRepository->getConnection()->getPDO()->inTransaction()) {
$this->reservationRepository->getConnection()->getPDO()->commit();
}
} catch (PDOException $exception) {
$this->logger->warning($exception->getMessage(), ['exception' => $exception->getTraceAsString()]);
if ($this->reservationRepository->getConnection()->getPDO()->inTransaction()) {
$this->reservationRepository->getConnection()->getPDO()->rollBack();
}
throw new ServiceAction\Create(__CLASS__, $exception);
}
}
$units = array_combine($data['units'], $data['units_value']);
$this->addUnits($reservation, $units);
if (array_key_exists('broker_rut', $data) and !empty($data['broker_rut'])) {
$this->addBroker($reservation, $data['broker_rut']);
}
if (array_key_exists('promotions', $data)) {
$this->addPromotions($reservation, $data['promotions']);
}
return $this->process($reservation);
}
public function edit(Define\Model $model, array $new_data): Model\Venta\Reservation
@ -195,6 +202,41 @@ class Reservation extends Ideal\Service\API
throw new ServiceAction\Delete(__CLASS__, $exception);
}
}
/**
* @param Model\Venta\Reservation $reservation
* @return void
* @throws ServiceAction\Update
*/
public function approve(Model\Venta\Reservation $reservation): void
{
try {
$stateData = [
'reservation_id' => $reservation->id,
'date' => new DateTimeImmutable(),
'type' => Model\Venta\Reservation\State\Type::ACTIVE->value,
];
$state = $this->stateRepository->create($stateData);
$this->stateRepository->save($state);
} catch (PDOException $exception) {
throw new ServiceAction\Update(__CLASS__, $exception);
}
}
public function reject(Model\Venta\Reservation $reservation): void
{
try {
$stateData = [
'reservation_id' => $reservation->id,
'date' => new DateTimeImmutable(),
'type' => Model\Venta\Reservation\State\Type::REJECTED->value,
];
$state = $this->stateRepository->create($stateData);
$this->stateRepository->save($state);
} catch (PDOException $exception) {
throw new ServiceAction\Update(__CLASS__, $exception);
}
}
protected function process(Define\Model $model): Model\Venta\Reservation
{
$model->addFactory('states', new Implement\Repository\Factory()