feat: [barobill] Fake SOAP 서비스 + 경동 단가 테이블 모델/시더
- BarobillFakeSoapService: SOAP 호출 없이 샘플 데이터 반환 (46개 메서드) - AppServiceProvider: BAROBILL_FAKE_MODE 시 자동 바인딩 전환 - services.php: fake_mode 설정 추가 - KdPriceTable 모델 + KdPriceTableSeeder (5130 레거시 마이그레이션)
This commit is contained in:
@@ -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
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user