本文整理汇总了Java中com.openbravo.pos.util.RoundUtils.round方法的典型用法代码示例。如果您正苦于以下问题:Java RoundUtils.round方法的具体用法?Java RoundUtils.round怎么用?Java RoundUtils.round使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.openbravo.pos.util.RoundUtils
的用法示例。
在下文中一共展示了RoundUtils.round方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getPriceNoDiscount
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public Double getPriceNoDiscount() {
Double discountrate = getDiscountRate();
Double discountmoney = getDiscountMoney() / (1.0 + getTaxRate());
Double pricenodiscount = 0.0;
if (discountrate != 1.0) {
pricenodiscount = getPrice() / (1 - getDiscountRate());
}
if (discountmoney != 0.0) {
pricenodiscount = pricenodiscount + discountmoney;
}
return RoundUtils.round(pricenodiscount);
}
示例2: getPriceTaxNoDiscount
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public Double getPriceTaxNoDiscount() {
Double discountrate = getDiscountRate();
Double discountmoney = getDiscountMoney();
Double pricenodiscount = 0.0;
if (discountrate != 1.0) {
pricenodiscount = getPriceTax() / (1 - getDiscountRate());
}
if (discountmoney != 0.0) {
pricenodiscount = pricenodiscount + discountmoney;
}
return RoundUtils.round(pricenodiscount);
}
示例3: getDiscountSubValue
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public Double getDiscountSubValue() {
return RoundUtils.round(getPriceNoDiscount() - getPrice());
}
示例4: getDiscountValue
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public Double getDiscountValue() {
return RoundUtils.round(getPriceTaxNoDiscount() - getPriceTax());
}
示例5: getDiscountSubTotalLine
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public Double getDiscountSubTotalLine() {
return RoundUtils.round(getDiscountSubValue() * multiply);
}
示例6: getDiscountTotalLine
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public Double getDiscountTotalLine() {
return RoundUtils.round(getDiscountValue() * multiply);
}
示例7: getPrice
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public double getPrice() {
return RoundUtils.round(price);
}
示例8: setPrice
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public void setPrice(double dValue) {
price = RoundUtils.round(dValue);
}
示例9: getPriceTax
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public double getPriceTax() {
return RoundUtils.round(price * (1.0 + getTaxRate()));
}
示例10: setPriceTax
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public void setPriceTax(double dValue) {
price = RoundUtils.round(dValue / (1.0 + getTaxRate()));
}
示例11: getSubValue
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public double getSubValue() {
return RoundUtils.round(price * multiply);
}
示例12: getTax
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public double getTax() {
return RoundUtils.round(price * multiply * getTaxRate());
}
示例13: getValue
import com.openbravo.pos.util.RoundUtils; //导入方法依赖的package包/类
public double getValue() {
return RoundUtils.round(price * multiply * (1.0 + getTaxRate()));
}