From b7c034de13e029ab5a189b083096908af36b91f9 Mon Sep 17 00:00:00 2001 From: Joe Date: Thu, 20 Oct 2022 09:14:06 +0200 Subject: [PATCH] Typo on line 265. Fixed. --- sales/customer_payments.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sales/customer_payments.php b/sales/customer_payments.php index 1e1b5562..be442b1c 100644 --- a/sales/customer_payments.php +++ b/sales/customer_payments.php @@ -262,7 +262,7 @@ function read_customer_data() $myrow = get_customer_habit($_POST['customer_id']); $_POST['HoldAccount'] = !$myrow ? false : $myrow["dissallow_invoices"]; - $_POST['pymt_discount'] = !$myrow ? 0 : $myrow["pymt_descount"]; + $_POST['pymt_discount'] = !$myrow ? 0 : $myrow["pymt_discount"]; // To support Edit feature // If page is called first time and New entry fetch the nex reference number if (!$_SESSION['alloc']->trans_no && !isset($_POST['charge'])) -- 2.30.2