style: Pint 포맷팅 적용
This commit is contained in:
@@ -7,7 +7,6 @@
|
||||
use App\Models\Barobill\BankTransactionOverride;
|
||||
use App\Models\Barobill\CardTransaction as BarobillCardTransaction;
|
||||
use App\Models\Finance\BankAccount;
|
||||
use App\Models\Finance\FundSchedule;
|
||||
use App\Services\BankAccountService;
|
||||
use App\Services\FundScheduleService;
|
||||
use Illuminate\Contracts\View\View;
|
||||
@@ -53,7 +52,7 @@ public function index(): View
|
||||
|
||||
// 오버라이드 데이터 병합 (수정된 적요/내용)
|
||||
if ($recentTransactions->isNotEmpty()) {
|
||||
$uniqueKeys = $recentTransactions->map(fn($t) => $t->unique_key)->toArray();
|
||||
$uniqueKeys = $recentTransactions->map(fn ($t) => $t->unique_key)->toArray();
|
||||
$overrides = BankTransactionOverride::getByUniqueKeys($tenantId, $uniqueKeys);
|
||||
|
||||
$recentTransactions = $recentTransactions->map(function ($transaction) use ($overrides) {
|
||||
@@ -71,6 +70,7 @@ public function index(): View
|
||||
} else {
|
||||
$transaction->is_overridden = false;
|
||||
}
|
||||
|
||||
return $transaction;
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user