|
|
@@ -15,6 +15,8 @@ import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
import org.thymeleaf.util.StringUtils;
|
|
|
|
|
|
+import com.gagaframework.web.parameter.GagaMap;
|
|
|
+import com.gagaframework.web.parameter.GagaParameterUtil;
|
|
|
import com.style24.core.biz.dao.TscEnvsetDao;
|
|
|
import com.style24.core.biz.service.TscKcpService;
|
|
|
import com.style24.core.biz.service.TscOrderService;
|
|
|
@@ -31,9 +33,6 @@ import com.style24.persistence.domain.Order;
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
-import com.gagaframework.web.parameter.GagaMap;
|
|
|
-import com.gagaframework.web.parameter.GagaParameterUtil;
|
|
|
-
|
|
|
/**
|
|
|
* 장바구니 Service
|
|
|
*
|
|
|
@@ -1024,7 +1023,7 @@ public class TsfCartService {
|
|
|
|
|
|
// 자사 배송비 등록
|
|
|
if (params.size() > 0) {
|
|
|
- if (wmsSumPrice > wmsMinOrdAmt) {
|
|
|
+ if (wmsSumPrice >= wmsMinOrdAmt) {
|
|
|
order.setWmsDelvFee(0);
|
|
|
} else {
|
|
|
order.setWmsDelvFee(wmsDelvFee);
|