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

@@ -2560,7 +2560,8 @@ class SalesReport extends BaseController
return redirect()->to(work_area_home_url())->with('error', '지자체를 선택해 주세요.');
}
$queried = $this->request->getGet('search') === '1';
// 첫 진입(search 파라미터 없음)에도 기본 조건(이번 달·불출)으로 자동 조회해 바로 표시한다.
$queried = ($this->request->getGet('search') ?? '1') === '1';
$startDate = (string) ($this->request->getGet('start_date') ?? date('Y-m-01'));
$endDate = (string) ($this->request->getGet('end_date') ?? date('Y-m-d'));
if ($startDate > $endDate) {
@@ -3189,7 +3190,8 @@ class SalesReport extends BaseController
$salesScope = 'all';
}
$queried = $this->request->getGet('search') === '1';
// 첫 진입(search 파라미터 없음)에도 기본 조건(오늘·40일·ALL)으로 자동 조회해 바로 표시한다.
$queried = ($this->request->getGet('search') ?? '1') === '1';
$built = (new \App\Libraries\BagSupplyPlanBuilder())->build(
$lgIdx,
$refDate,

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;