* SPDX-License-Identifier: AGPL-3.0-only ************************************/ global $theme; $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; $currencyid = $_REQUEST['currencyid']; $products_list = $_REQUEST['productsList']; $product_ids = explode("::", $products_list); $InventoryUtils = InventoryUtils::getInstance(); // crmv@42024 $price_list = array(); if (count($product_ids) > 0) { $prices_for_products = $InventoryUtils->getPricesForProducts($currencyid, $product_ids); $prices_for_services = $InventoryUtils->getPricesForProducts($currencyid, $product_ids, 'Services'); } // To get the Price Values in the same order as the Products for ($i=0;$i