From d6cc7564acc9ad992384561ecd6db441de223a7d Mon Sep 17 00:00:00 2001 From: radhika587 Date: Fri, 10 Mar 2023 12:56:16 +0530 Subject: [PATCH] fix payment note issue --- app/Models/Payment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Payment.php b/app/Models/Payment.php index 83a17441d..9968904d4 100644 --- a/app/Models/Payment.php +++ b/app/Models/Payment.php @@ -435,7 +435,7 @@ public function getExtraFields() '{PAYMENT_DATE}' => $this->formattedPaymentDate, '{PAYMENT_MODE}' => $this->paymentMethod ? $this->paymentMethod->name : null, '{PAYMENT_NUMBER}' => $this->payment_number, - '{PAYMENT_AMOUNT}' => $this->reference_number, + '{PAYMENT_AMOUNT}' => format_money_pdf($this->amount, $this->customer->currency), ]; }