Freitag, den 24. September 2010 um 07:42 Uhr
Magento rechnet die verschiedenen Mehrwertsteuersätze einer Bestellung zusammen und zeigt diese unter anderem auch in der Bestellbestätigung. Nun ist es aber in Duetschland so, dass die sehr viele Shops nur Artikel mit dem vollen Mehrtwertsteuersatz vertreiben. Die Aufzählung des einen Satzes, zusammen mit der Summe der MwSt. wirkt dann wie eine unnötige doppelte Angabe. Einfach fehlerhaft. Und dass möchte der erfahrene Magento Programmierer ja nicht...
Das Template das zu ändern ist wäre in diesem Falle tax/order/tax.phtml. Die erste foreach Schleife, die über die Variable $rate iteriert ist zu deaktivieren. Dann wird auf die Zusammenfassung verzichtet. Alternativ könnte man auch fragen ob mehr als eine Rate hinterlegt, aber eigenlicht sollte Magento diese Logik von Haus aus beherrschen. Hier mal der vollständigkeit halber das komplette Template.
<?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE_AFL.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magentocommerce.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * * @category design * @package base_default * @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> <?php $_order = $this->getOrder(); $_source = $this->getSource(); $_fullInfo = $_source->getFullTaxInfo(); global $taxIter; $taxIter++; ?> <?php ?> <?php if ($this->displayFullSummary()): ?> <?php $isTop = 1; ?> <?php if ($_fullInfo) foreach ($_fullInfo as $info): ?> <?php $percent = $info['percent']; $amount = $info['amount']; $rates = $info['rates']; $isFirst = 1; ?> <?php foreach ($rates as $rate): ?> <!-- the summary of each tax rate is not required in this shop --> <?php continue; # DISABLED BY RK ?> <tr class="summary-details-<?php echo $taxIter; ?> summary-details<?php if ($isTop): echo ' summary-details-first'; endif; ?>"<?php if (!$this->getIsPlaneMode()):?> style="display:none;"<?php endif;?>> <td <?php echo $this->getLabelProperties()?>> <?php echo $rate['title']; ?> <?php if ($rate['percent']): ?> (<?php echo $rate['percent']; ?>%) <?php endif; ?> </td> <?php if ($isFirst): ?> <?php echo $_order->formatPrice($amount); ?> </td> <?php endif; ?> </tr> <?php $isFirst = 0; ?> <?php $isTop = 0; ?> <?php endforeach; ?> <?php endforeach; ?> <?php endif;?> <?php if ($this->displayFullSummary() && $_fullInfo && !$this->getIsPlaneMode()): ?> <tr class="summary-total" onclick="expandDetails(this, '.summary-details-<?php echo $taxIter;?>')"> <?php elseif ($this->displayFullSummary() && $_fullInfo && $this->getIsPlaneMode()): ?> <tr class="show-details"> <?php else: ?> <tr> <?php endif; ?> <td <?php echo $this->getLabelProperties()?>> <?php if ($this->displayFullSummary()): ?> <div class="summary-collapse"><?php echo $this->__('Tax'); ?> <?php echo $rates[0]['percent'] ?>%</div> <?php else: ?> <?php echo $this->__('Tax'); ?> <?php endif;?> </td> <td <?php echo $this->getValueProperties()?>><?php echo $_order->formatPrice($_source->getTaxAmount()) ?></td> </tr>
| Weiter > |
|---|