|
|
@@ -354,7 +354,7 @@
|
|
|
<table border="1" style="font-size:10px; text-align:center; margin-top:20px; display:none;" name="orderDetailInfo">
|
|
|
<tr style="height:30px;">
|
|
|
<th>cartSq</th>
|
|
|
- <th>goodsNm</th>
|
|
|
+ <th style="display:none">goodsNm</th>
|
|
|
<th>orgCurrPrice</th>
|
|
|
<th>cpn1DcSq</th>
|
|
|
<th>cpn1DcAmt</th>
|
|
|
@@ -385,6 +385,7 @@
|
|
|
<th:block th:each="goods, i : ${delvAllCart}">
|
|
|
<tr style="height:30px;">
|
|
|
<td class="cartSq" th:text="${goods.cartSq}"></td>
|
|
|
+ <td class="goodsNm" th:text="${goods.goodsNm}" style="display:none"></td>
|
|
|
<td class="orgCurrPrice" th:text="${goods.orgCurrPrice}"></td>
|
|
|
<td class="cpn1CpnSq" th:text="${goods.cpn1CpnSq}"></td>
|
|
|
<td class="cpn1DcAmt" th:text="${goods.orgCurrPrice} - ${goods.currPrice}"></td>
|
|
|
@@ -720,7 +721,7 @@ $(document).ready( function() {
|
|
|
custemerInfoSet(jsonData);
|
|
|
|
|
|
// 999. 개발화면정보설정
|
|
|
- var devTemp = true;
|
|
|
+ var devTemp = false;
|
|
|
var arr = []
|
|
|
arr[0] = "orderInfo";
|
|
|
arr[1] = "freegiftInfo";
|
|
|
@@ -975,6 +976,8 @@ var paymentInfoSet = function(jsonData) {
|
|
|
var prePntDcAmtYn = $("input[name='rdi-beforpoint']:checked").val();
|
|
|
var orderDetailList = [];
|
|
|
var delvFeeCdList = [];
|
|
|
+ var ordGoodsQty = 0;
|
|
|
+ var goodsNm = "";
|
|
|
|
|
|
// 주문상세데이타 생성
|
|
|
$(".cartSq").each(function(){
|
|
|
@@ -1005,6 +1008,9 @@ var paymentInfoSet = function(jsonData) {
|
|
|
,"delvFeeCd" : $(this).parent().find(".delvFeeCd").text()
|
|
|
}
|
|
|
|
|
|
+ // 상품수
|
|
|
+ ordGoodsQty++;
|
|
|
+
|
|
|
orderDetailList.push(orderDetailData);
|
|
|
});
|
|
|
|
|
|
@@ -1036,9 +1042,13 @@ var paymentInfoSet = function(jsonData) {
|
|
|
,"delvFeeCdList" : delvFeeCdList
|
|
|
,"shotDelvYn" : shotDelvYn
|
|
|
,"entryNo" : $("input[name='entryNo']").val()
|
|
|
+ ,"pgGb" : "KCP"
|
|
|
+ ,"payMeans" : "G014_30"
|
|
|
,"payAmt" : $(".realOrdSumAmt").text()
|
|
|
- ,"goodsNm" : $(".realOrdSumAmt").text()
|
|
|
- ,"goodsCnt" : $(".realOrdSumAmt").text()
|
|
|
+ ,"ordNm" : $(".custNm").text()
|
|
|
+ ,"ordPhnno" : $(".cellPhnno").text()
|
|
|
+ ,"goodsNm" : $(".goodsNm").eq(0).text()
|
|
|
+ ,"ordGoodsQty" : ordGoodsQty
|
|
|
};
|
|
|
|
|
|
var orderData = JSON.stringify(orderData);
|
|
|
@@ -1056,8 +1066,8 @@ var paymentInfoSet = function(jsonData) {
|
|
|
},
|
|
|
success : function(result) {
|
|
|
// 결재정보로드
|
|
|
- //$("#order_info").html(result);
|
|
|
- //jsf__pay(document.order_info);
|
|
|
+ $("#order_info").html(result);
|
|
|
+ jsf__pay(document.order_info);
|
|
|
}
|
|
|
});
|
|
|
});
|