수량관리 추가
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled

This commit is contained in:
yangsh
2026-01-19 13:15:57 +09:00
parent 8bea5766a3
commit ab3560487a
4 changed files with 1299 additions and 0 deletions

View File

@@ -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'); // 데이터 저장
});
});