diff --git a/adm/shop_admin/orderform.php b/adm/shop_admin/orderform.php
index 324b92599..4b67c181f 100644
--- a/adm/shop_admin/orderform.php
+++ b/adm/shop_admin/orderform.php
@@ -412,6 +412,10 @@ $result = sql_query($sql);
|
+
+ | 결제할인금액 |
+ |
+
| 포인트 |
|
@@ -429,15 +433,14 @@ $result = sql_query($sql);
운송장번호 |
|
-
| 배송일시 |
|
+
|
-
원
|
diff --git a/mobile/shop/orderform.php b/mobile/shop/orderform.php
index 001a105a4..2f141c104 100644
--- a/mobile/shop/orderform.php
+++ b/mobile/shop/orderform.php
@@ -869,7 +869,7 @@ $(function() {
} else {
coupon_cancel($cp_dup_el);
$("#cp_frm").remove();
- $cp_dup_el.find(".cp_btn").text("쿠폰적용").focus();
+ $cp_dup_el.find(".cp_btn").text("쿠폰적용").removeClass("cp_mod").focus();
$cp_dup_el.find(".cp_cancel").remove();
}
}
@@ -887,7 +887,7 @@ $(function() {
calculate_total_price();
$("#cp_frm").remove();
- $cp_btn_el.text("쿠폰변경").focus();
+ $cp_btn_el.text("쿠폰변경").addClass("cp_mod").focus();
if(!$cp_row_el.find(".cp_cancel").size())
$cp_btn_el.after("");
});
@@ -901,7 +901,7 @@ $(function() {
coupon_cancel($(this).closest("li"));
calculate_total_price();
$("#cp_frm").remove();
- $(this).closest("li").find(".cp_btn").text("쿠폰적용").focus();
+ $(this).closest("li").find(".cp_btn").text("쿠폰적용").removeClass("cp_mod").focus();
$(this).remove();
});