add maquinas tareas

This commit is contained in:
amazuecos
2024-12-24 12:51:44 +01:00
parent 6790c21675
commit 60706ecfc2
15 changed files with 266 additions and 46 deletions

View File

@ -882,6 +882,7 @@ $routes->group('produccion', ['namespace' => 'App\Controllers\Produccion'], func
$routes->group('ordentrabajo', ['namespace' => 'App\Controllers\Produccion'], function ($routes) {
$routes->get('', 'Ordentrabajo::index', ['as' => 'viewOrdenTrabajoIndex']);
$routes->get('edit/(:num)', 'Ordentrabajo::edit/$1', ['as' => 'viewOrdenTrabajoEdit']);
$routes->delete('reset/tareas/(:num)', 'Ordentrabajo::reset_tareas/$1');
$routes->get('summary/(:num)', 'Ordentrabajo::get_orden_trabajo_summary/$1', ['as' => 'getOrdenTrabajoSumary']);
$routes->get('datatable', 'Ordentrabajo::datatable', ['as' => 'datatableOrdenTrabajo']);
});