From 84529082fa38f775dd71f13d2503c1b1cb9586f5 Mon Sep 17 00:00:00 2001
From: "chaitanya@vtiger.com" <chaitanya@vtiger.com>
Date: Thu, 30 May 2024 15:29:12 +0530
Subject: [PATCH] E_ALL cleanups in Services module

---
 modules/Products/models/Record.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/modules/Products/models/Record.php b/modules/Products/models/Record.php
index de6ebce35..8a3d5d128 100644
--- a/modules/Products/models/Record.php
+++ b/modules/Products/models/Record.php
@@ -184,8 +184,7 @@ class Products_Record_Model extends Vtiger_Record_Model {
 			$taxTotal = 0;
 
 			for($i=0; $i<$taxCount; $i++) {
-				$taxValue = isset($productTaxes[$i]['percentage']) ? $productTaxes[$i]['percentage'] : array();
-
+				$taxValue = isset($productTaxes[$i]['percentage']) && is_numeric($productTaxes[$i]['percentage']) ? $productTaxes[$i]['percentage'] : 0;
 				$taxAmount = $totalAfterDiscount * $taxValue / 100;
 				$taxTotal = $taxTotal + $taxAmount;
 
-- 
GitLab