#209 정액할인 쿠폰에서 최대할인 금액 입력 노출하지 않도록 수정

This commit is contained in:
chicpro
2013-06-12 09:49:46 +09:00
parent c0a013c234
commit 5888069c04

View File

@ -149,6 +149,7 @@ $(function() {
$("#tr_cp_target").find("input").attr("required", false).removeClass("required");
<?php } ?>
<?php if($cp['cp_type'] != 1) { ?>
$("#tr_cp_maximum").hide();
$("#tr_cp_trunc").hide();
<?php } ?>
$("#cp_method_btn").click(function() {
@ -222,10 +223,12 @@ function change_type(cp_type)
if(cp_type == "0") {
$("#cp_amount_unit").text("원");
$("#cp_amount_unit").closest("tr").find("label").text("할인금액");
$("#tr_cp_maximum").hide();
$("#tr_cp_trunc").hide();
} else {
$("#cp_amount_unit").text("%");
$("#cp_amount_unit").closest("tr").find("label").text("할인비율");
$("#tr_cp_maximum").show();
$("#tr_cp_trunc").show();
}
}