سؤال

I am developing a Magento 2 Payment Gateway now I need to get order total to make the payment how to get it on Magento 2 using Magento Cart Models?

Thanks

هل كانت مفيدة؟

المحلول

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$cart = $objectManager->get('\Magento\Checkout\Model\Cart'); 
$grandTotal = $cart->getQuote()->getGrandTotal();

نصائح أخرى

You can get the subtotal using following code :

// Magento\OfflineShipping\Model\Carrier;

public function collectRates(RateRequest $request)
{

    $request->getBaseSubtotalInclTax();
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى magento.stackexchange
scroll top