관리자 주문상세 결제금액 입력시 결제금액과 미수금이 더해지도록 수정
This commit is contained in:
@ -927,7 +927,7 @@ function chk_receipt_price()
|
|||||||
{
|
{
|
||||||
var chk = document.getElementById("od_receipt_chk");
|
var chk = document.getElementById("od_receipt_chk");
|
||||||
var price = document.getElementById("od_receipt_price");
|
var price = document.getElementById("od_receipt_price");
|
||||||
price.value = chk.checked ? chk.value : price.defaultValue;
|
price.value = chk.checked ? (parseInt(chk.value) + parseInt(price.defaultValue)) : price.defaultValue;
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user