如何在opencart中将总购物车重量添加到发票中?

时间:2015-02-06 10:36:07

标签: php opencart invoice

我正在opencart 1.5.6上开发一个电子商务网站。网站几乎准备好但我坚持1点。 例如,我的购物车中有4个产品,每个产品重100克。我已在每张产品的发票中添加了重量列。但现在我想显示购物车的总重量或所有产品重量的总和。  我得到了裁判。从这里增加重量: http://www.opencartaz.com/opencart/-vqmod-add-weight-to-invoice.html

这是附带的截图。

enter image description here

请帮帮我。

1 个答案:

答案 0 :(得分:1)

您使用的是vqmod?

在文件admin/view/template/sale/order_invoice.tpl中搜索<?php foreach ($order['voucher'] as $voucher) { ?>

将位置设置为之前并添加:

<tr>
  <td align="right" colspan="4"><b>Total Weight:</b></td>
  <td align="right"><?php 
    $total_weight = 0;
    foreach($order['product'] as $product) {
      $total_weight += $product['weight'];
    }
    echo $total_weight;
  ?></td>
  <td> </td>
</tr>

这将在产品列表和优惠券之间添加总产品重量。