feat: [barobill] 바로빌 연동 관리 API 7개 엔드포인트 구현
- SOAP 기반 BarobillSoapService 생성 (MNG 코드 포팅) - BarobillMember, BarobillConfig 모델 생성 - BarobillController 7개 메서드 (login, signup, status, URL 조회) - FormRequest 검증 클래스 3개 생성 - 라우트 등록 (POST /barobill/login, /signup, GET /status 등) - i18n 메시지 키 추가 (ko/en) - config/services.php에 barobill 설정 추가
This commit is contained in:
@@ -117,4 +117,11 @@
|
||||
'cancelled' => 'Tax invoice has been cancelled.',
|
||||
'bulk_issued' => 'Tax invoices have been issued in bulk.',
|
||||
],
|
||||
|
||||
// Barobill Integration
|
||||
'barobill' => [
|
||||
'login_success' => 'Barobill login registered successfully.',
|
||||
'signup_success' => 'Barobill signup completed successfully.',
|
||||
'connection_success' => 'Barobill connection test succeeded.',
|
||||
],
|
||||
];
|
||||
|
||||
@@ -291,6 +291,11 @@
|
||||
'no_base_salary' => '기본급이 설정되지 않았습니다.',
|
||||
],
|
||||
|
||||
// 바로빌 연동 관련
|
||||
'barobill' => [
|
||||
'member_not_found' => '바로빌 회원 정보가 등록되어 있지 않습니다.',
|
||||
],
|
||||
|
||||
// 세금계산서 관련
|
||||
'tax_invoice' => [
|
||||
'not_found' => '세금계산서 정보를 찾을 수 없습니다.',
|
||||
|
||||
@@ -566,6 +566,13 @@
|
||||
'downloaded' => '문서가 다운로드되었습니다.',
|
||||
],
|
||||
|
||||
// 바로빌 연동
|
||||
'barobill' => [
|
||||
'login_success' => '바로빌 로그인 정보가 등록되었습니다.',
|
||||
'signup_success' => '바로빌 회원가입이 완료되었습니다.',
|
||||
'connection_success' => '바로빌 연동 테스트 성공',
|
||||
],
|
||||
|
||||
// CEO 대시보드 부가세 현황
|
||||
'vat' => [
|
||||
'sales_tax' => '매출세액',
|
||||
|
||||
Reference in New Issue
Block a user