本文整理汇总了PHP中Price::setSymbol方法的典型用法代码示例。如果您正苦于以下问题:PHP Price::setSymbol方法的具体用法?PHP Price::setSymbol怎么用?PHP Price::setSymbol使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Price
的用法示例。
在下文中一共展示了Price::setSymbol方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Amount
public function Amount($order)
{
$shopConfig = ShopConfig::current_shop_config();
$amount = new Price();
$amount->setAmount($order->SubTotal()->getAmount() * ($this->Rate / 100));
$amount->setCurrency($shopConfig->BaseCurrency);
$amount->setSymbol($shopConfig->BaseCurrencySymbol);
return $amount;
}
示例2: Amount
public function Amount()
{
// TODO: Multi currency
$shopConfig = ShopConfig::current_shop_config();
$amount = new Price();
$amount->setAmount($this->Price);
$amount->setCurrency($shopConfig->BaseCurrency);
$amount->setSymbol($shopConfig->BaseCurrencySymbol);
$this->extend('updateAmount', $amount);
return $amount;
}
开发者ID:helpfulrobot,项目名称:swipestripe-swipestripe-flatfeeshipping,代码行数:11,代码来源:FlatFeeShippingRate.php
示例3: getFormFields
/**
* Get the form fields for the OrderForm.
*
* @return FieldList List of fields
*/
public function getFormFields()
{
$fields = new FieldList();
$field = new XeroTaxModifierField($this, _t('Xero.TAX', 'Tax'));
$shopConfig = ShopConfig::current_shop_config();
$amount = new Price();
$amount->setAmount($this->Price);
$amount->setCurrency($shopConfig->BaseCurrency);
$amount->setSymbol($shopConfig->BaseCurrencySymbol);
$field->setAmount($amount);
$fields->push($field);
if (!$fields->exists()) {
Requirements::javascript('swipestripe-flatfeetax/javascript/FlatFeeTaxModifierField.js');
}
return $fields;
}
示例4: calculate
/**
* Calculate the tax component based on tax rates for the items and modifications in the order
*
* @param Order $order
* @return Price The tax amount for the order
*/
public function calculate(Order $order)
{
$taxAmount = 0;
$shopConfig = ShopConfig::current_shop_config();
$items = $order->Items();
if ($items && $items->exists()) {
foreach ($items as $item) {
$taxAmount += $item->Total()->getAmount() * ($item->XeroTaxRate / 100);
}
}
$mods = $order->Modifications();
if ($mods && $mods->exists()) {
foreach ($mods as $mod) {
$taxAmount += $mod->Amount()->getAmount() * ($mod->XeroTaxRate / 100);
}
}
$amount = new Price();
$amount->setAmount($taxAmount);
$amount->setCurrency($shopConfig->BaseCurrency);
$amount->setSymbol($shopConfig->BaseCurrencySymbol);
return $amount;
}