pg 결제시 포인트 사용 금액 적용되도록 수정

This commit is contained in:
chicpro
2013-05-08 18:54:52 +09:00
parent 30b81035be
commit 074fcb65c4
2 changed files with 96 additions and 50 deletions

View File

@ -762,6 +762,11 @@ function forderform_check(f)
f.od_temp_point.select();
return false;
}
// pg 결제 금액에서 포인트 금액 차감
if(settle_method != "무통장" && temp_point > 0) {
f.good_mny.value = parseInt(f.good_mny.value) - temp_point;
}
}
}
@ -792,11 +797,6 @@ function forderform_check(f)
}
}
// pg 결제 금액에서 포인트 금액 차감
if(settle_method != "무통장" && temp_point > 0) {
f.good_mny.value = parseInt(f.good_mny.value) - temp_point;
}
// pay_method 설정
switch(settle_method)
{