From d5910f2e751eb7d553d3c2c26c8cc4d0d5e381ea Mon Sep 17 00:00:00 2001 From: odiea Date: Sun, 27 Apr 2025 01:31:46 -0600 Subject: [PATCH] Fix ajax cashup total (#4238) --- app/Controllers/Cashups.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controllers/Cashups.php b/app/Controllers/Cashups.php index 24a264fd3..177973e93 100644 --- a/app/Controllers/Cashups.php +++ b/app/Controllers/Cashups.php @@ -286,7 +286,7 @@ class Cashups extends Secure_Controller * @return void * @noinspection PhpUnused */ - public function ajax_cashup_total(): void + public function postAjax_cashup_total(): void { $open_amount_cash = parse_decimals($this->request->getPost('open_amount_cash')); $transfer_amount_cash = parse_decimals($this->request->getPost('transfer_amount_cash'));