feat: 지자체 전환 현재 선택 표시 + 전화주문 결제구분 기본 가상계좌

- 지자체 전환 화면에서 현재 작업 지자체 라디오 체크 + '현재 선택' 배지
- 전화 주문 접수 결제구분 기본값을 가상계좌로 설정

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
taekyoungc
2026-06-15 16:56:49 +09:00
parent 71534fb198
commit 24ac3f169e
3 changed files with 13 additions and 3 deletions

View File

@@ -22,10 +22,13 @@ class SelectLocalGovernment extends BaseController
->orderBy('lg_name', 'ASC')
->findAll();
$currentLgIdx = (int) (session()->get('admin_selected_lg_idx') ?? 0);
return view('admin/layout', [
'title' => '지자체 선택',
'content' => view('admin/select_local_government/index', [
'list' => $list,
'list' => $list,
'currentLgIdx' => $currentLgIdx,
]),
]);
}