在為購物車和結帳計算稅金時調用,這可用於操縱應用於購物車總數或相關結帳付款意圖的稅率。
參數
變量 | 類型 | 注意 |
---|---|---|
clientData | array | null |
cartData | \ItemInterface[] | 購物車中保存的所有數據的數組。 |
響應
返回操作的ItemInterface 項的數組。稅收將從原始項目的增量計算。
示例代碼
<?php
use WHMCS\View\Formatter\Price;
add_hook('CartItemsTax', '1', function ($vars) {
$cartItems = $vars['cartData'];
$client = $vars['clientData'];
// Calculate your tax rate to apply
$taxRate = 1.5; // 50%
/** @var \WHMCS\Cart\Item\ItemInterface $item */
foreach ($cartItems as $item) {
if (!$item->isTaxed()) {
continue;
}
/** @var Price $amountToday */
$amountToday = $item->getAmount();
// Set the price due today for the item
$item->setAmount(new Price(
($amountToday->toNumeric() * $taxRate),
$amountToday->getCurrency()
));
if ($item->isRecurring()) {
/** @var Price $recurringAmount */
$recurringAmount = $item->getRecurringAmount();
// Set the recurring price of the item
$item->setRecurringAmount(
new Price(
($recurringAmount->toNumeric() * $taxRate),
$recurringAmount->getCurrency()
)
);
}
}
return [
'cartData' => $cartItems
];
});
相關用法
- PHP WHMCS CartTotalAdjustment用法及代碼示例
- PHP WHMCS CartSubdomainValidation用法及代碼示例
- PHP CachingIterator __construct()用法及代碼示例
- PHP CachingIterator getCache()用法及代碼示例
- PHP CachingIterator current()用法及代碼示例
- PHP WHMCS CalcAffiliateCommission用法及代碼示例
- PHP CachingIterator key()用法及代碼示例
- PHP CachingIterator setFlags()用法及代碼示例
- PHP WHMCS CapturePayment用法及代碼示例
- PHP CachingIterator next()用法及代碼示例
- PHP CachingIterator rewind()用法及代碼示例
- PHP WHMCS CancellationRequest用法及代碼示例
- PHP CachingIterator getFlags()用法及代碼示例
- PHP CachingIterator getInnerIterator()用法及代碼示例
- PHP WHMCS CancelOrder用法及代碼示例
- PHP WHMCS CancelAndRefundOrder用法及代碼示例
- PHP WHMCS ClientAreaPageDownloads用法及代碼示例
- PHP WHMCS ClientAreaHeaderOutput用法及代碼示例
- PHP WHMCS CreateProject用法及代碼示例
- PHP WHMCS ClientAreaPageSupportTickets用法及代碼示例
- PHP WHMCS ClientAreaPageDomainDNSManagement用法及代碼示例
- PHP WHMCS ClientAreaPageAffiliates用法及代碼示例
- PHP WHMCS ClientAreaPageViewInvoice用法及代碼示例
- PHP WHMCS ClientAreaPageProductsServices用法及代碼示例
- PHP WHMCS CustomFieldSave用法及代碼示例
注:本文由純淨天空篩選整理自whmcs.com大神的英文原創作品 CartItemsTax。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。