public BigDecimal getChineseFVLs( String siteId, String storeType, BigDecimal price, String categoreyType) { IEbFeeCaculate ca = getFeeCaculator(siteId); return ca.getChineseFVL(storeType, price, categoreyType); }
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)); }
public BigDecimal getChineseInsertFees(String siteId, String storeType, BigDecimal price) { IEbFeeCaculate ca = getFeeCaculator(siteId); return ca.getChineseInsertsFee(storeType, price); }