本文整理汇总了PHP中Price::setCurrency方法的典型用法代码示例。如果您正苦于以下问题:PHP Price::setCurrency方法的具体用法?PHP Price::setCurrency怎么用?PHP Price::setCurrency使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Price
的用法示例。
在下文中一共展示了Price::setCurrency方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: fromJson
public static function fromJson($json)
{
$r = new Price();
$r->setGross($json->gross);
$r->setCurrency($json->currency);
return $r;
}
示例2: Price
public function Price()
{
$price = new Price();
$price->setCurrency($this->Currency);
$price->setAmount($this->GST);
return $price;
}
示例3: 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;
}
示例4: 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
示例5: discountedAmount
/**
* Returns the amount minus percentage from Measure.
*
* @param Price $forAmount
* @return Price
*/
public function discountedAmount($forAmount)
{
if ($this->owner->UsePercentageColumn) {
$price = new Price();
if ($forAmount instanceof Money) {
$price->setAmount($forAmount->getAmount());
$price->setCurrency($forAmount->getCurrency());
} else {
$price->setAmount($forAmount);
$price->setCurrency(ShopConfig::current_shop_config()->BaseCurrency);
}
// only recalculate if there is a percentage
if ($this->owner->Measure != 0) {
$original = $price->getAmount();
$percentage = Zend_Locale_Math::Div($this->owner->Measure, self::OneHundred, 10);
$difference = Zend_Locale_Math::Mul($original, $percentage, 10);
$price->setAmount(Zend_Locale_Math::Sub($original, $difference, 10));
}
return $price;
}
return null;
}
示例6: discountedAmount
/**
* Returns amount reduced by $this->Measure.
*
* @param Price|number $amount
* @param $discount
* @return Price
*/
public function discountedAmount($forAmount)
{
if ($this->owner->UsePriceColumn) {
$price = new Price();
$price->setCurrency(ShopConfig::current_shop_config()->BaseCurrency);
if ($forAmount instanceof Money) {
$price->setAmount($forAmount->getAmount());
} else {
$price->setAmount($forAmount);
}
$price->setAmount(Zend_Locale_Math::Sub($price->getAmount(), $this->owner->Measure, 10));
return $price;
}
return null;
}
示例7: 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;
}
示例8: 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;
}