Преглед изворни кода

解决由代理商扣除手续费的问题

李天标 пре 6 година
родитељ
комит
589c9580fa

+ 3 - 1
app-api/src/main/java/com/hboxs/control/api/order/OrderController.java

@@ -122,7 +122,9 @@ public class OrderController extends BaseController {
         JSONObject personageJson = null;
 
         // 砍掉千6手续费
-        BigDecimal cutPrice = price.multiply(new BigDecimal(99.4)).divide(new BigDecimal(100));
+//        BigDecimal cutPrice = price.multiply(new BigDecimal(99.4)).divide(new BigDecimal(100));
+        //取消平台扣手续费
+        BigDecimal cutPrice = price.multiply(new BigDecimal(100)).divide(new BigDecimal(100));
 
         switch (type) {