Commit ae724e05 by huiyang.chen

Merge branch '2020/09/24-运费券-huiyang' into develop

parents 6f0acf13 0faa424a
...@@ -302,7 +302,7 @@ public class CalculationServiceImpl { ...@@ -302,7 +302,7 @@ public class CalculationServiceImpl {
*/ */
private Long calculateDeliveryAmount(String receiveId, String partnerId, String storeId, String menuType) { private Long calculateDeliveryAmount(String receiveId, String partnerId, String storeId, String menuType) {
Long deliveryAmount = 1000l; Long deliveryAmount = 1000l;
/* if (StringUtils.isBlank(receiveId) || !BusinessTypeEnum.SAAS_DELIVERY.getCode().equals(menuType)) { if (StringUtils.isBlank(receiveId) || !BusinessTypeEnum.SAAS_DELIVERY.getCode().equals(menuType)) {
return deliveryAmount; return deliveryAmount;
} }
String trackingNo = LogThreadLocal.getTrackingNo(); String trackingNo = LogThreadLocal.getTrackingNo();
...@@ -326,7 +326,7 @@ public class CalculationServiceImpl { ...@@ -326,7 +326,7 @@ public class CalculationServiceImpl {
// throw new ServiceException(ResponseResult.STORE_DELIVERY_AMOUNT_ERROR); // throw new ServiceException(ResponseResult.STORE_DELIVERY_AMOUNT_ERROR);
// } // }
Double deliveryPrice = storeInfo.getBizVO().getDeliveryPrice()*100; Double deliveryPrice = storeInfo.getBizVO().getDeliveryPrice()*100;
deliveryAmount = deliveryPrice.longValue();*/ deliveryAmount = deliveryPrice.longValue();
return deliveryAmount; return deliveryAmount;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment