Direkt zum Inhalt

MwSt in UVP wird nicht angezeigt

Es besteht in Drupal Commerce mit dem Zusatz Module "Drupal Commerce Extra Price Formatters" das Problem, das die MwSt nicht in die unverbindliche Preisempfehlung mit eingerechnet wird. Dieser kleine Code Snippets ändert das Problem.

Ab der Zeile 414 im commerce_extra_price_formatters.module die Zeile ändern.

Es gibt auch hier ein Patch dafür.

MwSt in UVP

-      if (substr($component_name, 0, 3) == 'tax') {
+      if (substr($component_name, 0, 3) == 'tax' || substr($component_name, 0, 3) == 'vat') {

Der Komplete Code Block

// line 414.

$web_price = $variables['components']['commerce_price_rrp_your_price']['formatted_price'];
  $rrp = $variables['components']['base_price']['price']['amount'];

  if ($variables['options']['include_tax_in_rrp'] == TRUE) {
    foreach ($variables['components'] as $component_name => $component_value) {
      if (substr($component_name, 0, 3) == 'tax' || substr($component_name, 0, 3) == 'vat') {
        $rrp += $component_value['price']['amount'];
      }
    }
  }

 

Teile diesen Beitrag

Kommentare (0)