FIX: Editar cuotas
This commit is contained in:
@ -38,6 +38,9 @@ $app->group('/venta/{venta_id}', function($app) {
|
||||
$app->group('/cuotas', function($app) {
|
||||
$app->post('/add[/]', [Ventas\Abonos\Cuotas::class, 'add']);
|
||||
});
|
||||
$app->group('/cuota/{cuota_id:[0-9]+}', function($app) {
|
||||
$app->post('/edit[/]', [Ventas\Abonos\Cuotas::class, 'edit']);
|
||||
});
|
||||
$app->post('/add[/]', [Ventas\Escrituras::class, 'add']);
|
||||
});
|
||||
$app->group('/credito', function($app) {
|
||||
|
Reference in New Issue
Block a user