|
|
@@ -315,16 +315,16 @@ var fnReceipt = function(param) {
|
|
|
receiptWin += '?cmd=card_bill';
|
|
|
receiptWin += '&tno=' + paymentInfo.pgTid;
|
|
|
receiptWin += '&order_no=' + ordNo;
|
|
|
- receiptWin += '&trade_mony=' + orderAmtInfo.realOrdAmt + orderAmtInfo.realDelvAmt;
|
|
|
+ receiptWin += '&trade_mony=' + (orderAmtInfo.realOrdAmt + orderAmtInfo.realDelvAmt);
|
|
|
|
|
|
// 팝업 크기 설정
|
|
|
option = 'width=455, height=815';
|
|
|
} else if (param == 'cash') {
|
|
|
// URL 설정
|
|
|
receiptWin += '?cmd=cash_bill';
|
|
|
- receiptWin += '&cash_no=' + paymentInfo.cashAuthNo;
|
|
|
+ receiptWin += '&cash_no=' + paymentInfo.cashTradeNo;
|
|
|
receiptWin += '&order_id=' + ordNo;
|
|
|
- receiptWin += '&trade_mony=' + orderAmtInfo.realOrdAmt + orderAmtInfo.realDelvAmt;
|
|
|
+ receiptWin += '&trade_mony=' + (orderAmtInfo.realOrdAmt + orderAmtInfo.realDelvAmt);
|
|
|
|
|
|
// 팝업 크기 설정
|
|
|
option = 'width=370, height=625';
|