|
|
@@ -397,12 +397,18 @@
|
|
|
tag += ' </div>\n';
|
|
|
tag += ' </div>\n';
|
|
|
tag += ' <div class="status_box">\n';
|
|
|
- tag += ' <p>' + ordDtl.ordDtlStatNm + '</p>\n';
|
|
|
+ if (ordDtl.ordDtlStat == 'G013_10') {
|
|
|
+ tag += ' <p>주문접수</p>\n';
|
|
|
+ } else if (ordDtl.ordDtlStat == 'G013_35') {
|
|
|
+ tag += ' <p>상품준비중</p>\n';
|
|
|
+ } else {
|
|
|
+ tag += ' <p>' + ordDtl.ordDtlStatNm + '</p>\n';
|
|
|
+ }
|
|
|
tag += ' </div>\n';
|
|
|
tag += ' <div class="button_box">\n';
|
|
|
|
|
|
// 버튼 처리
|
|
|
- // 주문취소 버튼(입금대기, 결제완료, 상품준비중, 출고처지정, 배송준비중)
|
|
|
+ // 주문취소 버튼(입금대기, 결제완료, 상품준비중, 출고처지정)
|
|
|
// 2021.07.08 card007 교환상품은 취소 안되게 수정
|
|
|
if (ordDtl.ordDtlStat == 'G013_20' || ordDtl.ordDtlStat == 'G013_30' || ordDtl.ordDtlStat == 'G013_35') {
|
|
|
if (ordDtl.ordExchGb == 'O') {
|
|
|
@@ -464,7 +470,7 @@
|
|
|
}
|
|
|
|
|
|
// 상품준비중
|
|
|
- if (ordDtl.ordDtlStat == 'G013_30') {
|
|
|
+ if (ordDtl.ordDtlStat == 'G013_30' || ordDtl.ordDtlStat == 'G013_35') {
|
|
|
tag += ' <div class="order_text">';
|
|
|
tag += ' <p>배송할 상품을 준비 중입니다.</p>';
|
|
|
// 예약상품
|