Jump to content
xt:Commerce Community Forum

Text abh?ngig vom Preis (inkl. od. exkl. MwSt.)


Timber

Recommended Posts

Also ich h?tte gerne in der product_listing folgende Ausgabe:

F?r Endkunden:

2.049,00 EUR

Preis inkl. MwSt.

und zzgl. Versand

und f?r Reseller:

1.766,38 EUR

Preis zzgl. MwSt.

und zzgl. Versand

Jetzt bin ich hingegangen und habe in der product_listing.php folgendes hinzugef?gt:


// BEGIN MWST ?berpr?fung

 if ($_SESSION['customer_status']['customer_status_id'] == '3' || $_SESSION['customer_status']['customer_status_id'] == '0') {

  $mwstr='0';

 }

 if ($_SESSION['customer_status']['customer_status_id'] == '1' || $_SESSION['customer_status']['customer_status_id'] == '2') {

  $mwstr='1';

 }

 $module_smarty->assign('MWST',$mwstr);

 // ENDE MWST ?berpr?fung
In der product_listing_v1.html habe ich folgendes eingef?gt:

Preis {if $MWST == 0}zzgl.{/if}{if $MWST == 1}inkl.{/if} MwSt.

und zzgl. Versand

Leider scheint aber die ?bergabe der Variable aus der product_listing.php in die product_listing_v1.html nicht zu klappen, also die Zeile

 $module_smarty->assign('MWST',$mwstr);

Kann mir vielleicht jemand erkl?ren, wie ich die Variable $mwstr so ?bergebe, dass ich sie wie oben versucht nutzen kann?

Ich komme n?mlich mit diesem Smarty ged?nse nicht klar.

Danke im vorraus.

Link to comment
Share on other sites

  • 10 months later...
  • 3 months later...

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...