- config/services.php에 barobill 설정 등록 (운영/테스트 모드 분기 정상화) - BarobillSetting 모델에 BelongsToTenant 적용 및 use_* 필드 casts 추가 - BarobillService API URL을 baroservice.com(SOAP)으로 수정 - BarobillService callApi 메서드 경로 하드코딩 제거 (서비스별 분기) - BarobillService 예외 이중 래핑 문제 수정 - BarobillController URL 메서드 중복 코드 제거 - 누락 모델 16개 생성 (MNG 패턴 준수, BelongsToTenant 적용) - 바로빌 전 테이블 options JSON 컬럼 추가 마이그레이션
54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Barobill;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class BarobillMonthlySummary extends Model
|
|
{
|
|
protected $table = 'barobill_monthly_summaries';
|
|
|
|
protected $fillable = [
|
|
'member_id',
|
|
'billing_month',
|
|
'bank_account_fee',
|
|
'card_fee',
|
|
'hometax_fee',
|
|
'subscription_total',
|
|
'tax_invoice_count',
|
|
'tax_invoice_amount',
|
|
'usage_total',
|
|
'grand_total',
|
|
];
|
|
|
|
protected $casts = [
|
|
'bank_account_fee' => 'integer',
|
|
'card_fee' => 'integer',
|
|
'hometax_fee' => 'integer',
|
|
'subscription_total' => 'integer',
|
|
'tax_invoice_count' => 'integer',
|
|
'tax_invoice_amount' => 'integer',
|
|
'usage_total' => 'integer',
|
|
'grand_total' => 'integer',
|
|
];
|
|
|
|
// =========================================================================
|
|
// 관계 정의
|
|
// =========================================================================
|
|
|
|
public function member(): BelongsTo
|
|
{
|
|
return $this->belongsTo(BarobillMember::class, 'member_id');
|
|
}
|
|
|
|
// =========================================================================
|
|
// 스코프
|
|
// =========================================================================
|
|
|
|
public function scopeOfMonth($query, string $billingMonth)
|
|
{
|
|
return $query->where('billing_month', $billingMonth);
|
|
}
|
|
}
|