web-dev-qa-db-ja.com

Magentoはカートの単品価格を含みます。税金

私はかなり奇妙な問題を抱えています。誰かがこれを手伝ってくれることを願っています。

これが私の問題に影響を与える主な設定設定です:

  • 管理パネルのカタログ価格は税込みで表示されます
  • フロントエンドのカタログ価格は税込みで表示されます
  • ショッピングカート内のアイテムは税抜きで表示されます(したがって、小計の近くに個別に表示されます)。

これまでのところ、すべてが正常に機能しています。問題は、カスタムajaxミニカートモジュールにあります。カートから商品のコレクションを取得しますが、ショッピングカートの商品から価格を取得しているため、税金なしで取得できます。

これが私が言っていることを例示するためのいくつかのコードです。 20%税と、管理価格(税込み)が120 $に設定されている製品、費用がかかるオプション60 $を想定します。 =(税込)。税金を除くと、これらは100 $および50 $になります。価格+オプション+税金を取得したい=> 180 $

$quote = Mage::getSingleton('checkout/session')->getQuote();
$items = $quote->getAllVisibleItems();
foreach ($items as $item) {
    echo $item->getPrice(); // 150$ - price excluding tax
    echo $item->getPriceInclTax(); // 150$ - price excluding tax
    echo $item->getProduct()->getPrice(); // 120$ price including tax, BUT without the customer selected options.
}

PS:私が話しているカスタムオプションは、ユーザーが選択したものです。たとえば、製品の価格に+ 50 $を追加するインストールチェックボックスです。

10
Vlad Preda

正確な問題の解決策は見つかりませんでしたが、この正確な機能を模倣するように設定を変更したところ、発生した問題はなくなりました。

まず、サイトのすべての税金を削除し、magentoにすべての価格に税金が含まれていないことを伝えました(税金は含まれていますが)。

減税は、カスタムグループに適用されるプロモーションを通じて行われるようになりました。

$tax = 20; // percent 

私はの削減を追加します

(1 - (1 / ($tax / 100 + 1)))*100 
// for 20% tax => 16.6667% reduction
// for 24% tax => 19.3548% reduction

小数点以下4桁(magentoが受け入れるのと同じです)。時々1セントの誤差があるかもしれません-それでこれが問題でないなら、それのために行ってください!

これで、Webサイト全体の価格が製品に対して正確に表示されます(プロモーションは製品ごとではなくカートごとに適用されるため)。

1
Vlad Preda
- Get products id, name, price, quantity, etc. present in your cart.
- Get number of items in cart and total quantity in cart.
- Get base total price and grand total price of items in cart.

Get all items information in cart
// $items = Mage::getModel('checkout/cart')->getQuote()->getAllItems();
$items = Mage::getSingleton('checkout/session')->getQuote()->getAllItems();

foreach($items as $item) {
    echo 'ID: '.$item->getProductId().'<br />';
    echo 'Name: '.$item->getName().'<br />';
    echo 'Sku: '.$item->getSku().'<br />';
    echo 'Quantity: '.$item->getQty().'<br />';
    echo 'Price: '.$item->getPrice().'<br />';
    echo "<br />";           
}

Get total items and total quantity in cart
$totalItems = Mage::getModel('checkout/cart')->getQuote()->getItemsCount();
$totalQuantity = Mage::getModel('checkout/cart')->getQuote()->getItemsQty();

Get subtotal and grand total price of cart
$subTotal = Mage::getModel('checkout/cart')->getQuote()->getSubtotal();
$grandTotal = Mage::getModel('checkout/cart')->getQuote()->getGrandTotal();
2
Gaurang

$item->getOptions()の出力は何ですか? $item->getData('price')を試しましたか?カスタムオプションをどのように適用しますか? $item->debug()の出力は何ですか?多分あなたはそこであなたが必要とするものを見つけることができます。

よろしくサイモン

1

やってみました:

$product->getFinalPrice();

// or this?
$product->getPriceModel()->getFinalPrice($qty, $product);
1
Andrew

ヘッダーにカートの数量を表示します

if ($parentBlock = $this->getParentBlock()) {
$count = $this->helper('checkout/cart')->getSummaryCount();
if( $count == 1 ) {
echo $text = $this->__('My Cart (%s item)', $count);
} elseif( $count > 0 ) {
echo $text = $this->__('My Cart (%s items)', $count);
} else {
echo $text = $this->__('My Cart (0 items)');
}
}

私のヘッダーにカートの合計価格を表示します

$grandTotal = $this->helper('checkout/cart')->getQuote()->getGrandTotal();
echo $text .= $this->__(' Total: %s', $this->helper('core')->formatPrice($grandTotal, false));
0
Gaurang

あなたはこれを試すことができます:

$grandTotal = $this->helper('checkout/cart')->getQuote()->getGrandTotal();
echo $text .= $this->__(' Total: %s', $this->helper('core')->formatPrice($grandTotal, false));
0
punit