我希望修改电子商务平台(OpenCart - 基于PHP MVC)的折扣显示方式。
默认行为是折扣将显示为:
我更愿意:
通过模板文件(下面提供的代码)很容易删除“或更多”文本。
对于除最后一个元素之外的所有元素,这将需要从下一个元素获取数量键($ discount ['quantity'])并应用基本数学函数( - 1),然后返回除原始元素之外的新值。
对于最后一个元素,我需要简单地返回最后一个数量值并添加“+”文本。
原始代码(控制器):
$discounts = $this->model_catalog_product->getProductDiscounts($this->request->get['product_id']);
$this->data['discounts'] = array();
foreach ($discounts as $discount) {
$this->data['discounts'][] = array(
'quantity' => $discount['quantity'],
'price' => $this->currency->format($this->tax->calculate($discount['price'], $product_info['tax_class_id'], $this->config->get('config_tax')))
);
}
原始代码(模板):
<?php if ($discounts) { ?>
<div class="discount">
<?php foreach ($discounts as $discount) { ?>
<span><?php echo sprintf($text_discount, $discount['quantity'], $discount['price']); ?></span>
<?php } ?>
</div>
<?php } ?>
修改代码以从模板中删除“或更多”文本(注意:单独的echo用于允许表格格式化 - 为了保持简洁性,不包括这些标记):
<?php if ($discounts) { ?>
<div class="discount">
<?php foreach ($discounts as $discount) { ?>
<?php echo $discount['quantity']; ?><?php echo $discount['price']; ?>
<?php } ?>
</div>
<?php } ?>
如何进一步修改此代码以返回首选格式的数量?
注意:阵列非常小,但我仍然会将性能视为优先考虑事项。
修改
感谢tttony提供以下解决方案。这是我在模板文件中用于自定义表格式化的代码(没有sprintf /格式化字符串函数)。
<?php for ($i=0; $i < count($discounts) -1; $i++) { ?>
<tr>
<td><?php echo $discounts[$i]['quantity']; ?> - <?php echo (int)$discounts[$i+1]['quantity'] - 1; ?></td>
<td><?php echo $discounts[$i]['price']; ?></td>
</tr>
<?php } ?>
<?php if (count($discounts)) { ?>
<tr>
<td><?php echo $discounts[$i]['quantity']; ?>+</td>
<td><?php echo $discounts[$i]['price']; ?></td>
</tr>
<?php } ?>
答案 0 :(得分:0)
您可以在product.php
控制器文件
$discounts = $this->model_catalog_product->getProductDiscounts($this->request->get['product_id']);
$discounts_formated = array();
for ($i=0; $i < count($discounts) -1; $i++) {
$discounts_formated[] = sprintf("%s - %s", $discounts[$i]['quantity'], (int)$discounts[$i+1]['quantity'] - 1);
}
// Last discount: 30+
$discounts_formated[] = sprintf("%s+", $discounts[$i]['quantity']);
var_dump($discounts_formated);
输出:
array (size=3)
0 => string '10 - 19' (length=7)
1 => string '20 - 29' (length=7)
2 => string '30+' (length=3)
修改强>
编辑文件product.tpl
,我使用OC 1.5.6.4进行了测试,并且它正在运行
<?php if ($discounts) { ?>
<br />
<div class="discount">
<?php for ($i=0; $i < count($discounts) -1; $i++) { ?>
<?php echo sprintf("%s - %s: %s", $discounts[$i]['quantity'], (int)$discounts[$i+1]['quantity'] - 1, $discounts[$i]['price']); ?><br />
<?php } ?>
<?php if (count($discounts)) { // last discount ?>
<?php echo sprintf("%s+: %s", $discounts[$i]['quantity'], $discounts[$i]['price']); ?><br />
<?php } ?>
</div>
<?php } ?>
将打印出类似的内容:
10 - 19: $88.00
20 - 29: $77.00
30+: $66.00