feat: [barobill] Fake SOAP 서비스 + 경동 단가 테이블 모델/시더

- BarobillFakeSoapService: SOAP 호출 없이 샘플 데이터 반환 (46개 메서드)
- AppServiceProvider: BAROBILL_FAKE_MODE 시 자동 바인딩 전환
- services.php: fake_mode 설정 추가
- KdPriceTable 모델 + KdPriceTableSeeder (5130 레거시 마이그레이션)
This commit is contained in:
김보곤
2026-03-22 22:04:14 +09:00
parent ac94602cf1
commit 7726b81933
5 changed files with 1448 additions and 0 deletions

View File

@@ -52,6 +52,14 @@ public function register(): void
DB::enableQueryLog();
}
}
// 바로빌 Fake 모드: SOAP 호출 없이 샘플 데이터 반환
if (config('services.barobill.fake_mode')) {
$this->app->bind(
\App\Services\Barobill\BarobillSoapService::class,
\App\Services\Barobill\BarobillFakeSoapService::class
);
}
}
/**