呈现特定报价的总计

时间:2016-02-10 10:19:05

标签: magento magento-1.8

我想使用磁性原生渲染显示引用总数,但它不显示任何内容。实际上我想把它显示为pdf,我生成的特定报价不是结帐车。要做到这一点,我写了下面的代码,但它不起作用。任何人请帮助我。

以下是我的total.phtml

<?php
  $quote = Mage::getModel('sales/quote')->load('121');
  Mage::getSingleton('checkout/cart')->setQuote($quote)->saveQuote();
  echo "<pre>";print_r(Mage::getSingleton('checkout/cart')->getQuote()->getTotals());echo "</pre>";exit;


?>
<?php if(!Mage::getModel('masteradmin/session')->getIsstarPrice()):?>
  <?php if ($this->canApplyMsrp()): ?>
    <div class="cart-msrp-totals"><?php echo $this->__('ORDER TOTAL WILL BE DISPLAYED BEFORE YOU SUBMIT THE ORDER'); ?></div>
  <?php else: ?>
    <table id="shopping-cart-totals-table" style="border-bottom:1px solid #000;padding-bottom:10px">
        <col />
        <col width="1" />

        <tbody>
            <?php echo $this->renderTotals(); ?>
        </tbody>
        <tfoot>
            <?php echo $this->renderTotals('footer'); ?>
        </tfoot>
    </table>
  <?php endif; ?>
<?php endif; ?>

0 个答案:

没有答案