This commit is contained in:
KNKIM 2021-11-19 17:58:49 +09:00
parent 8332914efb
commit 47ea8c8a20

View File

@ -90,7 +90,7 @@ public class CartController extends NlibCommonController
list = cartService.listCartItemsFromCookie(request, response, cartTypeCd); list = cartService.listCartItemsFromCookie(request, response, cartTypeCd);
// 카트 목록 자료에 대한 상세자료 설정 // 카트 목록 자료에 대한 상세자료 설정
collectionService.setDetailInfoForList(list, null, NlibProperty.getString("thumbnail.image.url.small")); collectionService.setDetailInfoForList(list, null);
// 문화원별 정렬 처리 // 문화원별 정렬 처리
list = sortCollectionListByMngOrgCd(list); list = sortCollectionListByMngOrgCd(list);
@ -103,7 +103,7 @@ public class CartController extends NlibCommonController
list = cartService.listCartItems(mbInfoId, cartTypeCd); list = cartService.listCartItems(mbInfoId, cartTypeCd);
// 카트 목록 자료에 대한 상세자료 설정 // 카트 목록 자료에 대한 상세자료 설정
collectionService.setDetailInfoForList(list, getMbInfoId(request), NlibProperty.getString("thumbnail.image.url.small")); collectionService.setDetailInfoForList(list, getMbInfoId(request));
// 카트 건수 // 카트 건수
cartTypeCd1Cnt = cartService.countCartItems(mbInfoId, "1"); cartTypeCd1Cnt = cartService.countCartItems(mbInfoId, "1");