This commit is contained in:
@@ -93,6 +93,26 @@ $routes->group('', ['namespace' => 'App\Controllers\Article'], static function (
|
||||
$routes->get('excel', 'Record::excel');
|
||||
});
|
||||
|
||||
/**
|
||||
* 처리가능 수량관리
|
||||
*/
|
||||
$routes->group('article/processible', static function ($routes) {
|
||||
$routes->get('datecount', 'Processible::datecount');
|
||||
|
||||
// 일자별 처리가능 수량
|
||||
$routes->get('getList1', 'Processible::getList1');
|
||||
$routes->get('excel', 'Processible::excel');
|
||||
|
||||
// 지역별 수량
|
||||
$routes->get('getList2', 'Processible::getList2');
|
||||
$routes->post('saveArea', 'Processible::saveArea'); // 데이터 저장
|
||||
|
||||
// 기본 수량
|
||||
$routes->get('getList3', 'Processible::getList3');
|
||||
$routes->post('saveCount', 'Processible::saveCount'); // 데이터 저장
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user