feat:계좌 입출금내역 조회 페이지 추가

- EaccountController.php: 바로빌 BANKACCOUNT.asmx SOAP API 연동
  - GetBankAccountEx: 등록된 계좌 목록 조회
  - GetPeriodBankAccountTransLog: 계좌 입출금내역 조회
- index.blade.php: React 기반 UI (전자세금계산서와 동일 구조)
  - 테넌트 정보 카드
  - 통계 카드 (입금/출금/계좌수/거래건수)
  - 계좌 선택 버튼
  - 기간 조회 필터 (이번달/지난달 버튼)
  - 입출금 내역 테이블 (스크롤)
- 라우트 추가: /barobill/eaccount
- 메뉴 시더 업데이트

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
pro
2026-01-23 10:13:28 +09:00
parent 33fc51e1ab
commit 71080389c8
4 changed files with 1073 additions and 3 deletions

View File

@@ -584,11 +584,11 @@ protected function seedMainMenus(): void
]);
$this->createMenu([
'parent_id' => $barobillGroup->id,
'name' => '계좌조회',
'url' => '/barobill/bank-account',
'name' => '계좌 입출금내역',
'url' => '/barobill/eaccount',
'icon' => 'credit-card',
'sort_order' => $barobillSubOrder++,
'options' => ['route_name' => 'barobill.bank-account.index', 'section' => 'main'],
'options' => ['route_name' => 'barobill.eaccount.index', 'section' => 'main'],
]);
$this->createMenu([
'parent_id' => $barobillGroup->id,