card007 4 лет назад
Родитель
Сommit
44331932fc

+ 7 - 4
src/main/webapp/WEB-INF/views/mob/order/OrderCompleteMob.html

@@ -534,9 +534,12 @@ window._eglqueue = window._eglqueue || [];
 
 /* STAR LOOP: 구매한 모든 상품에 대해 */
 for (i=0 ; i<orderDetailList.length ; i++) {
-	var goodsCd 	= orderDetailList[i].goodsCd;
-	var currPrice 	= orderDetailList[i].currPrice;
-	var ordQty 		= orderDetailList[i].ordQty;
+	var goodsCd 		= orderDetailList[i].goodsCd;
+	var currPrice 		= orderDetailList[i].currPrice;
+	var ordQty 			= orderDetailList[i].ordQty;
+	var itemkindNm		= orderDetailList[i].itemkindNm;
+	var brandGroupNm	= orderDetailList[i].brandGroupNm;
+	var goodsNm			= orderDetailList[i].goodsNm;
 
 	_eglqueue.push(['addVar', 'orderItems', {itemId:goodsCd, price:currPrice, quantity:ordQty}]);
 	criteoItems.push({id: goodsCd, price: currPrice+'', quantity: ordQty+''});
@@ -547,7 +550,7 @@ for (i=0 ; i<orderDetailList.length ; i++) {
 	
 	// 코마스 광고 스크립트
 	setTimeout( function() {
-		cosemConvert([[${orderInfo.ordNo}]], (currPrice * ordQty), goodsCd, currPrice, currPrice, orderDetailList[i].itemkindNm, orderDetailList[i].brandGroupNm + "_" + orderDetailList[i].goodsNm);
+		cosemConvert([[${orderInfo.ordNo}]], (currPrice * ordQty), goodsCd, currPrice, currPrice, itemkindNm, brandGroupNm + "_" + goodsNm);
 	}, 10);
 }
 /* END LOOP */

+ 9 - 6
src/main/webapp/WEB-INF/views/web/order/OrderCompleteWeb.html

@@ -432,10 +432,13 @@ window._eglqueue = window._eglqueue || [];
 
 /* STAR LOOP: 구매한 모든 상품에 대해 */
 for (i=0 ; i<orderDetailList.length ; i++) {
-	var goodsCd 	= orderDetailList[i].goodsCd;
-	var currPrice 	= orderDetailList[i].currPrice;
-	var ordQty 		= orderDetailList[i].ordQty;
-	
+	var goodsCd 		= orderDetailList[i].goodsCd;
+	var currPrice 		= orderDetailList[i].currPrice;
+	var ordQty 			= orderDetailList[i].ordQty;
+	var itemkindNm		= orderDetailList[i].itemkindNm;
+	var brandGroupNm	= orderDetailList[i].brandGroupNm;
+	var goodsNm			= orderDetailList[i].goodsNm;
+
 	_eglqueue.push(['addVar', 'orderItems', {itemId:goodsCd, price:currPrice, quantity:ordQty}]);
 	criteoItems.push({id: goodsCd, price: currPrice+'', quantity: ordQty+''});
 	fbqItems.push({id: goodsCd, quantity: ordQty+''});
@@ -445,11 +448,11 @@ for (i=0 ; i<orderDetailList.length ; i++) {
 	
 	// 코마스 광고 스크립트
 	setTimeout( function() {
-		cosemConvert([[${orderInfo.ordNo}]], (currPrice * ordQty), goodsCd, currPrice, currPrice, orderDetailList[i].itemkindNm, orderDetailList[i].brandGroupNm + "_" + orderDetailList[i].goodsNm);
+		cosemConvert([[${orderInfo.ordNo}]], (currPrice * ordQty), goodsCd, currPrice, currPrice, itemkindNm, brandGroupNm + "_" + goodsNm);
 	}, 10);
 }
 /* END LOOP */
-
+// https://ldfront.style24.com/order/complete?ordNo=19856397
 window._eglqueue = window._eglqueue || [];
 
 _eglqueue.push(['setVar'	, 'cuid'		, eglqueueCuid]);