feature/grabar-factura #11

Merged
aldarien merged 14 commits from feature/grabar-factura into develop 2025-02-04 10:37:34 -03:00
14 changed files with 1410 additions and 1168 deletions
Showing only changes of commit a5572e7c6a - Show all commits

View File

@ -4,3 +4,6 @@ use Incoviba\Controller\API\Ventas\Facturas;
$app->group('/facturas', function($app) {
$app->post('/add[/]', [Facturas::class, 'add']);
});
$app->group('/facturas/{factura_id}', function($app) {
$app->post('/edit[/]', [Facturas::class, 'edit']);
});