Rutas y controladores para editar bono
This commit is contained in:
@ -29,7 +29,9 @@ $app->group('/venta/{venta_id:[0-9]+}', function($app) {
|
|||||||
$app->get('[/]', [Ventas::class, 'pie']);
|
$app->get('[/]', [Ventas::class, 'pie']);
|
||||||
});
|
});
|
||||||
$app->group('/bono_pie', function($app) {
|
$app->group('/bono_pie', function($app) {
|
||||||
|
$app->get('/edit[/]', [Ventas\Bonos::class, 'edit']);
|
||||||
$app->get('/add[/]', [Ventas\Bonos::class, 'add']);
|
$app->get('/add[/]', [Ventas\Bonos::class, 'add']);
|
||||||
|
$app->get('[/]', [Ventas\Bonos::class, 'edit']);
|
||||||
});
|
});
|
||||||
$app->group('/escritura', function($app) {
|
$app->group('/escritura', function($app) {
|
||||||
$app->group('/cuotas', function($app) {
|
$app->group('/cuotas', function($app) {
|
||||||
|
@ -32,6 +32,7 @@ $app->group('/venta/{venta_id}', function($app) {
|
|||||||
$app->get('[/]', [Ventas::class, 'comentarios']);
|
$app->get('[/]', [Ventas::class, 'comentarios']);
|
||||||
});
|
});
|
||||||
$app->group('/bono_pie', function($app) {
|
$app->group('/bono_pie', function($app) {
|
||||||
|
$app->post('/edit[/]', [Ventas\Bonos::class, 'edit']);
|
||||||
$app->post('/add[/]', [Ventas\Bonos::class, 'add']);
|
$app->post('/add[/]', [Ventas\Bonos::class, 'add']);
|
||||||
});
|
});
|
||||||
$app->group('/escritura', function($app) {
|
$app->group('/escritura', function($app) {
|
||||||
|
@ -2,5 +2,7 @@
|
|||||||
use Incoviba\Controller\Ventas\Bonos;
|
use Incoviba\Controller\Ventas\Bonos;
|
||||||
|
|
||||||
$app->group('/bono_pie', function($app) {
|
$app->group('/bono_pie', function($app) {
|
||||||
|
$app->get('/edit[/]', [Bonos::class, 'edit']);
|
||||||
$app->get('/add[/]', [Bonos::class, 'add']);
|
$app->get('/add[/]', [Bonos::class, 'add']);
|
||||||
|
$app->get('[/]', [Bonos::class, 'edit']);
|
||||||
});
|
});
|
||||||
|
@ -7,8 +7,9 @@ use Psr\Http\Message\ServerRequestInterface;
|
|||||||
use Incoviba\Common\Implement\Exception\EmptyResult;
|
use Incoviba\Common\Implement\Exception\EmptyResult;
|
||||||
use Incoviba\Common\Ideal\Controller;
|
use Incoviba\Common\Ideal\Controller;
|
||||||
use Incoviba\Controller\API\withJson;
|
use Incoviba\Controller\API\withJson;
|
||||||
use Incoviba\Service;
|
use Incoviba\Exception\ServiceAction\Update;
|
||||||
use Incoviba\Repository;
|
use Incoviba\Repository;
|
||||||
|
use Incoviba\Service;
|
||||||
|
|
||||||
class Bonos extends Controller
|
class Bonos extends Controller
|
||||||
{
|
{
|
||||||
@ -39,4 +40,25 @@ class Bonos extends Controller
|
|||||||
} catch (EmptyResult) {}
|
} catch (EmptyResult) {}
|
||||||
return $this->withJson($response, $output);
|
return $this->withJson($response, $output);
|
||||||
}
|
}
|
||||||
|
public function edit(ServerRequestInterface $request, ResponseInterface $response, Service\Venta $ventaService,
|
||||||
|
Service\Venta\BonoPie $bonoPieService, int $venta_id): ResponseInterface
|
||||||
|
{
|
||||||
|
$input = $request->getParsedBody();
|
||||||
|
$output = [
|
||||||
|
'venta_id' => $venta_id,
|
||||||
|
'input' => $input,
|
||||||
|
'bono' => null,
|
||||||
|
'success' => false,
|
||||||
|
];
|
||||||
|
try {
|
||||||
|
try {
|
||||||
|
$venta = $ventaService->getById($venta_id);
|
||||||
|
} catch (EmptyResult $exception) {
|
||||||
|
throw new Update(__CLASS__, $exception);
|
||||||
|
}
|
||||||
|
$output['bono'] = $bonoPieService->edit($venta->formaPago()->bonoPie, $input);
|
||||||
|
$output['success'] = true;
|
||||||
|
} catch (Update) {}
|
||||||
|
return $this->withJson($response, $output);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,14 +4,23 @@ namespace Incoviba\Controller\Ventas;
|
|||||||
use Psr\Http\Message\ResponseInterface;
|
use Psr\Http\Message\ResponseInterface;
|
||||||
use Psr\Http\Message\ServerRequestInterface;
|
use Psr\Http\Message\ServerRequestInterface;
|
||||||
use Incoviba\Common\Alias\View;
|
use Incoviba\Common\Alias\View;
|
||||||
use Incoviba\Repository;
|
|
||||||
use Incoviba\Service;
|
use Incoviba\Service;
|
||||||
|
|
||||||
class Bonos
|
class Bonos
|
||||||
{
|
{
|
||||||
|
public function show(ServerRequestInterface $request, ResponseInterface $response, View $view, Service\Venta $ventaService, int $venta_id): ResponseInterface
|
||||||
|
{
|
||||||
|
$venta = $ventaService->getById($venta_id);
|
||||||
|
return $view->render($response, 'ventas.pies.bonos.show', compact('venta'));
|
||||||
|
}
|
||||||
public function add(ServerRequestInterface $request, ResponseInterface $response, View $view, Service\Venta $ventaService, int $venta_id): ResponseInterface
|
public function add(ServerRequestInterface $request, ResponseInterface $response, View $view, Service\Venta $ventaService, int $venta_id): ResponseInterface
|
||||||
{
|
{
|
||||||
$venta = $ventaService->getById($venta_id);
|
$venta = $ventaService->getById($venta_id);
|
||||||
return $view->render($response, 'ventas.pies.bonos.add', compact('venta'));
|
return $view->render($response, 'ventas.pies.bonos.add', compact('venta'));
|
||||||
}
|
}
|
||||||
|
public function edit(ServerRequestInterface $request, ResponseInterface $response, View $view, Service\Venta $ventaService, int $venta_id): ResponseInterface
|
||||||
|
{
|
||||||
|
$venta = $ventaService->getById($venta_id);
|
||||||
|
return $view->render($response, 'ventas.pies.bonos.edit', compact('venta'));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user