本文整理汇总了PHP中shopFunctionsF::getTaxNameWithValue方法的典型用法代码示例。如果您正苦于以下问题:PHP shopFunctionsF::getTaxNameWithValue方法的具体用法?PHP shopFunctionsF::getTaxNameWithValue怎么用?PHP shopFunctionsF::getTaxNameWithValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类shopFunctionsF
的用法示例。
在下文中一共展示了shopFunctionsF::getTaxNameWithValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
echo tsmText::_('COM_VIRTUEMART_TOTAL_INCL_TAX');
?>
</td>
<?php
if (tsmConfig::get('show_tax')) {
?>
<td ></td>
<?php
}
?>
<td></td>
</tr><?php
}
foreach ($this->cart->cartData['VatTax'] as $vatTax) {
if (!empty($vatTax['result'])) {
echo '<tr class="sectiontableentry' . $i . '">';
echo '<td colspan="4" align="right">' . shopFunctionsF::getTaxNameWithValue($vatTax['calc_name'], $vatTax['calc_value']) . '</td>';
echo '<td align="right"><span class="priceColor2">' . $this->currencyDisplay->createPriceDiv('taxAmount', '', $vatTax['result'], FALSE, false, 1.0, false, true) . '</span></td>';
echo '<td></td><td></td>';
echo '</tr>';
}
}
}
}
}
?>
</table>
</fieldset>
示例2: reset
?>
<td align="right" width="6%"><strong><?php
echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_QTY');
?>
</strong></td>
<?php
if ($this->doctype == 'invoice') {
?>
<?php
if (VmConfig::get('show_tax')) {
?>
<td align="right" width="10%" ><strong><?php
if (count($taxBill) == 1) {
reset($taxBill);
$t = current($taxBill);
echo shopFunctionsF::getTaxNameWithValue($t->calc_rule_name, $t->calc_value);
} else {
echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_PRODUCT_TAX');
}
?>
</strong></td>
<?php
}
?>
<td align="right" width="11%"><strong><?php
echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_SUBTOTAL_DISCOUNT_AMOUNT');
?>
</strong></td>
<td align="right" width="11%"><strong><?php
echo vmText::_('COM_VIRTUEMART_ORDER_PRINT_TOTAL');
?>