From 43c478f13870e67727940c9d597860e91d2d7ba6 Mon Sep 17 00:00:00 2001 From: chicpro Date: Wed, 28 Aug 2013 14:11:54 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8F=AC=EC=9D=B8=ED=8A=B8=EC=82=AC=EC=9A=A9?= =?UTF-8?q?=EB=95=8C=20=EA=B2=B0=EC=A0=9C=20=EC=B7=A8=EC=86=8C=20=EC=9E=AC?= =?UTF-8?q?=EC=8B=9C=EB=8F=84=EC=8B=9C=20=ED=8F=AC=EC=9D=B8=ED=8A=B8=20?= =?UTF-8?q?=EC=A4=91=EB=B3=B5=20=EC=B0=A8=EA=B0=90=EB=90=98=EB=8A=94=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/shop/orderform.php | 6 +++++- shop/orderform.php | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/mobile/shop/orderform.php b/mobile/shop/orderform.php index 024084f27..738a79c04 100644 --- a/mobile/shop/orderform.php +++ b/mobile/shop/orderform.php @@ -1138,7 +1138,11 @@ function kcp_approval() // pg 결제 금액에서 포인트 금액 차감 if(settle_method != "무통장" && temp_point > 0) { - f.good_mny.value = parseInt(f.good_mny.value) - temp_point; + var od_amount = parseInt(pf.od_amount.value); + var send_cost = parseInt(pf.od_send_cost.value); + var send_cost2 = parseInt(pf.od_send_cost2.value); + var send_coupon = parseInt(pf.od_send_coupon.value); + f.good_mny.value = od_amount + send_cost + send_cost2 - send_coupon - temp_point; } f.buyr_name.value = pf.od_name.value; diff --git a/shop/orderform.php b/shop/orderform.php index a1ad32160..b60405eed 100644 --- a/shop/orderform.php +++ b/shop/orderform.php @@ -1449,7 +1449,11 @@ function forderform_check(f) // pg 결제 금액에서 포인트 금액 차감 if(settle_method != "무통장" && temp_point > 0) { - f.good_mny.value = parseInt(f.good_mny.value) - temp_point; + var od_amount = parseInt(f.od_amount.value); + var send_cost = parseInt(f.od_send_cost.value); + var send_cost2 = parseInt(f.od_send_cost2.value); + var send_coupon = parseInt(f.od_send_coupon.value); + f.good_mny.value = od_amount + send_cost + send_cost2 - send_coupon - temp_point; } } }