Пример #1
0
 public BigDecimal getChineseFVLs(
     String siteId, String storeType, BigDecimal price, String categoreyType) {
   IEbFeeCaculate ca = getFeeCaculator(siteId);
   return ca.getChineseFVL(storeType, price, categoreyType);
 }
Пример #2
0
 public BigDecimal getChinesePayPalFees(
     String siteId, String storeType, BigDecimal price, BigDecimal shippingFees) {
   IEbFeeCaculate ca = getFeeCaculator(siteId);
   return ca.getChinesePayPalFee(
       storeType, price.add(shippingFees == null ? new BigDecimal(0) : shippingFees));
 }
Пример #3
0
 public BigDecimal getChineseInsertFees(String siteId, String storeType, BigDecimal price) {
   IEbFeeCaculate ca = getFeeCaculator(siteId);
   return ca.getChineseInsertsFee(storeType, price);
 }