홍보확인서 추가
This commit is contained in:
@@ -57,7 +57,7 @@ $routes->group('board', ['namespace' => 'App\Controllers\Board'], function ($rou
|
||||
*/
|
||||
$routes->group('', ['namespace' => 'App\Controllers\V2'], static function ($routes) {
|
||||
/**
|
||||
* 일반확인매물관리
|
||||
* 확인매물현황
|
||||
*/
|
||||
$routes->group('m701', static function ($routes) {
|
||||
$routes->get('m701a/lists', 'M701::lists');
|
||||
@@ -68,7 +68,48 @@ $routes->group('', ['namespace' => 'App\Controllers\V2'], static function ($rout
|
||||
*/
|
||||
$routes->get('m701a/getResultList', 'M701::getResultList');
|
||||
$routes->get('m701a/excel', 'M701::excel');
|
||||
$routes->post('m701a/chgArticleStatus', 'M701::chgArticleStatus'); // 상태정보변경
|
||||
|
||||
$routes->post('m701a/saveMemo', 'M701::saveMemo'); // 메모저장
|
||||
|
||||
});
|
||||
|
||||
/**
|
||||
* 배정매물현황
|
||||
*/
|
||||
$routes->group('m702', static function ($routes) {
|
||||
$routes->get('m702a/lists', 'M702::lists');
|
||||
$routes->get('m702a/detail/(:num)', 'M702::detail/$1');
|
||||
|
||||
/**
|
||||
* 배정매물현황 - API
|
||||
*/
|
||||
$routes->get('m702a/getResultList', 'M702::getResultList');
|
||||
$routes->get('m702a/excel', 'M702::excel');
|
||||
$routes->post('m702a/updateAssign', 'M702::updateAssign'); // 배정변경
|
||||
// 서류누락
|
||||
});
|
||||
|
||||
|
||||
/**
|
||||
* 홍보확인서현황
|
||||
*/
|
||||
$routes->group('m703', static function ($routes) {
|
||||
$routes->get('m703a/lists', 'M703::lists');
|
||||
$routes->get('m703a/detail/(:num)', 'M703::detail/$1');
|
||||
|
||||
/**
|
||||
* 홍보확인서현황 - API
|
||||
*/
|
||||
$routes->get('m703a/getResultList', 'M703::getResultList');
|
||||
$routes->post('m703a/saveBunyang', 'M703::saveBunyang'); // 현장확인저장
|
||||
$routes->post('m703a/saveOthers', 'M703::saveOthers'); // 홍보확인서아님
|
||||
$routes->post('m703a/saveDuplicate', 'M703::saveDuplicate'); // 중복
|
||||
$routes->post('m703a/saveBubun', 'M703::saveBubun'); // 부분수신
|
||||
$routes->post('m703a/saveFaxImgs', 'M703::saveFaxImgs'); // 매물정보변경
|
||||
$routes->post('m703a/getNextFaxImgs', 'M703::getNextFaxImgs'); // 다음매물정보조회
|
||||
$routes->post('m703a/saveRequestMessage', 'M703::saveRequestMessage'); // 중개사요청사항저장
|
||||
$routes->post('m703a/saveResult', 'M703::saveResult'); // 결과저장
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user