1

税務情報は注文レベルで保持されているようですが、その設定者/取得者が表示されません。

見積もりアイテムや配送先住所に関連している可能性がありますか?

税金が注文にどのように関係しているか知っている人はいますか?

4

1 に答える 1

10

計算後の税金のsales_orderテーブルには次のフィールドがあります。

| tax_refunded                | decimal(12,4)
| tax_canceled                | decimal(12,4)
| base_tax_refunded           | decimal(12,4)
| base_tax_canceled           | decimal(12,4)
| tax_invoiced                | decimal(12,4)
| base_tax_invoiced           | decimal(12,4)
| shipping_tax_amount         | decimal(12,4)
| base_shipping_tax_amount    | decimal(12,4)
| shipping_tax_refunded       | decimal(12,4)
| base_shipping_tax_refunded  | decimal(12,4)

注文オブジェクトがある場合は、通常のMagentoゲッターを使用してこのデータを取得できます。例えば

$taxRefunded = $order->getTaxRefunded();

お役に立てば幸いです。

ありがとう、ジョー

于 2010-03-18T18:39:17.297 に答える