From c57e768b8775a32b882899ddd4c2d7f140a0451f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EB=B3=91=EC=B2=A0?= Date: Thu, 5 Mar 2026 22:12:46 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[loan]=20=EC=83=81=ED=92=88=EA=B6=8C=20?= =?UTF-8?q?=EC=A0=91=EB=8C=80=EB=B9=84=20=EC=97=B0=EB=8F=99=20=EC=8B=9C=20?= =?UTF-8?q?receipt=5Fno=EC=97=90=20=EC=8B=9C=EB=A6=AC=EC=96=BC=EB=B2=88?= =?UTF-8?q?=ED=98=B8=20=EB=A7=A4=ED=95=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- app/Services/LoanService.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Services/LoanService.php b/app/Services/LoanService.php index f30c666..f04739f 100644 --- a/app/Services/LoanService.php +++ b/app/Services/LoanService.php @@ -303,6 +303,7 @@ private function syncGiftCertificateExpense(Loan $loan): void 'expense_date' => $loan->settlement_date ?? $loan->loan_date, 'amount' => $loan->amount, 'description' => ($metadata['cert_name'] ?? '상품권') . ' 접대비 전환', + 'receipt_no' => $metadata['serial_number'] ?? null, 'vendor_name' => $metadata['vendor_name'] ?? null, 'vendor_id' => ! empty($metadata['vendor_id']) ? (int) $metadata['vendor_id'] : null, 'payment_method' => ExpenseAccount::PAYMENT_CASH,