feat: 리포트 첫 진입 자동조회 + 글자 확대(탭·대메뉴 포함, 버튼 고정)

- 수급 계획·반품/파기 현황·기간별 봉투 수불 현황: 첫 진입에도 기본 조건 자동 조회
- 글자 확대 시 탭 텍스트·상단 대메뉴(font-size)도 확대, A−/A+ 버튼은 위치·크기 고정

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
taekyoungc
2026-06-15 21:24:58 +09:00
parent 24ac3f169e
commit 9d7d1e8a94
5 changed files with 22 additions and 8 deletions

View File

@@ -3302,7 +3302,8 @@ SQL);
public function flow(): string
{
$lgIdx = $this->lgIdx();
$queried = $this->request->getGet('search') === '1'
// 첫 진입(search 파라미터 없음)에도 기본 조건(이번 달·전체)으로 자동 조회해 바로 표시한다.
$queried = ($this->request->getGet('search') ?? '1') === '1'
|| $this->request->getGet('start_date') !== null
|| $this->request->getGet('end_date') !== null;