本文整理匯總了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');
?>