Magento - 获取在totals.phtml中按顺序使用的付款方式

时间:2015-02-13 18:17:09

标签: php magento

我正在使用Magento 1.9.0.1,我想在totals.phtml中获取二手订单付款方式

以下是我所拥有的:totals.phtml:

<?php foreach ($this->getTotals() as $_code => $_total): ?>
    <?php if ($_total->getBlockName()): ?>
        <?php echo $this->getChildHtml($_total->getBlockName(), false); ?>
    <?php else:?>
    <tr class="<?php echo $_code?>">
        <td <?php echo $this->getLabelProperties()?>>
            <?php if ($_total->getStrong()):?>
            <strong><?php echo $this->escapeHtml($_total->getLabel());?></strong>
            <?php else:?>
            <?php echo $this->escapeHtml($_total->getLabel());?>
            <?php endif?>
        </td>
        <td <?php echo $this->getValueProperties()?>>
            <?php if ($_total->getStrong()):?>
            <strong><?php echo $this->formatValue($_total) ?></strong>
            <?php else:?>
            <?php echo $this->formatValue($_total) ?>
            <?php endif?>
        </td>
    </tr>
    <?php endif?>
<?php endforeach?>

我希望通过<?PHP echo $PaymentMethod; ?>

等付款方式获得简单的回音

如何获得订单使用的付款方式?

1 个答案:

答案 0 :(得分:1)

尝试使用此代码:

<?php echo $this->getOrder()->getPayment()->getMethod(); ?>

它将返回使用的付款方式的代码。