|
@@ -7,13 +7,16 @@ import java.util.Collections;
|
|
|
import java.util.Comparator;
|
|
import java.util.Comparator;
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
|
|
-import com.gagaframework.web.parameter.GagaParameterUtil;
|
|
|
|
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
+
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.core.env.Environment;
|
|
import org.springframework.core.env.Environment;
|
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
import org.thymeleaf.util.StringUtils;
|
|
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.dao.TscEnvsetDao;
|
|
|
import com.style24.core.biz.service.TscKcpService;
|
|
import com.style24.core.biz.service.TscKcpService;
|
|
|
import com.style24.core.biz.service.TscOrderService;
|
|
import com.style24.core.biz.service.TscOrderService;
|
|
@@ -30,10 +33,6 @@ import com.style24.persistence.domain.Order;
|
|
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
|
|
-import com.gagaframework.web.parameter.GagaMap;
|
|
|
|
|
-
|
|
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
-
|
|
|
|
|
/**
|
|
/**
|
|
|
* 장바구니 Service
|
|
* 장바구니 Service
|
|
|
*
|
|
*
|
|
@@ -118,6 +117,7 @@ public class TsfCartService {
|
|
|
|
|
|
|
|
goods = goodsService.getGoodsInfo(goods);
|
|
goods = goodsService.getGoodsInfo(goods);
|
|
|
result.put("price", goods.getCurrPrice());
|
|
result.put("price", goods.getCurrPrice());
|
|
|
|
|
+ result.put("listPrice", goods.getListPrice());
|
|
|
result.put("goodsNm", goods.getGoodsNm());
|
|
result.put("goodsNm", goods.getGoodsNm());
|
|
|
result.put("custNo", login.getCustNo());
|
|
result.put("custNo", login.getCustNo());
|
|
|
|
|
|
|
@@ -217,6 +217,7 @@ public class TsfCartService {
|
|
|
|
|
|
|
|
goods = goodsService.getGoodsInfo(goods);
|
|
goods = goodsService.getGoodsInfo(goods);
|
|
|
result.put("price", goods.getCurrPrice());
|
|
result.put("price", goods.getCurrPrice());
|
|
|
|
|
+ result.put("listPrice", goods.getListPrice());
|
|
|
result.put("goodsNm", goods.getGoodsNm());
|
|
result.put("goodsNm", goods.getGoodsNm());
|
|
|
result.put("custNo", login.getCustNo());
|
|
result.put("custNo", login.getCustNo());
|
|
|
|
|
|