|
|
@@ -13,6 +13,7 @@ import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
|
|
|
import com.style24.core.biz.service.TscEnvsetService;
|
|
|
+import com.style24.core.biz.service.TscLookbookService;
|
|
|
import com.style24.core.support.env.TscConstants;
|
|
|
import com.style24.core.support.message.TscMessageByLocale;
|
|
|
import com.style24.front.biz.service.TsfCounselService;
|
|
|
@@ -55,6 +56,9 @@ public class TsfGoodsController extends TsfBaseController {
|
|
|
@Autowired
|
|
|
private TsfCounselService counselService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private TscLookbookService coreLookbookService;
|
|
|
+
|
|
|
@Value("${has-ssl}")
|
|
|
private String hasSsl;
|
|
|
|
|
|
@@ -182,7 +186,7 @@ public class TsfGoodsController extends TsfBaseController {
|
|
|
// 룩북
|
|
|
Lookbook lookbook = new Lookbook();
|
|
|
lookbook.setGoodsCd(paramsGoods.getGoodsCd());
|
|
|
- mav.addObject("lookbookList", goodsService.getLookbookList(lookbook));
|
|
|
+ mav.addObject("lookbookList", coreLookbookService.getLookbookListForGoods(lookbook));
|
|
|
// 오늘본 상품 쿠키 담기
|
|
|
// SSL Server
|
|
|
boolean isSslServer = Boolean.parseBoolean(hasSsl);
|