Jump to content
xt:Commerce Community Forum

{$ust} ändern, nur wie?


Recommended Posts

Hallo,

wo kann ich die "{$UST}" ändern? Wollte gerne "inkl. MwSt. 19%: 0,50 EUR" in 2 Teilen haben.

Mein Quellcodes schauts wie folgt aus ...

<div class="mwst">
<label class="left width290">inkl. MwSt. 19%:</label>
<div class="money width70">0,50 EUR</div>
</div>[/PHP]

Wenn ich aber das {$UST}, kann ich meinen Quellcode irgendwie vergessen. Denn ich versuche ja mit CSS dann das left-Teil auf die linke Seite zu setzen und das money-Teil auf die rechte Seite. So das es dann tabellarisch ausschaut.

So in etwa wie hier auf diesen Screenshot:

[center]nqgzhlSrOX.png[/center]

LG

Link to comment
Share on other sites

Hallo,

habe wie folgt gemacht ...

die shopping_cart.php von

	function show_tax($format = true) {
global $xtPrice;
$this->calculate();
$output = " ";
$val=0;
foreach ($this->tax as $key => $value) {
if ($this->tax[$key]['value'] > 0 ) {
$output .= $this->tax[$key]['desc'].": ".$xtPrice->xtcFormat($this->tax[$key]['value'], true)."<br />";
$val = $this->tax[$key]['value'];
}
}
if ($format) {
return $output;
} else {
return $val;
}
}[/php]

in

[php] function show_tax($format = true) {
global $xtPrice;
$this->calculate();
$output = "(";
$val=0;
foreach ($this->tax as $key => $value) {
if ($this->tax[$key]['value'] > 0 ) {
$output .= $this->tax[$key]['desc'].") ".$xtPrice->xtcFormat($this->tax[$key]['value'], true)."<br />";
$val = $this->tax[$key]['value'];
}
}
if ($format) {
return $output;
} else {
return $val;
}
}

geändert ...

dann habe ich in der lang_german.conf

text_ust = 'Mehrwertsteuer'

erstellt ...

und in der box_cart.html folgendes eingegeben

{if $empty=='false'}
<div class="row">
<label class="left width290 tax">{#text_ust#}</label>
<div class="money width70 tax">{$UST}</div>
</div>
<div class="basketright totalcosts">
<label class="left width290">{#text_total#}</label>
<div class="money width70">{$TOTAL}</div>
</div>
{else}
<div class="row">
<label class="left width290 tax">{#text_ust#}</label>
<div class="money width70 tax">0,00 {$smarty.session.currency}</div>
</div>
<div class="basketright totalcosts">
<label class="left width290">{#text_total#}</label>
<div class="money width70">0,00 {$smarty.session.currency}</div>
</div>
{/if}[/php]

[center]wbb9lP2fc6.png[/center]

Mich stört eben das [b]inkl.[/b] ... mache ich es in german.php weg, fehlt es mir vielleicht woanders ...

LG

Link to comment
Share on other sites

Archived

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

×
  • Create New...