Beispiel #1
0
    public static function getPayment(&$ref, &$OPCloader, &$num, $ajax = false, $isexpress = false)
    {
        if ($isexpress) {
            $reta = array();
            $reta['html'] = '<input type="hidden" name="virtuemart_paymentmethod_id" value="' . $ref->cart->virtuemart_paymentmethod_id . '" />';
            $reta['extra'] = '';
            return $reta;
        }
        include JPATH_ROOT . DS . 'components' . DS . 'com_onepage' . DS . 'config' . DS . 'onepage.cfg.php';
        $payment_not_found_text = '';
        $payments_payment_rates = array();
        if (!class_exists('OPCrenderer')) {
            require JPATH_SITE . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'renderer.php';
        }
        $renderer = OPCrenderer::getInstance();
        if (!$renderer->checkPaymentMethodsConfigured()) {
            if (method_exists($renderer, 'assignRef')) {
                $renderer->assignRef('paymentplugins_payments', $payments_payment_rates);
                $renderer->assignRef('found_payment_method', $found_payment_method);
            }
        }
        $p = JRequest::getVar('payment_method_id', $payment_default);
        if (empty($p)) {
            $selectedPayment = empty($ref->cart->virtuemart_paymentmethod_id) ? 0 : $ref->cart->virtuemart_paymentmethod_id;
        } else {
            $selectedPayment = $p;
        }
        // set missing fields for klarna
        OPCloader::prepareBT($ref->cart);
        $dpps = array();
        $shipping = JRequest::getVar('shipping_rate_id', '');
        //if ($ajax)
        if (!empty($shipping)) {
            if (!empty($disable_payment_per_shipping)) {
                $session = JFactory::getSession();
                $dpps = $session->get('dpps', null);
                if (empty($dpps)) {
                    $OPCloader->getShipping($ref, $ref->cart, true);
                }
                $dpps = $session->get('dpps', null);
                if (!empty($dpps)) {
                }
            }
        }
        //
        if (!empty($shipping)) {
            if (!empty($shipping)) {
                $ref->cart->virtuemart_shipmentmethod_id = $shipping;
            }
            $vm2015 = false;
            $ref->cart->prices = $ref->cart->pricesUnformatted = OPCloader::getCheckoutPrices($ref->cart, false, $vm2015, 'opc');
        }
        $paymentplugins_payments = array();
        if ($p === 'none') {
            $p = 0;
        }
        if ($payment_default === 'none') {
            $paymentplugins = array();
            $psel = '<input onclick="javascript: Onepage.runPay(\'\',\'\',op_textinclship, op_currency, 0)" type="radio" name="virtuemart_paymentmethod_id" id="payment_id_0"   value="0" not_a_valid_payment="not_a_valid_payment" ';
            if (empty($p) || $p === 'none') {
                $psel .= ' selected="selected" ';
                $payment_default = 0;
            }
            $psel .= ' />
<label for="payment_id_0"><span class="vmpayment"><span class="vmpayment_name">-' . OPCLang::_('COM_VIRTUEMART_CART_EDIT_PAYMENT') . '- </span></span></label>';
            $paymentplugins[] = $psel;
        }
        if (!class_exists('vmPSPlugin')) {
            require JPATH_VM_PLUGINS . DS . 'vmpsplugin.php';
        }
        JPluginHelper::importPlugin('vmpayment');
        $dispatcher = JDispatcher::getInstance();
        require_once JPATH_SITE . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'ajaxhelper.php';
        $bhelper = new basketHelper();
        //$bhelper->createDefaultAddress($ref, $ref->cart);
        //old: 2.0.208 and prior: $returnValues = $dispatcher->trigger('plgVmDisplayListFEPayment', array($ref->cart, $selectedPayment, &$paymentplugins_payments));
        //plgVmDisplayListFEPaymentOPCNocache
        $returnValues = $dispatcher->trigger('plgVmDisplayListFEPaymentOPCNocache', array(&$ref->cart, $selectedPayment, &$paymentplugins_payments));
        if (empty($returnValues)) {
            $returnValues = $dispatcher->trigger('plgVmDisplayListFEPayment', array($ref->cart, $selectedPayment, &$paymentplugins_payments));
        }
        // if no payment defined
        $found_payment_method = false;
        $n = 0;
        $debug = '';
        foreach ($paymentplugins_payments as $p1) {
            if (is_array($p1)) {
                $n += count($p1);
            }
        }
        if ($n > 0) {
            $found_payment_method = true;
        }
        $num = $n;
        if (!$found_payment_method) {
            $link = '';
            // todo
            $payment_not_found_text = OPCLang::sprintf('COM_VIRTUEMART_CART_NO_PAYMENT_METHOD_PUBLIC', '<a href="' . $link . '">' . $link . '</a>');
        }
        require_once JPATH_SITE . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'ajaxhelper.php';
        $bhelper = new basketHelper();
        require_once JPATH_ROOT . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'transform.php';
        $ret = array();
        if ($found_payment_method) {
            if (!empty($payment_inside)) {
                $ret2 = OPCTransform::paymentToSelect($paymentplugins_payments, $shipping, $dpps);
                if (!empty($ret2)) {
                    $ret = array($ret2['select']);
                    $extra = $ret2['extra'];
                    /*
                    		  foreach ($ret['extra'] as $key=>$val)
                    {
                      $extra[$key] = $val; 
                    }
                    */
                }
            }
            if (empty($payment_inside) || empty($ret)) {
                $sorted = array();
                $unknown = array();
                foreach ($paymentplugins_payments as $paymentplugin_payments) {
                    if (is_array($paymentplugin_payments)) {
                        foreach ($paymentplugin_payments as $paymentplugin_payment) {
                            $id = OPCTransform::getFT($paymentplugin_payment, 'input', 'virtuemart_paymentmethod_id', 'name', 'virtuemart_paymentmethod_id', '>', 'value');
                            if (is_array($id)) {
                                $id = reset($id);
                            }
                            $paymentplugin_payment = str_replace('class="vmpayment_description"', 'class="vmpayment_description vmpayment_description_' . $id . '"', $paymentplugin_payment);
                            //vmpayment_cardinfo
                            $paymentplugin_payment = str_replace('class="vmpayment_cardinfo"', 'class="vmpayment_cardinfo vmpayment_cardinfo_' . $id . '"', $paymentplugin_payment);
                            //ccDetails
                            $paymentplugin_payment = str_replace('class="ccDetails"', 'class="ccDetails ccDetails_' . $id . '"', $paymentplugin_payment);
                            OPCloader::opcDebug('checking shipping ' . $shipping);
                            OPCloader::opcDebug('dpps:');
                            OPCloader::opcDebug($dpps);
                            OPCloader::opcDebug('dpps_disable:');
                            OPCloader::opcDebug($dpps_disable);
                            if (!empty($shipping)) {
                                if (!empty($dpps)) {
                                    if (!empty($disable_payment_per_shipping)) {
                                        foreach ($dpps_disable as $k => $v) {
                                            if (!empty($dpps[$k])) {
                                                foreach ($dpps[$k] as $y => $try) {
                                                    if ((int) $dpps[$k][$y] == (int) $shipping) {
                                                        if ($dpps_disable[$k] == $id) {
                                                            OPCloader::opcDebug('disabling payment id ' . $id . ' for shipping id ' . $shipping);
                                                            $paymentplugin_payment = '';
                                                            continue 3;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                            // PPL Pro fix
                            $paymentplugin_payment = str_replace('<br/><a href="' . JRoute::_('index.php?option=com_virtuemart&view=cart&task=editpayment&Itemid=' . JRequest::getInt('Itemid'), false) . '">' . JText::_('VMPAYMENT_PAYPAL_CC_ENTER_INFO') . '</a>', '', $paymentplugin_payment);
                            $paymentplugin_payment = str_replace('name="virtuemart_paymentmethod_id"', 'name="virtuemart_paymentmethod_id" onclick="javascript: Onepage.runPay(\'\',\'\',op_textinclship, op_currency, 0)" ', $paymentplugin_payment);
                            $ret[] = $paymentplugin_payment;
                            if ($n === 1 && !empty($hide_payment_if_one)) {
                                $paymentplugin_payment = str_replace('type="radio"', 'type="hidden"', $paymentplugin_payment);
                            }
                            if (is_numeric($id)) {
                                $ind = (int) $id;
                                if (empty($sorted[$ind])) {
                                    $sorted[$ind] = $paymentplugin_payment;
                                } else {
                                    $unknown[] = $paymentplugin_payment;
                                }
                            } else {
                                if (is_numeric($id[0])) {
                                    $ind = (int) $id[0];
                                    if (empty($sorted[$ind])) {
                                        $sorted[$ind] = $paymentplugin_payment;
                                    } else {
                                        $unknown[] = $paymentplugin_payment;
                                    }
                                } else {
                                    $unknown[] = $paymentplugin_payment;
                                }
                            }
                        }
                    }
                }
                if (!empty($sorted)) {
                    $dbj = JFactory::getDBO();
                    $dbj->setQuery("select * from #__virtuemart_paymentmethods where published = '1' order by ordering asc limit 999");
                    $list = $dbj->loadAssocList();
                    $msg = $dbj->getErrorMsg();
                    if (!empty($msg)) {
                        echo $msg;
                    }
                    $sortedfinal = array();
                    if (!empty($list)) {
                        foreach ($list as $pme) {
                            if (!empty($sorted[$pme['virtuemart_paymentmethod_id']])) {
                                $sortedfinal[] = $sorted[$pme['virtuemart_paymentmethod_id']];
                            }
                        }
                        if (empty($unknown)) {
                            $unknown = array();
                        }
                        if (!empty($sortedfinal)) {
                            $ret = array_merge($sortedfinal, $unknown);
                        }
                    }
                }
            }
        } else {
            $ret[] = $payment_not_found_text . '<input type="hidden" name="virtuemart_paymentmethod_id" id="opc_missing_payment" value="0" />';
        }
        if (empty($payment_inside)) {
            if (!empty($ret)) {
                if (!empty($paymentplugins)) {
                    $ret = array_merge($paymentplugins, $ret);
                }
            }
        }
        $vars = array('payments' => $ret, 'cart' => $ref->cart);
        $html = $OPCloader->fetch($OPCloader, 'list_payment_methods.tpl', $vars);
        $pid = JRequest::getVar('payment_method_id', '');
        if (!empty($pid) && is_numeric($pid)) {
            if (strpos($html, 'value="' . $pid . '"') !== false) {
                $html = str_replace('checked="checked"', '', $html);
                $html = str_replace(' checked', ' ', $html);
                $html = str_replace('value="' . $pid . '"', 'value="' . $pid . '" checked="checked" ', $html);
            }
        } else {
            if (strpos($html, 'value="' . $payment_default . '"') !== false) {
                $html = str_replace('checked="checked"', '', $html);
                $html = str_replace(' checked', ' ', $html);
                $html = str_replace('value="' . $payment_default . '"', 'value="' . $payment_default . '" checked="checked" ', $html);
            }
        }
        $html = str_replace('"radio"', '"radio" autocomplete="off" ', $html);
        if (!$payment_inside) {
            if (strpos($html, 'checked') === false) {
                $x1 = strpos($html, 'name="virtuemart_paymentmethod_id"');
                if ($x1 !== false) {
                    $html = substr($html, 0, $x1) . ' checked="checked" ' . substr($html, $x1);
                } else {
                    // we've got no method here !
                }
            }
        }
        // klarna compatibility
        $count = 0;
        $html = str_replace('name="klarna_paymentmethod"', 'name="klarna_paymentmethod_opc"', $html, $count);
        $html .= '<input type="hidden" name="opc_payment_method_id" id="opc_payment_method_id" value="" />';
        if ($count > 0) {
            if (!defined('klarna_opc_id')) {
                $html .= '<input type="hidden" name="klarna_opc_method" id="klarna_opc_method" value="" />';
                define('klarna_opc_id', 1);
            }
        }
        $reta = array();
        $reta['html'] = $html;
        if (!empty($extra)) {
            $reta['extra'] = $extra;
        } else {
            $reta['extra'] = '';
        }
        return $reta;
    }
Beispiel #2
0
 function getCoupon(&$obj)
 {
     if (!VmConfig::get('coupons_enable')) {
         return "";
     }
     $this->couponCode = isset($this->cart->couponCode) ? $this->cart->couponCode : '';
     $coupon_text = $obj->cart->couponCode ? OPCLang::_('COM_VIRTUEMART_COUPON_CODE_CHANGE') : OPCLang::_('COM_VIRTUEMART_COUPON_CODE_ENTER');
     if (!class_exists('OPCrenderer')) {
         require JPATH_SITE . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'renderer.php';
     }
     $renderer = OPCrenderer::getInstance();
     $renderer->assignRef('coupon_text', $coupon_text);
     return $this->fetch($obj, 'couponField.tpl', array(), 'coupon');
 }
Beispiel #3
0
    public static function getBasket(&$ref, $OPCloader, $withwrapper = true, &$op_coupon = '', $shipping = '', $payment = '', $isexpress = false)
    {
        include JPATH_ROOT . DS . 'components' . DS . 'com_onepage' . DS . 'config' . DS . 'onepage.cfg.php';
        $has_k2 = OPCloader::tableExists('k2mart');
        if (!class_exists('ShopFunctions')) {
            require JPATH_VM_ADMINISTRATOR . DS . 'helpers' . DS . 'shopfunctions.php';
        }
        if (!method_exists('ShopFunctions', 'convertWeightUnit')) {
            $opc_show_weight = false;
        }
        /*
           if (!class_exists('VirtueMartModelProduct'))
         require(JPATH_VM_ADMINISTRATOR . DS . 'models' . DS . 'product.php');
        */
        require_once JPATH_ROOT . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'mini.php';
        $productClass = OPCmini::getModel('product');
        //new VirtueMartModelProduct();
        if (!class_exists('CurrencyDisplay')) {
            require JPATH_VM_ADMINISTRATOR . DS . 'helpers' . DS . 'currencydisplay.php';
        }
        $currencyDisplay = CurrencyDisplay::getInstance($ref->cart->pricesCurrency);
        $google_html = '';
        $VM_LANG = new op_languageHelper();
        $product_rows = array();
        $p2 = $ref->cart->products;
        if (empty($ref->cart)) {
            $ref->cart = VirtueMartCart::getCart();
        }
        $vm2015 = false;
        $ref->cart->prices = $ref->cart->pricesUnformatted = OPCloader::getCheckoutPrices($ref->cart, false, $vm2015, 'opc');
        $useSSL = VmConfig::get('useSSL', 0);
        $action_url = $OPCloader->getActionUrl($OPCloader, true);
        $xi = 0;
        if (isset($currencyDisplay->_priceConfig)) {
            $savedConfig = $currencyDisplay->_priceConfig;
        }
        if (empty($product_price_display)) {
            $product_price_display = 'salesPrice';
        }
        //$test_product_price_display = array($product_price_display, 'salesPrice', 'basePrice', 'priceWithoutTax', 'basePriceWithTax', 'priceBeforeTax', 'costPrice');
        $test_product_price_display = array($product_price_display, 'salesPrice', 'basePrice', 'priceWithoutTax', 'basePriceWithTax', 'priceBeforeTax');
        // check price config
        $testf = false;
        foreach ($test_product_price_display as $product_price_display_test) {
            $test = $currencyDisplay->createPriceDiv($product_price_display, '', '10', false, false, 1);
            if (empty($test)) {
                if (isset($currencyDisplay->_priceConfig)) {
                    if (isset($currencyDisplay->_priceConfig[$product_price_display_test])) {
                        if (empty($currencyDisplay->_priceConfig[$product_price_display_test][0])) {
                            $currencyDisplay->_priceConfig[$product_price_display_test] = array(1, -1, 1);
                        }
                    }
                }
                $testf = true;
            } else {
                if (!isset($product_price_display_test2)) {
                    $product_price_display_test2 = $product_price_display_test;
                }
            }
        }
        if (empty($testf)) {
            $product_price_display = $product_price_display_test2;
        }
        $totalw = 0;
        $to_weight_unit = VmConfig::get('weight_unit_default', 'KG');
        foreach ($ref->cart->products as $pkey => $prow) {
            if ($opc_show_weight) {
                $totalw += ShopFunctions::convertWeightUnit((double) $prow->product_weight, $prow->product_weight_uom, $to_weight_unit) * (double) $prow->quantity;
            }
            $product = array();
            $id = $prow->virtuemart_media_id;
            if (empty($id)) {
                $imgf = '';
            } else {
                if (is_array($id)) {
                    $id = reset($id);
                }
                $imgf = $OPCloader->getImageFile($id);
            }
            $product['product_full_image'] = $imgf;
            if (!empty($opc_only_parent_links)) {
                if (!empty($prow->product_parent_id)) {
                    $parent = $prow->product_parent_id;
                    $prow->url = JRoute::_('index.php?option=com_virtuemart&virtuemart_product_id=' . $parent . '&view=productdetails', true);
                }
            }
            // check if k2 exists:
            if (!isset($prow->url)) {
                if (isset($prow->link)) {
                    $prow->url = $prow->link;
                    if (strpos($prow->url, '&amp;') === false) {
                        $prow->url = str_replace('&', '&amp;', $prow->url);
                    }
                } else {
                    $prow->url = JRoute::_('index.php?option=com_virtuemart&virtuemart_product_id=' . $prow->virtuemart_product_id . '&view=productdetails', true);
                }
            }
            if ($has_k2) {
                $db = JFactory::getDBO();
                $q = 'select baseID from #__k2mart where referenceID = ' . (int) $prow->virtuemart_product_id . ' limit 0,1';
                $db->setQuery($q);
                $k2_id = $db->loadResult();
                if (!empty($k2_id)) {
                    $prow->url = JRoute::_('index.php?option=com_k2&id=' . $k2_id . '&view=item', true);
                }
            }
            $product['product_name'] = JHTML::link($prow->url, $prow->product_name, ' class="opc_product_name" ');
            if ((!defined('VM_VERSION') || VM_VERSION < 3) && (isset($prow->customfields) && !is_array($prow->customfields))) {
                if (!empty($opc_editable_attributes)) {
                    $product['product_attributes'] = '<div style="clear:both;">' . OPCrenderer::getCustomFields($prow->virtuemart_product_id, $prow->cart_item_id, $prow->quantity) . '</div>';
                } else {
                    $product['product_attributes'] = $prow->customfields;
                }
            } else {
                $product['product_attributes'] = '';
            }
            /*
            var_dump($prow->customfields); 
            $cart = VirtuemartCart::getCart();
            
            $p = array(); 
            foreach ($cart->products as $k=>$v)
            {
              $p[$k] = $v; 
            } 
            unset($cart->products); 
            
            unset($cart->ST); 
            unset($cart->BT); 
            unset($cart->BTaddress); 
            unset($cart->STaddress); 
            $cart->products = $p; 
            $cart->setCartIntoSession(); 
            var_dump($cart->products); die(); 
            var_dump($cart); 
            JFactory::getApplication()->close(); 
            */
            if (defined('VM_VERSION') && VM_VERSION >= 3) {
            }
            if (isset($prow->customfields) && is_array($prow->customfields)) {
                $customfieldsModel = OPCmini::getModel('Customfields');
                $product['product_attributes'] = $customfieldsModel->CustomsFieldCartDisplay($prow);
            }
            $product['product_sku'] = $prow->product_sku;
            // end price test
            if (isset($prow->quantity)) {
                $product['product_quantity'] = $prow->quantity;
            }
            if (isset($prow->min_order_level)) {
                $product['min_order_level'] = $prow->min_order_level;
            }
            if (isset($prow->max_order_level)) {
                $product['max_order_level'] = $prow->max_order_level;
            }
            //$product_model = $OPCloader->getModel('product');
            $xi++;
            if (empty($no_extra_product_info)) {
                $prowcopy = $productClass->getProduct($prow->virtuemart_product_id, true);
            } else {
                $prowcopy = $prow;
            }
            $product['info'] = $prowcopy;
            $product['product'] = $prow;
            if (isset($ref->cart->prices[$pkey])) {
                $currentPrice = $ref->cart->prices[$pkey];
            } else {
                if (isset($prow->prices)) {
                    $currentPrice = $prow->prices;
                }
            }
            if ($product_price_display == 'salesPrice') {
                if (isset($prow->prices)) {
                    $product['product_price'] = $currentPrice['salesPrice'];
                } else {
                    if (isset($prow->salesPrice)) {
                        $product['product_price'] = $prow->salesPrice;
                    } else {
                        if (isset($prow->basePriceWithTax)) {
                            $product['product_price'] = $prow->basePriceWithTax;
                        } else {
                            if (isset($prow->basePrice)) {
                                $product['product_price'] = $prow->basePrice;
                            }
                        }
                    }
                }
            } else {
                if (isset($prow->prices)) {
                    $product['product_price'] = $currentPrice[$product_price_display];
                } else {
                    if (isset($prow->{$product_price_display})) {
                        $product['product_price'] = $prow->{$product_price_display};
                    } else {
                        if (isset($prow->salesPrice)) {
                            $product['product_price'] = $prow->salesPrice;
                        }
                    }
                }
            }
            if (!isset($product['product_price'])) {
                $price = $ref->cart->pricesUnformatted[$pkey];
                $product['product_price'] = $price[$product_price_display];
            }
            if (empty($product['product_price'])) {
                $product_price_display = 'salesPrice';
                $price = $ref->cart->pricesUnformatted[$pkey];
                $product['product_price'] = $price['salesPrice'];
            }
            $price_raw = $product['product_price'];
            // the quantity is not working up to 2.0.4
            $product['product_id'] = $prow->virtuemart_product_id;
            $google_html .= '<input type="hidden" name="prod_id" value="' . $prow->virtuemart_product_id . '" />
			   <input type="hidden" name="prodsku_' . $prow->virtuemart_product_id . '" id="prodsku_' . $prow->virtuemart_product_id . '" value="' . OPCloader::slash($prow->product_sku, false) . '" />
			   <input type="hidden" name="prodname_' . $prow->virtuemart_product_id . '" id="prodname_' . $prow->virtuemart_product_id . '" value="' . OPCloader::slash($prow->product_name, false) . '" />
			   <input type="hidden" name="prodq_' . $prow->virtuemart_product_id . '" id="prodq_' . $prow->virtuemart_product_id . '" value="' . $prow->quantity . '" />
			   <input type="hidden" name="produprice_' . $prow->virtuemart_product_id . '" id="produprice_' . $prow->virtuemart_product_id . '" value="' . $price_raw . '" />
			    <input type="hidden" name="prodcat_' . $prow->virtuemart_product_id . '" id="prodcat_' . $prow->virtuemart_product_id . '" value="' . $prow->category_name . '" />
			   
			   
			  ';
            if (isset($ref->cart->pricesUnformatted[$pkey])) {
                $price = $ref->cart->pricesUnformatted[$pkey];
            } else {
                $price = $prow->prices;
            }
            $product['prices'] = $price;
            $product['prices_formatted'] = array();
            if ($vm2015) {
                foreach ($price as $key => $pricev) {
                    //if (!isset($price[$key]))
                    if (!empty($pricev)) {
                        $product['prices_formatted'][$key] = $currencyDisplay->createPriceDiv($key, '', $price, false, true, 1);
                    }
                }
            }
            $product['product_price'] = $currencyDisplay->createPriceDiv($product_price_display, '', $price, false, true, 1);
            /*
            if (false)
            if (empty($product['product_price']))
            {
              // ok, we have a wrong type selected here
            				if ($product_price_display == 'salesPrice') 
            				$product['product_price'] = $currencyDisplay->createPriceDiv('basePrice','', $price,false,false, 1);
            				if (empty($product['product_price']))
            				$product['product_price'] = $currencyDisplay->createPriceDiv('priceWithoutTax','', $price,false,false, 1);
            				if (empty($product['product_price']))
            				$product['product_price'] = $currencyDisplay->createPriceDiv('basePriceWithTax','', $price,false,false, 1);
            				if (empty($product['product_price']))
            				$product['product_price'] = $currencyDisplay->createPriceDiv('priceBeforeTax','', $price,false,false, 1);
            				if (empty($product['product_price']))
            				$product['product_price'] = $currencyDisplay->createPriceDiv('costPrice','', $price,false,false, 1);
            				
            
            				 
            }
            */
            $product['product_price'] = str_replace('class="', 'class="opc_price_general opc_', $product['product_price']);
            if (!isset($prow->cart_item_id)) {
                $prow->cart_item_id = $pkey;
            }
            $v = array('product' => $prow, 'action_url' => $action_url, 'use_ssl' => $useSSL, 'useSSL' => $useSSL);
            if (!empty($ajaxify_cart)) {
                $update_form = $OPCloader->fetch($OPCloader, 'update_form_ajax.tpl', $v);
                $delete_form = $OPCloader->fetch($OPCloader, 'delete_form_ajax.tpl', $v);
            } else {
                $update_form = $OPCloader->fetch($OPCloader, 'update_form.tpl', $v);
                $delete_form = $OPCloader->fetch($OPCloader, 'delete_form.tpl', $v);
                $op_coupon_ajax = '';
            }
            if (empty($update_form)) {
                if (!empty($ajaxify_cart)) {
                    $product['update_form'] = '<input type="text" title="' . OPCLang::_('COM_VIRTUEMART_CART_UPDATE') . '" class="inputbox" size="3" name="quantity" id="quantity_for_' . md5($prow->cart_item_id) . '" value="' . $prow->quantity . '" /><a class="updatebtn" title="' . OPCLang::_('COM_VIRTUEMART_CART_DELETE') . '" href="#" rel="' . $prow->cart_item_id . '|' . md5($prow->cart_item_id) . '"> </a>';
                    $product['delete_form'] = '<a class="deletebtn" title="' . OPCLang::_('COM_VIRTUEMART_CART_DELETE') . '" href="#" rel="' . $prow->cart_item_id . '"> </a>';
                } else {
                    $product['update_form'] = '<form action="' . $action_url . '" method="post" style="display: inline;">
				<input type="hidden" name="option" value="com_virtuemart" />
				<input type="text" title="' . OPCLang::_('COM_VIRTUEMART_CART_UPDATE') . '" class="inputbox" size="3" name="quantity" value="' . $prow->quantity . '" />
				<input type="hidden" name="view" value="cart" />
				<input type="hidden" name="task" value="update" />
				<input type="hidden" name="cart_virtuemart_product_id" value="' . $prow->cart_item_id . '" />
				<input type="submit" class="updatebtn" name="update" title="' . OPCLang::_('COM_VIRTUEMART_CART_UPDATE') . '" value=" "/>
			  </form>';
                    if (defined('VM_VERSION') && VM_VERSION >= 3) {
                        $product['delete_form'] = '<a class="deletebtn" title="' . OPCLang::_('COM_VIRTUEMART_CART_DELETE') . '" href="' . JRoute::_('index.php?option=com_virtuemart&view=cart&task=delete.' . $prow->cart_item_id . '&cart_virtuemart_product_id=' . $prow->cart_item_id, true, $useSSL) . '"> </a>';
                    } else {
                        $product['delete_form'] = '<a class="deletebtn" title="' . OPCLang::_('COM_VIRTUEMART_CART_DELETE') . '" href="' . JRoute::_('index.php?option=com_virtuemart&view=cart&task=delete&cart_virtuemart_product_id=' . $prow->cart_item_id, true, $useSSL) . '"> </a>';
                    }
                }
            } else {
                $product['update_form'] = $update_form;
                $product['delete_form'] = $delete_form;
            }
            if (!empty($ajaxify_cart)) {
                $product['update_form'] = str_replace('href=', 'onclick="return Onepage.updateProduct(this);" href=', $product['update_form']);
                $product['delete_form'] = str_replace('href=', 'onclick="return Onepage.deleteProduct(this);" href=', $product['delete_form']);
            }
            //vm3 update:
            if (defined('VM_VERSION') && VM_VERSION >= 3) {
                $product['update_form'] = str_replace('name="quantity"', 'name="quantity[' . $prow->cart_item_id . ']"', $product['update_form']);
                $product['update_form'] = str_replace('value="update"', 'value="updatecart"', $product['update_form']);
            }
            $product['subtotal'] = $prow->quantity * $price_raw;
            //else
            //$product['subtotal'] = $prow->subtotal_with_tax;
            // this is fixed from 2.0.4 and would not be needed
            if (isset($ref->cart->pricesUnformatted[$pkey])) {
                $copy = $ref->cart->pricesUnformatted[$pkey];
            } else {
                $copy = $prow->prices;
            }
            //$copy['salesPrice'] = $copy['subtotal_with_tax'];
            $copy[$product_price_display] = $product['subtotal'];
            $product['subtotal'] = $currencyDisplay->createPriceDiv($product_price_display, '', $copy, false, true, 1);
            $product['subtotal'] = str_replace('class="', 'class="opc_', $product['subtotal']);
            // opc vars
            $product_rows[] = $product;
            //break;
        }
        //$shipping_inside_basket = false;
        $shipping_select = $shipping;
        $payment_select = $payment;
        if (!empty($ref->cart->prices['salesPriceCoupon'])) {
            if (empty($coupon_price_display)) {
                $coupon_price_display = 'salesPriceCoupon';
            }
            $coupon_display = $currencyDisplay->createPriceDiv($coupon_price_display, '', $ref->cart->prices, false, true, 1);
            //$ref->cart->prices['salesPriceCoupon'];
            $coupon_display = str_replace('class="', 'class="opc_', $coupon_display);
        } else {
            $coupon_display = '';
        }
        if (!empty($coupon_display)) {
            $discount_after = true;
        } else {
            $discount_after = false;
        }
        if (empty($other_discount_display)) {
            $other_discount_display = 'billDiscountAmount';
        }
        switch ($other_discount_display) {
            case 'billDiscountAmount':
                $coupon_display_before = $currencyDisplay->createPriceDiv('billDiscountAmount', '', $ref->cart->prices, false, false, 1);
                if (empty($ref->cart->prices['billDiscountAmount'])) {
                    $coupon_display_before = '';
                }
                break;
            case 'discountAmount':
                $coupon_display_before = $currencyDisplay->createPriceDiv('discountAmount', '', $ref->cart->prices, false, false, 1);
                if (empty($ref->cart->prices['discountAmount'])) {
                    $coupon_display_before = '';
                }
            case 'minus':
                $billD = abs($ref->cart->prices['billDiscountAmount']);
                foreach ($ref->cart->prices as $key => $val) {
                    if (!empty($ref->cart->products[$key])) {
                        if (is_array($val)) {
                            $billD -= abs($val['subtotal_discount']);
                        }
                    }
                }
                $billD = abs($billD) * -1;
                $prices_new['billTotal'] = $billD;
                if (!empty($billD)) {
                    $coupon_display_before = $currencyDisplay->createPriceDiv('billTotal', '', $prices_new, false, false, 1);
                } else {
                    $coupon_display_before = '';
                }
                break;
            case 'sum':
                $billD = 0;
                foreach ($ref->cart->prices as $key => $val) {
                    if (!empty($ref->cart->products[$key])) {
                        if (is_array($val)) {
                            $billD += $val['subtotal_discount'];
                        }
                    }
                }
                $billD = abs($billD) * -1;
                $prices_new['billTotal'] = $billD;
                if (!empty($billD)) {
                    $coupon_display_before = $currencyDisplay->createPriceDiv('billTotal', '', $prices_new, false, false, 1);
                } else {
                    $coupon_display_before = '';
                }
                break;
        }
        $coupon_display_before = str_replace('class="', 'class="opc_', $coupon_display_before);
        //else $coupon_display_before = '';
        $opc_show_weight_display = '';
        if (!empty($opc_show_weight) && !empty($totalw)) {
            $dec = $currencyDisplay->getDecimalSymbol();
            $th = $currencyDisplay->getThousandsSeperator();
            $w = VmConfig::get('weight_unit_default', 'KG');
            $w = strtoupper($w);
            if ($w == 'OZ') {
                $w = 'OUNCE';
            }
            $unit = JText::_('COM_VIRTUEMART_UNIT_SYMBOL_' . $w);
            if ($unit == 'COM_VIRTUEMART_UNIT_SYMBOL_' . $w) {
                $unit = $w = VmConfig('weight_unit_default', 'kg');
            }
            $opc_show_weight_display = number_format($totalw, 2, $dec, $th) . ' ' . $unit;
        }
        if (!empty($ajaxify_cart)) {
            $coupon_text = $ref->cart->couponCode ? OPCLang::_('COM_VIRTUEMART_COUPON_CODE_CHANGE') : OPCLang::_('COM_VIRTUEMART_COUPON_CODE_ENTER');
            $vars = array('coupon_text' => $coupon_text, 'coupon_display' => $coupon_display);
            $op_coupon_ajax = $OPCloader->fetch($OPCloader, 'couponField_ajax', $vars);
            if (stripos($op_coupon_ajax, 'Onepage.setCouponAjax') === false) {
                $op_coupon_ajax = str_replace('type="button', 'onclick="return Onepage.setCouponAjax(this);" type="button', $op_coupon_ajax);
            }
        }
        if (empty($subtotal_price_display)) {
            $subtotal_price_display = 'salesPrice';
        }
        if ($subtotal_price_display != 'diffTotals') {
            $subtotal_display = $currencyDisplay->createPriceDiv($subtotal_price_display, '', $ref->cart->prices, false, false, 1);
            if ($subtotal_price_display == 'basePriceWithTax') {
                if (stripos($subtotal_display, ' ></span') !== false) {
                    $subtotal_price_display = 'salesPrice';
                    $subtotal_display = $currencyDisplay->createPriceDiv($subtotal_price_display, '', $ref->cart->prices, false, false, 1);
                }
            }
        } else {
            $subtotal = $ref->cart->prices['billTotal'] - $ref->cart->prices['billTaxAmount'];
            $arr = array('diffTotals' => $subtotal);
            $subtotal_display = $currencyDisplay->createPriceDiv($subtotal_price_display, '', $arr, false, false, 1);
        }
        //$ref->cart->prices['salesPrice'];
        $subtotal_display = str_replace('class="', 'class="opc_', $subtotal_display);
        $prices = $ref->cart->prices;
        if (!isset($prices[$subtotal_price_display . 'Shipment'])) {
            if ($subtotal_price_display != 'salesPrice') {
                $order_shipping = $prices['shipmentValue'];
            } else {
                $order_shipping = $prices['salesPriceShipment'];
            }
        } else {
            $order_shipping = $prices[$subtotal_price_display . 'Shipment'];
        }
        if (!empty($order_shipping)) {
            $virtuemart_currency_id = OPCloader::getCurrency($ref->cart);
            $order_shipping = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $order_shipping, false);
            $test = $currencyDisplay->createPriceDiv($product_price_display, '', $order_shipping, false, true, 1);
            if (!empty($test)) {
                $order_shipping = $test;
            }
            $order_shipping = str_replace('class="', 'class="opc_', $order_shipping);
        } else {
            $order_shipping = '';
        }
        $continue_link = $OPCloader->getContinueLink($ref);
        $order_total_display = $currencyDisplay->createPriceDiv('billTotal', '', $ref->cart->prices, false, false, 1);
        //$ref->cart->prices['billTotal'];
        $order_total_display = str_replace('class="', 'class="opc_', $order_total_display);
        // this will need a little tuning
        foreach ($ref->cart->cartData['taxRulesBill'] as $rule) {
            $rulename = $rule['calc_name'];
            if (!empty($ref->cart->prices[$rule['virtuemart_calc_id'] . 'Diff'])) {
                $tax_display = $currencyDisplay->createPriceDiv($rule['virtuemart_calc_id'] . 'Diff', '', $ref->cart->prices, false, false, 1);
                //$ref->cart->prices[$rule['virtuemart_calc_id'].'Diff'];
                $tax_display = str_replace('class="', 'class="opc_', $tax_display);
            } else {
                $tax_display = '';
            }
        }
        $op_disable_shipping = OPCloader::getShippingEnabled($ref->cart);
        if (!empty($payment_discount_before) && !empty($coupon_display_before)) {
            $discount_before = true;
        } else {
            $discount_before = false;
        }
        $disable_couponns = VmConfig::get('coupons_enable', true);
        if (empty($disable_couponns)) {
            $op_coupon = $op_coupon_ajax = '';
        }
        if (!empty($op_coupon_ajax)) {
            $op_coupon = $op_coupon_ajax;
        }
        if ($isexpress) {
            $payment_inside_basket = false;
        }
        if (empty($payment_inside_basket)) {
            $payment_select = '';
        }
        if (empty($shipping_inside_basket)) {
            $shipping_select = '';
        }
        if (empty($tax_display)) {
            $tax_display = '';
        }
        if (empty($op_disable_shipping)) {
            $op_disable_shipping = false;
        }
        $no_shipping = $op_disable_shipping;
        $vars = array('product_rows' => $product_rows, 'payment_inside_basket' => $payment_inside_basket, 'shipping_select' => $shipping_select, 'payment_select' => $payment_select, 'shipping_inside_basket' => $shipping_inside_basket, 'coupon_display' => $coupon_display, 'subtotal_display' => $subtotal_display, 'no_shipping' => $no_shipping, 'order_total_display' => $order_total_display, 'tax_display' => $tax_display, 'VM_LANG' => $VM_LANG, 'op_coupon_ajax' => $op_coupon_ajax, 'continue_link' => $continue_link, 'coupon_display_before' => $coupon_display_before, 'discount_before' => $discount_before, 'discount_after' => $discount_after, 'order_shipping' => $order_shipping, 'cart' => $ref->cart, 'op_coupon' => $op_coupon, 'opc_show_weight_display' => $opc_show_weight_display);
        //original cart support:
        $ref->cart->cartData['shipmentName'] = '';
        $ref->cart->cartData['paymentName'] = '';
        $totalInPaymentCurrency = $ref->getTotalInPaymentCurrency();
        $cd = CurrencyDisplay::getInstance($ref->cart->pricesCurrency);
        $layoutName = 'default';
        $confirm = 'confirm';
        $shippingText = '';
        $paymentText = '';
        $checkout_link_html = '';
        $useSSL = VmConfig::get('useSSL', 0);
        $useXHTML = true;
        $checkoutAdvertise = '';
        if (!class_exists('OPCrenderer')) {
            require JPATH_SITE . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'renderer.php';
        }
        $renderer = OPCrenderer::getInstance();
        if (method_exists($renderer, 'assignRef')) {
            $renderer->assignRef('cart', $renderer->cart);
            $renderer->assignRef('totalInPaymentCurrency', $totalInPaymentCurrency);
            $renderer->assignRef('layoutName', $layoutName);
            $renderer->assignRef('select_shipment_text', $shippingText);
            $renderer->assignRef('checkout_task', $confirm);
            $renderer->assignRef('currencyDisplay', $cd);
            $renderer->assignRef('select_payment_text', $paymentText);
            $renderer->assignRef('checkout_link_html', $checkout_link_html);
            $renderer->assignRef('useSSL', $useSSL);
            $renderer->assignRef('useXHTML', $useXHTML);
            $renderer->assignRef('totalInPaymentCurrency', $totalInPaymentCurrency);
            $renderer->assignRef('checkoutAdvertise', $checkoutAdvertise);
        }
        if (empty($use_original_basket)) {
            $html = $renderer->fetch($OPCloader, 'basket.html', $vars);
        } else {
            $html = $renderer->fetchBasket($OPCloader, 'basket.html', $vars);
        }
        if ($withwrapper) {
            $html = '<div id="opc_basket">' . $html . '</div>';
        }
        if (!empty($op_no_basket)) {
            $html = '<div style="display: none;">' . $html . '</div>';
        }
        if (isset($currencyDisplay->_priceConfig)) {
            $currencyDisplay->_priceConfig = $savedConfig;
        }
        $ret = $html . $google_html;
        return $ret;
    }
Beispiel #4
0
 public function loadTemplate($theme = NULL)
 {
     return "";
     $instance = OPCrenderer::getInstance();
     return $instance->fetchVirtuemart($theme, 'cart', 'default');
 }
Beispiel #5
0
 public function &getCartHtml(&$cart, &$OPCloader, $shipping_method_html = '', $op_payment = '')
 {
     if (!defined('JPATH_OPC')) {
         define('JPATH_OPC', JPATH_SITE . DS . 'components' . DS . 'com_onepage');
     }
     if (!class_exists('VirtueMartViewCart')) {
         require JPATH_OPC . DS . 'overrides' . DS . 'virtuemart.cart.view.html.php';
     }
     $VM_LANG = new op_languageHelper();
     $GLOBALS['VM_LANG'] = $VM_LANG;
     //$ref = new VirtueMartViewCart();
     //$ref->cart =& $cart;
     if (!class_exists('OPCrenderer')) {
         require JPATH_SITE . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'renderer.php';
     }
     $ref = OPCrenderer::getInstance();
     $ref->cart = $cart;
     $op_coupon = $op_coupon = $OPCloader->getCoupon($ref);
     //$html = $OPCloader->getBasket($ref, false, $op_coupon);
     $html = $OPCloader->getBasket($ref, false, $op_coupon, $shipping_method_html, $op_payment);
     return $html;
 }
Beispiel #6
0
 function getPaymentArrayHtml($cart2, $payment_array, &$shipping_array)
 {
     include JPATH_ROOT . DS . 'components' . DS . 'com_onepage' . DS . 'config' . DS . 'onepage.cfg.php';
     if (is_null(OPCloader::$inform_html)) {
         OPCloader::$inform_html = array();
     }
     $preselected = JRequest::getVar('virtuemart_shipmentmethod_id', JRequest::getVar('shipping_rate_id', ''));
     $default = array();
     $session = JFactory::getSession();
     $session->set('fedex_rates', null, 'vm');
     // if ($op_show_others) $vendor_freeshipping = 0;
     // $extHelper = new opExtension();
     // $extHelper->runExt('setFreeShipping', '', '', $vars['country'], $vendor_freeshipping);
     // coupon will get counted again
     $cart = VirtueMartCart::getCart();
     $add = array();
     if (!empty($payment_array)) {
         foreach ($payment_array as &$pay) {
             if (isset($pay->payment_element)) {
                 if (!empty($pay->split_plugin_path)) {
                     include $pay->split_plugin_path;
                 }
             }
             //if (!empty($params)) break;
         }
     }
     if (!empty($add)) {
         //array_merge($payment_array, $add);
         foreach ($add as $v) {
             $payment_array[] = $v;
         }
     }
     $payment_array['zero_payment'] = '<input type="hidden" value="0" name="virtuemart_paymentmethod_id" />';
     // again and again we have to do overrides because VM team decides about private functions and properties
     $dispatcher = JDispatcher::getInstance();
     $prices = array();
     // renew parameters
     //For the selection of the shipment method we need the total amount to pay.
     require_once JPATH_ROOT . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'mini.php';
     $shipmentModel = OPCmini::getModel('Shipmentmethod');
     //new VirtueMartModelShipmentmethod();
     // the configuration is reloaded only when this function is called interanally
     // getPluginMethods which is called by FEdisplay method
     $html = '';
     self::$totals_html = '';
     if (!empty($cart->couponCode)) {
         self::$totals_html = '<input type="hidden" id="opc_coupon_code_returned" name="opc_coupon_code_returned" value="' . OPCloader::slash($cart->couponCode) . '" />';
     } else {
         self::$totals_html = '<input type="hidden" id="opc_coupon_code_returned" name="opc_coupon_code_returned" value="" />';
     }
     //$opc_calc_cache = true;
     if (file_exists(JPATH_ROOT . DS . 'components' . DS . 'com_onepage' . DS . 'overrides' . DS . 'calculationh.php')) {
         if (!empty($opc_calc_cache)) {
             require_once JPATH_ROOT . DS . 'components' . DS . 'com_onepage' . DS . 'overrides' . DS . 'calculationh.php';
             if (!class_exists('calculationHelperOPC')) {
                 require JPATH_ROOT . DS . 'components' . DS . 'com_onepage' . DS . 'overrides' . DS . 'calculationh_override.php';
             }
         }
     }
     // from vm 2.0.22
     $calc = calculationHelper::getInstance();
     if (!empty($opc_calc_cache)) {
         if (class_exists('calculationHelperOPC')) {
             $calc = calculationHelperOPC::getInstanceOPC();
         }
     }
     /*
     			$class = new ReflectionClass('calculationHelper');
     			$method = $class->getMethod('setShopperGroupIds');
     			$method->setAccessible(true);
     			$method->invokeArgs($calc, array('6'));
     */
     if (method_exists($calc, 'setCartPrices')) {
         $vm2015 = true;
     } else {
         $vm2015 = false;
     }
     /*
     foreach ($cart->products as &$p)
     $calc->
     */
     $mainframe = Jfactory::getApplication();
     $virtuemart_currency_id = $mainframe->getUserStateFromRequest("virtuemart_currency_id", 'virtuemart_currency_id', JRequest::getInt('virtuemart_currency_id'));
     //$calc->setVendorCurrency($virtuemart_currency_id);
     if (!empty($virtuemart_currency_id)) {
         $currencyDisplay = CurrencyDisplay::getInstance($virtuemart_currency_id);
     } else {
         $currencyDisplay = CurrencyDisplay::getInstance($cart->paymentCurrency);
         $virtuemart_currency_id = $cart->paymentCurrency;
     }
     $unset_zero = true;
     if (empty($shipping_array)) {
         $shipping_array = array();
         $cart->virtuemart_shipmentmethod_id = 0;
         $unset_zero = false;
     }
     $shipping_array['zero_shipment'] = '<input type="hidden" name="virtuemart_shipmentmethod_id" checked="checked" id="shipment_id_0" value="0" />';
     $shipping_array['choose_shipping'] = '<input type="radio" value="0" id="shipment_id_0" />';
     $payment_a = new stdClass();
     $payment_a->virtuemart_paymentmethod_id = 0;
     $payment_array[] = $payment_a;
     if (!class_exists('CurrencyDisplay')) {
         require JPATH_VM_ADMINISTRATOR . DS . 'helpers' . DS . 'currencydisplay.php';
     }
     $currencyDisplay = CurrencyDisplay::getInstance($cart->pricesCurrency);
     //do_dump($shipping_array); die();
     //virtuemart_currency_id
     foreach ($shipping_array as &$shipping_method) {
         foreach ($payment_array as &$payment) {
             if (strpos($shipping_method, 'invalid_country') !== false) {
                 $cart->virtuemart_shipmentmethod_id = 0;
             }
             if (strpos($shipping_method, 'virtuemart_shipmentmethod_id') === false) {
                 $cart->virtuemart_shipmentmethod_id = 0;
             }
             $multishipmentid = array();
             if (!empty($shipping_method)) {
                 //check opc multi methods:
                 //multielementgetphp
                 $multishipmentid = OPCTransform::getFT($shipping_method, 'input', 'virtuemart_shipmentmethod_id', 'type', 'radio', '>', 'id');
                 //example of a multi method with select drop down:
                 /*
                 foreach ($pobocky_options as $ppp)
                 		 {
                 		    $pobocky .= '<option '; 
                 			if ($sind == $ppp->id) $pobocky .= ' selected="selected" '; 
                 			$pobocky .= ' ismulti="true" multi_id="shipment_id_'.$method->virtuemart_shipmentmethod_id.'_'.$ppp->id.'" value="'.$ppp->id.'">'.$ppp->nazev.'</option>'; 
                 		 }
                 */
                 $real_id = false;
                 $multishipmentid_test = OPCTransform::getFT($shipping_method, 'option', 'ismulti', 'ismulti', 'true', '>', 'multi_id');
                 if (!empty($multishipmentid_test)) {
                     if (!empty($multishipmentid)) {
                         $real_id = $multishipmentid[0];
                     }
                     $multishipmentid = $multishipmentid_test;
                 }
                 if (empty($multishipmentid)) {
                     $multishipmentid = OPCTransform::getFT($shipping_method, 'input', 'cpsol_radio', 'type', 'radio', '>', 'id');
                 }
                 //$idth = 'shipment_id_'.$shipmentid;
                 // $idth = $shipmentid;
             } else {
                 $idth = 'shipment_id_0';
             }
             if (empty($multishipmentid)) {
                 $idth = 'shipment_id_0';
                 $multishipmentid[0] = $idth;
             }
             foreach ($multishipmentid as $shipmentid) {
                 $idth = $shipmentid;
                 $ida = OPCTransform::getFT($shipping_method, 'input', 'virtuemart_shipmentmethod_id', 'type', 'hidden', '>', 'value');
                 if (empty($ida)) {
                     $ida = OPCTransform::getFT($shipping_method, 'input', $shipmentid, 'type', 'radio', '>', 'value');
                 }
                 if (!empty($ida[0])) {
                     $id = $ida[0];
                 } else {
                     $id = 0;
                 }
                 if (!isset($payment->virtuemart_paymentmethod_id)) {
                     $payment_id = 0;
                 } else {
                     $payment_id = (int) $payment->virtuemart_paymentmethod_id;
                 }
                 $_REQUEST['virtuemart_shipmentmethod_id'] = $id;
                 $cart->automaticSelectedShipment = true;
                 $cart->automaticSelectedPayment = true;
                 $cart->automaticSelectedShipment = true;
                 $cart->automaticSelectedPayment = true;
                 $cart->setPaymentMethod($payment_id);
                 if (method_exists($cart, 'setShipment')) {
                     $cart->setShipment($id);
                 }
                 $cart->virtuemart_shipmentmethod_id = $id;
                 $cart->virtuemart_paymentmethod_id = $payment_id;
                 $payment_id_override = 0;
                 //
                 if (isset($payment->payment_element)) {
                     if (!empty($payment->preparecalculation_path)) {
                         include $payment->preparecalculation_path;
                     }
                 }
                 $htmlsaved = $html;
                 $html = '';
                 require JPATH_SITE . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'third_party' . DS . 'third_party_shipping.php';
                 $md5 = md5($html);
                 OPCloader::$inform_html[$md5] = $html;
                 //self::$totals_html .= $html;
                 $html = $htmlsaved;
                 //$cart = VirtueMartCart::getCart();
                 //$returnValues = $dispatcher->trigger('calculateSalesPrice',array(  &$cart, &$id, &$cart->priceUnformatted  ));
                 $cart->setCartIntoSession();
                 /*
                 if (!class_exists('VirtueMartControllerCartOpc'))
                 require_once(JPATH_SITE.DS.'components'.DS.'com_onepage'.DS.'overrides'.DS.'cartcontroller.php'); 
                 $cartcontroller = new VirtueMartControllerCartOpc(); 
                 */
                 // will trigger plugin code for the selected shipment
                 JRequest::setVar('virtuemart_shipmentmethod_id', $id);
                 //OLD: $cartcontroller->setshipment($cart, $id, false, false);
                 $savedp = $cart->virtuemart_paymentmethod_id;
                 $seveds = $cart->virtuemart_shipmentmethod_id;
                 if (!empty($id)) {
                     ob_start();
                     $_dispatcher = JDispatcher::getInstance();
                     $_retValues = $_dispatcher->trigger('plgVmOnSelectCheckShipment', array(&$cart));
                     $x = ob_get_clean();
                 }
                 $cart->virtuemart_paymentmethod_id = $savedp;
                 $cart->virtuemart_shipmentmethod_id = $seveds;
                 $op_disable_shipping = OPCloader::getShippingEnabled($cart);
                 if (empty($op_disable_shipping)) {
                     if (!$vm2015) {
                         $prices = $calc->calculateShipmentPrice($cart, $id, true);
                     }
                 } else {
                     $cart->virtuemart_shipmentmethod_id = 0;
                     //if (!$vm2015)
                     //$calc->calculateShipmentPrice($cart, $id, false);
                     //$calc->_cartPrices
                 }
                 if (!$vm2015) {
                     $calc->calculatePaymentPrice($cart, $payment_id, true);
                 } else {
                     //$calc->_cartData = null;
                     //$ref->cart->cartData = null;
                     $calc->setCartPrices(array());
                 }
                 $prices = array();
                 $this->getCachedShipping($cart, $prices, $idth, $calc);
                 $cart->pricesUnformatted = $prices;
                 if (empty($subtotal_price_display)) {
                     $subtotal_price_display = 'salesPrice';
                 }
                 if ($subtotal_price_display != 'diffTotals') {
                     $order_subtotal = $prices[$subtotal_price_display];
                     /*
                     	if (empty($order_subtotal))
                     {
                       $order_subtotal = $prices['salesPrice']; 
                     }
                     */
                 }
                 if (empty($order_subtotal)) {
                     $order_subtotal = $prices['salesPrice'];
                     $subtotal_price_display = 'salesPrice';
                 }
                 if ($subtotal_price_display == 'diffTotals') {
                     // difference of billTotal and billTaxAmount
                     $order_subtotal = $prices['billTotal'] - $prices['billTaxAmount'];
                 }
                 $order_subtotal = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $order_subtotal, false);
                 $order_total = $prices['billTotal'];
                 $order_total = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $order_total, false);
                 $order_tax = 0;
                 if ($coupon_price_display == 'salesWithoutTax') {
                     if (isset($prices['couponTax'])) {
                         $cT = $prices['couponTax'];
                     } else {
                         $cT = 0;
                     }
                     if (isset($prices['salesPriceCoupon'])) {
                         $cS = $prices['salesPriceCoupon'];
                     } else {
                         $cS = 0;
                     }
                     $prices['salesWithoutTax'] = $cS - $cT;
                 }
                 if (empty($coupon_price_display)) {
                     $coupon_price_display = 'discountAmount';
                 }
                 if (!empty($prices[$coupon_price_display])) {
                     $coupon_discount = $prices[$coupon_price_display];
                 } else {
                     $coupon_discount = 0;
                 }
                 $coupon_discount = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $coupon_discount, false);
                 if (!empty($payment_discount_before)) {
                     $coupon_discount2 = 0;
                     if (empty($other_discount_display)) {
                         $other_discount_display = 'billDiscountAmount';
                     }
                     switch ($other_discount_display) {
                         case 'billDiscountAmount':
                             $coupon_discount2 = $coupon_discount2 = $prices['billDiscountAmount'];
                             break;
                         case 'discountAmount':
                             $coupon_discount2 = $prices['billDiscountAmount'];
                             break;
                         case 'minus':
                             $billD = abs($prices['billDiscountAmount']);
                             foreach ($prices as $key => $val) {
                                 if (!empty($cart->products[$key])) {
                                     if (is_array($val)) {
                                         $billD -= abs($val['subtotal_discount']);
                                     }
                                 }
                             }
                             $billD = abs($billD) * -1;
                             $prices_new['billTotal'] = $billD;
                             $coupon_discount2 = $billD;
                             break;
                         case 'sum':
                             $billD = 0;
                             foreach ($prices as $key => $val) {
                                 if (!empty($cart->products[$key])) {
                                     if (is_array($val)) {
                                         $billD += $val['subtotal_discount'];
                                     }
                                 }
                             }
                             $billD = abs($billD) * -1;
                             $prices_new['billTotal'] = $billD;
                             $coupon_discount2 = $billD;
                             break;
                     }
                     if (!empty($coupon_discount2)) {
                         $coupon_discount2 = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $coupon_discount2, false);
                     }
                     /*	
                     if (!empty($prices['billDiscountAmount']))
                     {
                     $coupon_discount2 = $prices['billDiscountAmount']; 
                     $coupon_discount2 = $currencyDisplay->convertCurrencyTo( $virtuemart_currency_id, $coupon_discount2,false);
                     
                     }
                     else
                     if (!empty($prices['discountAmount']))
                     {
                     $coupon_discount2 = $prices['discountAmount']; 
                     $coupon_discount2 = $currencyDisplay->convertCurrencyTo( $virtuemart_currency_id, $coupon_discount2,false);
                     }
                     else $coupon_discount2 = 0; 
                     */
                 } else {
                     $coupon_discount2 = 0;
                 }
                 if (!empty($payment_discount_before)) {
                     if (empty($coupon_discount2)) {
                         if (!empty($prices['couponValue'])) {
                             // $coupon_discount2 = $prices['couponValue'];
                         }
                     }
                 }
                 if ($product_price_display == 'basePriceWithTax' || $product_price_display == 'salesPrice') {
                     $shippingpayment_price_display = 'salesPrice';
                 } else {
                     $shippingpayment_price_display = 'basePrice';
                 }
                 if (empty($prices['basePriceWithTax'])) {
                     $shippingpayment_price_display = 'basePrice';
                 }
                 $subtotal_price_display = $product_price_display;
                 if (!isset($prices[$shippingpayment_price_display . 'Shipment'])) {
                     if ($shippingpayment_price_display != 'salesPrice') {
                         $order_shipping = $prices['shipmentValue'];
                     } else {
                         $order_shipping = $prices['salesPriceShipment'];
                     }
                 } else {
                     $order_shipping = $prices[$shippingpayment_price_display . 'Shipment'];
                 }
                 $order_shipping = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $order_shipping, false);
                 if ($shippingpayment_price_display != 'salesPrice') {
                     $ps = $prices['salesPriceShipment'];
                     $ps = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $ps, false);
                     $ps = $currencyDisplay->priceDisplay($ps);
                     $os = $currencyDisplay->priceDisplay($order_shipping);
                     $shipping_method = str_replace($ps, $os, $shipping_method);
                 }
                 $order_shipping = (double) $order_shipping;
                 if (empty($order_shipping)) {
                 }
                 // lets select a default shipping method:
                 // first shipping found:
                 // none to be selected by default if nothing is already selected:
                 if (empty($preselected) && (!empty($opc_default_shipping) && $opc_default_shipping == 3)) {
                     $default['id'] = 0;
                     $default['shipmentid'] = 'choose_shipping';
                     $default['price'] = 0;
                 } else {
                     if (!empty($id)) {
                         if (empty($default)) {
                             $default['id'] = $id;
                             $default['shipmentid'] = $shipmentid;
                             $default['price'] = $order_shipping;
                         } else {
                             // preselected found (from $_REQUEST)
                             if ($preselected == $id) {
                                 // if we found the preselected, let's leave it there
                                 $default['p'] = true;
                                 $default['id'] = $id;
                                 if (!empty($real_id)) {
                                     $default['shipmentid'] = $real_id;
                                 } else {
                                     $default['shipmentid'] = $shipmentid;
                                 }
                                 $default['price'] = $order_shipping;
                             }
                             // check if we already selected:
                             if (empty($default['p'])) {
                                 if (!empty($op_default_shipping_search)) {
                                     foreach ($op_default_shipping_search as $s) {
                                         if ($shipmentid == $s) {
                                             $default['id'] = $id;
                                             $default['shipmentid'] = $shipmentid;
                                             $default['price'] = $order_shipping;
                                             $default['p'] = true;
                                             break;
                                         }
                                     }
                                 }
                                 if (empty($default['p'])) {
                                     if (empty($opc_default_shipping) || $opc_default_shipping === 1) {
                                         if ($default['price'] > $order_shipping || empty($default['price']) && !empty($order_shipping)) {
                                             if ($op_default_shipping_zero && empty($order_shipping)) {
                                                 $default['id'] = $id;
                                                 $default['shipmentid'] = $shipmentid;
                                                 $default['price'] = $order_shipping;
                                             } else {
                                                 if (!$op_default_shipping_zero && !empty($order_shipping)) {
                                                     $default['id'] = $id;
                                                     $default['shipmentid'] = $shipmentid;
                                                     $default['price'] = $order_shipping;
                                                 }
                                             }
                                         }
                                     } else {
                                         if (!empty($opc_default_shipping) && $opc_default_shipping === 2) {
                                             // select the most expensive here:
                                             if ($default['price'] < $order_shipping || empty($default['price']) && !empty($order_shipping)) {
                                                 if (!$op_default_shipping_zero && !empty($order_shipping)) {
                                                     $default['id'] = $id;
                                                     $default['shipmentid'] = $shipmentid;
                                                     $default['price'] = $order_shipping;
                                                 }
                                             }
                                         }
                                     }
                                 }
                             }
                         }
                     }
                 }
                 if ($shippingpayment_price_display == 'basePrice') {
                     $paymentPriceType = 'paymentValue';
                 } else {
                     $paymentPriceType = 'salesPricePayment';
                 }
                 if (isset($prices[$shippingpayment_price_display . 'Payment'])) {
                     $payment_discount = -1 * $prices[$shippingpayment_price_display . 'Payment'];
                 } else {
                     if (!empty($prices[$paymentPriceType])) {
                         $payment_discount = -1 * $prices[$paymentPriceType];
                     } else {
                         $payment_discount = -1 * $prices['salesPricePayment'];
                     }
                 }
                 $payment_discount = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $payment_discount, false);
                 $tax_id = 0;
                 $taxname = array();
                 $taxrate = array();
                 $taxamount = array();
                 if (!empty($cart->cartData['DBTaxRulesBill'])) {
                     foreach ($cart->cartData['DBTaxRulesBill'] as $rule) {
                         $tax_id = $rule['virtuemart_calc_id'];
                         $taxname[$tax_id] = $rule['calc_name'];
                         $taxrate[$tax_id] = $rule['calc_value'];
                         $tax = $prices[$tax_id . 'Diff'];
                         if (empty($tax)) {
                             $tax = $cart->pricesUnformatted[$tax_id . 'Diff'];
                         }
                         if (!empty($tax)) {
                             $taxamount[$tax_id] = $tax;
                         }
                     }
                 }
                 if (!empty($cart->cartData['taxRulesBill'])) {
                     foreach ($cart->cartData['taxRulesBill'] as $x) {
                         $tax_id = $x['virtuemart_calc_id'];
                         $taxname[$tax_id] = $x['calc_name'];
                         $taxrate[$tax_id] = $x['calc_value'];
                         if (isset($prices[$tax_id . 'Diff'])) {
                             $tax = $prices[$tax_id . 'Diff'];
                         } else {
                             $tax = 0;
                         }
                         if (empty($tax) && isset($cart->pricesUnformatted[$tax_id . 'Diff'])) {
                             $tax = $cart->pricesUnformatted[$tax_id . 'Diff'];
                         }
                         // convert the tax
                         if (!empty($tax)) {
                             $tax = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $tax, false);
                             $taxamount[$tax_id] = $tax;
                         }
                     }
                 }
                 // this tax is already included in the subtotal
                 if (!empty($prices)) {
                     foreach ($prices as $k => $x2) {
                         if (isset($x2['Tax']) && is_array($x2['Tax'])) {
                             foreach ($x2['Tax'] as $ind => $r) {
                                 $tax_id = $ind;
                                 $taxname[$tax_id] = $r[0];
                                 $taxrate[$tax_id] = $r[1];
                                 if (isset($prices[$tax_id . 'Diff'])) {
                                     $tax = $prices[$tax_id . 'Diff'];
                                 }
                                 if (empty($tax)) {
                                     if (isset($cart->pricesUnformatted[$tax_id . 'Diff'])) {
                                         $tax = $cart->pricesUnformatted[$tax_id . 'Diff'];
                                     }
                                 }
                                 if (!empty($tax)) {
                                     $taxamount[$tax_id] = $tax;
                                 }
                             }
                         }
                     }
                 }
                 //stAn, 2.0.226:
                 //dynamic lines start
                 if (!empty($opc_dynamic_lines)) {
                     $types = array('DATax', 'VatTax', 'Tax', 'DBTax');
                     $results = array();
                     $resultsNames = array();
                     foreach ($prices as $key => $val) {
                         if (is_array($prices[$key])) {
                             if (!empty($prices[$key]['subtotal_tax_amount'])) {
                                 foreach ($types as $ttype) {
                                     if (!empty($prices[$key][$ttype])) {
                                         foreach ($prices[$key][$ttype] as $id => $calcOp) {
                                             if (empty($calcOp)) {
                                                 continue;
                                             }
                                             $tax = array();
                                             $tax['calc_name'] = $calcOp[0];
                                             $tax['calc_value'] = $calcOp[1];
                                             $tax['calc_value_mathop'] = $calcOp[2];
                                             $tax['calc_shopper_published'] = $calcOp[3];
                                             $tax['calc_currency'] = $calcOp[4];
                                             $tax['calc_params'] = $calcOp[5];
                                             $tax['virtuemart_vendor_id'] = $calcOp[6];
                                             $tax['virtuemart_calc_id'] = $calcOp[7];
                                             $res = $calc->interpreteMathOp($tax, $prices[$key]['subtotal']);
                                             if (!isset($results[$id])) {
                                                 $results[$id] = 0;
                                             }
                                             $results[$id] += $res - $prices[$key]['subtotal'];
                                             $resultsNames[$id] = JText::_($tax['calc_name']);
                                         }
                                     }
                                 }
                             }
                         }
                     }
                     $billRuls = array();
                     if (!empty($cart->OPCCartData['DBTaxRulesBill'])) {
                         foreach ($cart->OPCCartData['DBTaxRulesBill'] as $rule) {
                             if (empty($rule)) {
                                 continue;
                             }
                             $results[$rule['virtuemart_calc_id']] = $prices[$rule['virtuemart_calc_id'] . 'Diff'];
                             $restulsNamed[$rule['virtuemart_calc_id']] = $rule['calc_name'];
                             $billRuls[$rule['virtuemart_calc_id']] = $rule['virtuemart_calc_id'];
                         }
                     }
                     if (!empty($cart->OPCCartData['taxRulesBill'])) {
                         foreach ($cart->OPCCartData['taxRulesBill'] as $rule) {
                             if (empty($rule)) {
                                 continue;
                             }
                             $results[$rule['virtuemart_calc_id']] = $prices[$rule['virtuemart_calc_id'] . 'Diff'];
                             $restulsNamed[$rule['virtuemart_calc_id']] = $rule['calc_name'];
                             $billRuls[$rule['virtuemart_calc_id']] = $rule['virtuemart_calc_id'];
                         }
                     }
                     if (!empty($cart->OPCCartData['DATaxRulesBill'])) {
                         foreach ($cart->OPCCartData['DATaxRulesBill'] as $rule) {
                             if (empty($rule)) {
                                 continue;
                             }
                             $results[$rule['virtuemart_calc_id']] = $prices[$rule['virtuemart_calc_id'] . 'Diff'];
                             $restulsNamed[$rule['virtuemart_calc_id']] = $rule['calc_name'];
                             $billRuls[$rule['virtuemart_calc_id']] = $rule['virtuemart_calc_id'];
                         }
                     }
                     //DATaxRulesBill end
                     //shipping fee
                     if (!empty($results)) {
                         reset($results);
                         $first_key = key($results);
                         if (empty($prices['shipment_calc_id'])) {
                             if (!empty($prices['shipmentTax'])) {
                                 $results[$first_key] += $prices['shipmentTax'];
                             }
                         } else {
                             if (!is_array($prices['shipment_calc_id'])) {
                                 if (!empty($prices['shipmentTax'])) {
                                     if (!isset($results[$prices['shipment_calc_id']])) {
                                         $results[$prices['shipment_calc_id']] = 0;
                                     }
                                     $results[(int) $prices['shipment_calc_id']] += $prices['shipmentTax'];
                                 }
                             } else {
                                 foreach ($prices['shipment_calc_id'] as $calc_id) {
                                     if (!isset($results[$calc_id])) {
                                         $results[$calc_id] = 0;
                                     }
                                     $results[$calc_id] += $prices['shipmentTax'];
                                     // maybe we should add it just once !!!
                                 }
                             }
                         }
                         if (empty($prices['payment_calc_id'])) {
                             if (!empty($prices['paymentTax'])) {
                                 $results[$first_key] += $prices['paymentTax'];
                             }
                         } else {
                             if (!is_array($prices['payment_calc_id'])) {
                                 if (!empty($prices['paymentTax'])) {
                                     if (!isset($results[$prices['payment_calc_id']])) {
                                         $results[$prices['payment_calc_id']] = 0;
                                     }
                                     $results[$prices['payment_calc_id']] += $prices['paymentTax'];
                                 }
                             } else {
                                 foreach ($prices['payment_calc_id'] as $calc_id) {
                                     if (!isset($results[$calc_id])) {
                                         $results[$calc_id] = 0;
                                     }
                                     $results[$calc_id] += $prices['paymentTax'];
                                     // maybe we should add it just once !!!
                                 }
                             }
                         }
                     }
                     $dynamic = array();
                     foreach ($results as $key => $val) {
                         //this is for the bill taxes:
                         if (isset($prices[$key . 'Diff'])) {
                             if ($prices[$key . 'Diff'] > $val) {
                                 $val = $key . 'Diff';
                             }
                         }
                         $dynamic[$key]['value'] = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $val, false);
                         if (!isset($resultsNames[$key])) {
                             $db = JFactory::getDBO();
                             $q = 'select calc_name from #__virtuemart_calcs where virtuemart_calc_id = ' . (int) $key . ' limit 0,1';
                             $db->setQuery($q);
                             $resultsNames[$key] = $name = $db->loadResult();
                         }
                         $dynamic[$key]['name'] = $resultsNames[$key];
                     }
                     //stAn, 2.0.226 end
                     if (!empty($prices)) {
                         foreach ($prices as $k => $x2) {
                             if (strpos($k, 'Diff') !== false) {
                                 $k2 = str_replace('Diff', '', $k);
                                 if (!empty($results) && !array_key_exists($k2, $results)) {
                                     if (is_numeric($k2)) {
                                         $k2 = (int) $k2;
                                         $db = JFactory::getDBO();
                                         $q = 'select calc_name from #__virtuemart_calcs where virtuemart_calc_id = ' . $k2 . ' limit 0,1';
                                         $db->setQuery($q);
                                         $name = $db->loadResult();
                                         // to support multilang
                                         $name = JText::_($name);
                                         $dynamic[$k2]['name'] = $name;
                                         $val = 0;
                                         if (isset($cart->OPCCartData['VatTax'])) {
                                             if (isset($cart->OPCCartData['VatTax'][$k2])) {
                                                 if (isset($cart->OPCCartData['VatTax'][$k2]['taxAmount'])) {
                                                     $val = $cart->OPCCartData['VatTax'][$k2]['taxAmount'];
                                                     if (isset($prices['shipmentTax'])) {
                                                         $val += $prices['shipmentTax'];
                                                     }
                                                     if (isset($prices['paymentTax'])) {
                                                         $val += $prices['paymentTax'];
                                                     }
                                                 }
                                             }
                                         }
                                         if ($val == 0) {
                                             $val = $x2;
                                         }
                                         $dynamic[$k2]['value'] = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $val, false);
                                     }
                                 }
                             }
                         }
                     }
                 }
                 //dynamic lines end
                 // add shipment tax to it's plugins subtotal
                 if (!empty($prices['shipmentTax'])) {
                     if (isset($prices['shipment_calc_id'])) {
                         if (!is_array($prices['shipment_calc_id'])) {
                             if (!isset($taxamount[$prices['shipment_calc_id']])) {
                                 $taxamount[$prices['shipment_calc_id']] = 0;
                             }
                             $taxamount[$prices['shipment_calc_id']] += $prices['shipmentTax'];
                         } else {
                             foreach ($prices['shipment_calc_id'] as $calc_id) {
                                 if (!isset($taxamount[$calc_id])) {
                                     $taxamount[$calc_id] = 0;
                                 }
                                 $taxamount[$calc_id] += $prices['shipmentTax'];
                                 // maybe we should add it just once !!!
                                 // break;
                             }
                         }
                     }
                 }
                 if (!isset($tax)) {
                     $tax = 0;
                 }
                 if (!empty($prices['paymentTax'])) {
                     if (isset($prices['payment_calc_id'])) {
                         if (!is_array($prices['payment_calc_id'])) {
                             if (!isset($taxamount[$prices['payment_calc_id']])) {
                                 $taxamount[$prices['payment_calc_id']] = 0;
                             }
                             $taxamount[$prices['payment_calc_id']] += $prices['paymentTax'];
                         } else {
                             foreach ($prices['payment_calc_id'] as $calc_id) {
                                 if (!isset($taxamount[$calc_id])) {
                                     $taxamount[$calc_id] = 0;
                                 }
                                 $taxamount[$calc_id] += $prices['paymentTax'];
                             }
                         }
                     } else {
                         if (isset($prices['payment_tax_id'])) {
                             if (!isset($taxamount[$prices['payment_tax_id']])) {
                                 $taxamount[$prices['payment_tax_id']] = 0;
                             }
                             $taxamount[$prices['payment_tax_id']] += $prices['paymentTax'];
                         }
                     }
                 }
                 $order_tax = $prices['billTaxAmount'];
                 $order_tax = $currencyDisplay->convertCurrencyTo($virtuemart_currency_id, $order_tax, false);
                 // ok, here we should reprocess the coupon
                 if (!empty($payment_id_override)) {
                     $o = '<input type="hidden" id="payment_id_override_' . $payment_id . '" value="1"/>';
                     if (!defined('payment_id_override_' . $payment_id)) {
                         self::$totals_html .= $o;
                         define('payment_id_override_' . $payment_id, 1);
                     }
                     $payment_id = $payment_id_override;
                 }
                 self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_subtotal" value="' . $order_subtotal . '"/>';
                 $sum = (double) 0;
                 // this shows
                 if (count($taxname) >= 1 && empty($show_single_tax)) {
                     //if (!defined('.$idth.'_'.$payment_id.'_tax
                     $taxhtml = '';
                     foreach ($taxname as $id => $name) {
                         $rate = (double) $taxrate[$id] / 100;
                         if (empty($taxamount[$id])) {
                             continue;
                         }
                         $tax = $taxamount[$id];
                         if (!is_numeric($tax)) {
                             // we have a possible cross compatiblity error here
                             $tax = 0;
                         }
                         $sum += $tax;
                         self::$totals_html .= '<input type="hidden" name="' . $idth . '_' . $payment_id . '_tax" value="' . $rate . '|' . $tax . '"/>';
                         self::$totals_html .= '<input type="hidden" name="' . $idth . '_' . $payment_id . '_taxname" value="' . OPCloader::slash($name) . '"/>';
                     }
                 }
                 self::$totals_html .= '<input type="hidden" name="' . $idth . '_' . $payment_id . '_tax_all" id="' . $idth . '_' . $payment_id . '_tax_all" value="|' . $order_tax . '"/>';
                 if (!empty($dynamic)) {
                     foreach ($dynamic as $key => $val) {
                         if (!empty($dynamic[$key]['value'])) {
                             self::$totals_html .= '<input type="hidden" name="' . $idth . '_' . $payment_id . '_dynamic" rel="' . $key . '" id="' . $idth . '_' . $payment_id . '_dynamicvalue_' . $key . '" stringname="' . OPCloader::slash($dynamic[$key]['name']) . '" value="' . $dynamic[$key]['value'] . '"/>';
                         }
                     }
                 }
                 if (!empty($payment_discount)) {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_payment_discount" value="' . $payment_discount . '"/>';
                 } else {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_payment_discount" value="0.00"/>';
                 }
                 if (!empty($coupon_discount)) {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_coupon_discount" value="' . $coupon_discount . '"/>';
                 } else {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_coupon_discount" value="0.00"/>';
                 }
                 if (!empty($coupon_discount2)) {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_coupon_discount2" value="' . $coupon_discount2 . '"/>';
                 } else {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_coupon_discount2" value="0.00"/>';
                 }
                 if (!empty($order_shipping)) {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_order_shipping" value="' . $order_shipping . '"/>';
                 } else {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_order_shipping" value="0.00"/>';
                 }
                 if (!empty($order_shipping_tax)) {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_order_shipping_tax" value="' . $order_shipping_tax . '"/>';
                 } else {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_order_shipping_tax" value="0.00"/>';
                 }
                 if (!empty($order_total)) {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_order_total" value="' . $order_total . '"/>';
                 } else {
                     self::$totals_html .= '<input type="hidden" id="' . $idth . '_' . $payment_id . '_order_total" value="0.00"/>';
                 }
             }
         }
     }
     unset($ke);
     unset($html2);
     if (!empty($unset_zero)) {
         unset($shipping_array['zero_shipment']);
     }
     unset($payment_array['zero_payment']);
     if (!empty($shipping_array)) {
         unset($shipping_array['choose_shipping']);
     }
     $wrapper = '<!--shipping_goes_here-->';
     $num = 1;
     if (!empty($shipping_array)) {
         if (!empty($shipping_inside)) {
             $num = 0;
             $ret = OPCTransform::shippingToSelect($shipping_array, $num, $cart);
             if (!empty($num)) {
                 $html .= $ret;
             }
         }
     }
     if (!empty($shipping_array)) {
         if (empty($shipping_inside) || empty($num)) {
             $htmla = array();
             foreach ($shipping_array as $ke => &$html2) {
                 if (strpos($html2, 'virtuemart_shipmentmethod_id') !== false) {
                     $tmp = $tmp2 = $shipping_array[$ke];
                     //substr($shipping_array[$ke], $x1, $x2);
                     if (!empty($default)) {
                         $shipmentid = (string) $default['shipmentid'];
                     } else {
                         $shipmentid = '';
                     }
                     if (strpos($tmp, '"' . $shipmentid . '"') !== false) {
                         $tmp = str_replace('checked="checked"', '', $tmp);
                         $tmp = str_replace('checked', '', $tmp);
                         //virtuemart_shipmentmethod_id
                         $tmp = str_replace('name="virtuemart_shipmentmethod_id"', ' autocomplete="off" name="virtuemart_shipmentmethod_id"', $tmp);
                         if (!empty($default)) {
                             $tmp = $this->str_replace_once('"' . $shipmentid . '"', '"' . $shipmentid . '" checked="checked" ', $tmp);
                         }
                     }
                     $tmp = str_replace('name="virtuemart_shipmentmethod_id"', 'name="virtuemart_shipmentmethod_id" onclick="javascript:Onepage.changeTextOnePage3(op_textinclship, op_currency, op_ordertotal);" ', $tmp);
                     //if (strpos($tmp, 'shipment_id_'.$id.'"')!== false) $tmp.' ok sel ';
                     $shipping_array[$ke] = $tmp;
                     //str_replace($shipping_array[$ke], $tmp, $shipping_array[$ke]);
                     $x1 = strpos($shipping_array[$ke], '<input');
                     $x1a = basketHelper::strposall($shipping_array[$ke], '<input');
                     if (!empty($x1a)) {
                         foreach ($x1a as $x1) {
                             $x2 = strpos($shipping_array[$ke], '>', $x1 + 1);
                             if ($x2 !== false) {
                                 if (substr($shipping_array[$ke], $x2 - 1, 1) != '/') {
                                     // fixed a bug in 2.0.87 !! otherwise the shipping method might be rendered incorrectly
                                     $a1 = substr($shipping_array[$ke], 0, $x2);
                                     $a2 = substr($shipping_array[$ke], $x2);
                                     $shipping_array[$ke] = $a1 . '/' . $a2;
                                 }
                             }
                         }
                     }
                 }
                 //$html .= $shipping_array[$ke].'<br />';
                 //echo 'sa:'.$shipping_array[$ke].'endsa';
                 if (strpos($shipping_array[$ke], '<!--shipping_goes_here-->') === false) {
                     $htmla[] = $shipping_array[$ke] . '<br />';
                 } else {
                     $wrapper = $shipping_array[$ke] . '<br />';
                 }
             }
             $vars = array('shipping' => $htmla, 'cart' => $cart);
             if (!class_exists('OPCrenderer')) {
                 require JPATH_SITE . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'renderer.php';
             }
             $renderer = OPCrenderer::getInstance();
             $htmlr = $renderer->fetch($renderer, 'list_shipping_methods.tpl', $vars);
             if (empty($htmlr)) {
                 $html .= implode('', $htmla);
             } else {
                 $html .= $htmlr;
             }
             // create html:
         }
     }
     $html = str_replace('<!--shipping_goes_here-->', $html, $wrapper);
     if (strpos($html, 'checked') === false) {
         $html = $this->str_replace_once('"virtuemart_shipmentmethod_id"', '"virtuemart_shipmentmethod_id" checked="checked"', $html);
     }
     include JPATH_SITE . DS . 'components' . DS . 'com_onepage' . DS . 'helpers' . DS . 'third_party' . DS . 'third_party_clear_shipping.php';
     // clear the settings:
     $cart->virtuemart_shipmentmethod_id = 0;
     $cart->virtuemart_paymentmethod_id = 0;
     $cart->automaticSelectedShipment = false;
     $cart->automaticSelectedPayment = false;
     $cart->setCartIntoSession();
     if (method_exists($calc, 'setCartPrices')) {
         $calc->setCartPrices(array());
     }
     return $html;
 }