Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ストアの配送方法を実装しています。私の方法は小計値に基づいているため、モジュールで小計値を取得する必要があります。magento 2.2で小計値を呼び出すにはどうすればよいですか?
私は自分で答えを見つけました。小計を呼び出して、必要な場所で使用する方法は次のとおりです。
$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $cart = $objectManager->get('\Magento\Checkout\Model\Cart'); $grandTotal = $cart->getQuote()->getGrandTotal();