listado de facturas terminado. trabajando en añadir

This commit is contained in:
jaimejimenezortega
2024-06-27 20:16:30 +02:00
parent fcaacfbb5d
commit ca901b14f3
9 changed files with 496 additions and 53 deletions

View File

@ -648,6 +648,11 @@ $routes->group('albaranes', ['namespace' => 'App\Controllers\Pedidos'], function
$routes->resource('albaranes', ['namespace' => 'App\Controllers\Pedidos', 'controller' => 'Albaran', 'except' => 'show,new,create,update']);
$routes->group('facturas', ['namespace' => 'App\Controllers\Facturacion'], function ($routes) {
$routes->get('list', 'Facturas::list', ['as' => 'facturasList']);
$routes->post('datatable', 'Facturas::datatable', ['as' => 'dataTableOfFacturas']);
});
$routes->group(
'printpresupuestos',