96 lines
3.5 KiB
PHP
96 lines
3.5 KiB
PHP
<?php
|
|
namespace Contabilidad\Common\Controller;
|
|
|
|
use Carbon\Carbon;
|
|
use Psr\Http\Message\ServerRequestInterface as Request;
|
|
use Psr\Http\Message\ResponseInterface as Response;
|
|
use ProVM\Common\Define\Controller\Json;
|
|
use ProVM\Common\Factory\Model as Factory;
|
|
use Contabilidad\Common\Service\TiposCambios as Service;
|
|
use Contabilidad\TipoCambio;
|
|
|
|
class TiposCambios {
|
|
use Json;
|
|
|
|
public function __invoke(Request $request, Response $response, Factory $factory): Response {
|
|
$tipos = $factory->find(TipoCambio::class)->array();
|
|
if ($tipos) {
|
|
usort($tipos, function($a, $b) {
|
|
return strcmp($a['fecha'], $b['fecha']);
|
|
});
|
|
}
|
|
$output = [
|
|
'tipos' => $tipos
|
|
];
|
|
return $this->withJson($response, $output);
|
|
}
|
|
public function show(Request $request, Response $response, Factory $factory, $tipo_id): Response {
|
|
$tipo = $factory->find(TipoCambio::class)->one($tipo_id);
|
|
$output = [
|
|
'input' => $tipo_id,
|
|
'tipo' => $tipo?->toArray()
|
|
];
|
|
return $this->withJson($response, $output);
|
|
}
|
|
public function add(Request $request, Response $response, Factory $factory): Response {
|
|
$input = json_decode($request->getBody());
|
|
$results = [];
|
|
if (is_array($input)) {
|
|
foreach ($input as $in) {
|
|
$tipo = TipoCambio::add($factory, $in);
|
|
$results []= ['tipo' => $tipo?->toArray(), 'agregado' => $tipo?->save()];
|
|
}
|
|
} else {
|
|
$tipo = TipoCambio::add($factory, $input);
|
|
$results []= ['tipo' => $tipo?->toArray(), 'agregado' => $tipo?->save()];
|
|
}
|
|
$output = [
|
|
'input' => $input,
|
|
'tipos' => $results
|
|
];
|
|
return $this->withJson($response, $output);
|
|
}
|
|
public function edit(Request $request, Response $response, Factory $factory, $tipo_id): Response {
|
|
$tipo = $factory->find(TipoCambio::class)->one($tipo_id);
|
|
$output = [
|
|
'input' => $tipo_id,
|
|
'old' => $tipo->toArray()
|
|
];
|
|
$input = json_decode($request->getBody());
|
|
$tipo->edit($input);
|
|
$output['tipo'] = $tipo->toArray();
|
|
return $this->withJson($response, $output);
|
|
}
|
|
public function delete(Request $request, Response $response, Factory $factory, $tipo_id): Response {
|
|
$tipo = $factory->find(TipoCambio::class)->one($tipo_id);
|
|
$output = [
|
|
'input' => $tipo_id,
|
|
'tipo' => $tipo->toArray(),
|
|
'eliminado' => $tipo->delete()
|
|
];
|
|
return $this->withJson($response, $output);
|
|
}
|
|
public function obtain(Request $request, Response $response, Factory $factory, Service $service): Response {
|
|
$post = $request->getParsedBody();
|
|
$valor = $service->get($post['fecha'], $post['moneda_id']);
|
|
if ($valor === null) {
|
|
return $this->withJson($response, ['input' => $post, 'tipo' => null, 'error' => 'No se encontró valor']);
|
|
}
|
|
$data = [
|
|
'fecha' => $post['fecha'],
|
|
'desde_id' => $post['moneda_id'],
|
|
'hasta_id' => 1,
|
|
'valor' => $valor
|
|
];
|
|
$tipo = TipoCambio::add($factory, $data);
|
|
if ($tipo !== false and $tipo->is_new()) {
|
|
$tipo->save();
|
|
}
|
|
$output = [
|
|
'input' => $post,
|
|
'tipo' => $tipo?->toArray()
|
|
];
|
|
return $this->withJson($response, $output);
|
|
}
|
|
}
|