Help Center

카페24 소식

[스마트디자인] 마이쇼핑 주문상세내역에 환불보류 표기 기능 안내

2014-02-17


안녕하세요, 카페24 운영도우미 입니다.

스마트디자인을 사용 중인 경우, 마이쇼핑의 주문상세내역에 환불보류 시
보류내역을 표기 할 수 있는 기능이 업데이트 되었습니다.

자세한 내용은 아래를 참조해 주세요.



■ 적용일자 : 2014-02-17 (월)

■ 업데이트 내용


관리자가 CS 접수 후 환불보류 처리시 주문상세내역 노출설정에 따라 프론트에 보류 사유가 표기됩니다.


1. 적용범위

1) 쇼핑몰 적용범위
- PC > 마이쇼핑 > 주문내역조회 > 주문상세내역 : 환불정보에 기능 추가




- 모바일 > 마이쇼핑 > 나의 주문내역 > 주문상세내역 : 링크 정보 수정
- 모바일 > 마이쇼핑 > 나의 주문내역 > 환불정보 : 환불정보에 기능 추가

  


2) 어드민 적용 범위
- 주문관리 > 환불관리 > 환불 처리 : 환불 보류 처리시 주문상세내역 노출설정 및 보류 사유 입력




2. HTML 소스수정

1) 어드민 > 디자인관리 > 디자인편집하기 > 좌측 전체화면보기 탭 > 마이쇼핑 > 나의 주문내역 > 주문상세내역
- 아래와 같이 파란색 소스를 수정합니다.

[변경 전]

                                               ## 이전생략 ##

<th scope="row">{$refund_amount_title}</th>
<td>상품금액 <strong>{$product_amount_org}</strong> {$additional_amount} = <strong class="total">합계 : <span>{$payment_amount}</span><span class="{$payment_amount_ref_display|display}">{$payment_amount_ref}</span></strong></td>
</tr>

<tr>
<th scope="row">환불수단</th>
<td>{$refund_paymethod}</td>

                                               ## 이하생략 ##


[변경 후]

                                               ## 이전생략 ##

<th scope="row">{$refund_amount_title}</th>
<td>상품금액 <strong>{$product_amount_org}</strong> {$additional_amount} = <strong class="total">합계 : <span>{$payment_amount}</span><span class="{$payment_amount_ref_display|display}">{$payment_amount_ref}</span></strong></td>
</tr>
 <tr class="{$hold_show_ord_detail|display}">
 <th scope="row">보류 사유</th>
 <td>{$hold_reason_customer_display|nl2br}</td>
 </tr>
<tr>
<th scope="row">환불수단</th>
<td>{$refund_paymethod}</td>

                                               ## 이하생략 ##




2) 쇼핑몰 어드민 > 모바일쇼핑몰 > 디자인편집하기 > 좌측 전체화면보기 탭 > 마이쇼핑 > 나의 주문내역 > 주문상세내역
- 아래와 같이 파란색 소스를 수정합니다.

[변경 전]

                                               ## 이전생략 ##

<!-- 관련 링크-->
<ul class="addition {$addition_display|display}">
 <li class="cancel {$addition_cs_display|display}"><a href="order_detail_cs.html{$detail_params}">취소/교환/반품 신청 사유</a></li>
<li class="refund {$addition_refund_display|display}"><a href="order_detail_refund.html{$detail_params}">환불정보</a></li>
<li class="payment {$addition_payment_display|display}"><a href="order_detail_payment.html{$detail_params}">추가결제</a></li>
</ul>

<!-- 추가 정보 -->

                                               ## 이하생략 ##


[변경 후]

                                               ## 이전생략 ##

<!-- 관련 링크-->
<ul class="addition {$addition_display|display}">
 <li class="cancel {$addition_cs_display|display}"><a href="order_detail_cs.html{$params}" target="_blank">취소/교환/반품 신청 사유</a></li>
 <li class="refund {$addition_refund_display|display}"><a href="order_detail_refund.html{$params}" target="_blank">환불정보</a></li>
 <li class="payment {$addition_payment_display|display}"><a href="order_detail_payment.html{$params}" target="_blank">추가결제</a></li>
</ul>

<!-- 추가 정보 -->

                                               ## 이하생략 ##




3) 쇼핑몰 어드민 > 모바일쇼핑몰 > 디자인편집하기 > 좌측 전체화면보기 탭 > 마이쇼핑 > 나의 주문내역 > 환불정보

[변경 전]

                                               ## 이전생략 ##

<th scope="row">{$display_date_title}<br />(처리상태)</th>
<td>{$display_date} (<strong>{$status}</strong>)</td>
</tr>

<tr class="{$cancel_form_display|display}">
<th scope="row">{$refund_amount_title}</th>
<td>상품금액 <strong>{$product_amount_org}</strong> {$additional_amount} = <strong class="total">합계 : <span>{$payment_amount}</span><span class="{$payment_amount_ref_display|display}">{$payment_amount_ref}</span></strong></td>

                                               ## 이하생략 ##


[변경 후]

                                               ## 이전생략 ##

<th scope="row">{$display_date_title}<br />(처리상태)</th>
<td>{$display_date} (<strong>{$status}</strong>)</td>
</tr>
<tr class="{$hold_show_ord_detail|display}">
 <th scope="row">보류 사유</th>
 <td>{$hold_reason_customer_display|nl2br}</td>
</tr>
<tr class="{$cancel_form_display|display}">
<th scope="row">{$refund_amount_title}</th>
<td>상품금액 <strong>{$product_amount_org}</strong> {$additional_amount} = <strong class="total">합계 : <span>{$payment_amount}</span><span class="{$payment_amount_ref_display|display}">{$payment_amount_ref}</span></strong></td>

                                               ## 이하생략 ##

 

 

 


카페24 는 쇼핑몰 운영을 보다 편리하고 쉽게 할 수 있도록 기능 업데이트를 지속적으로 진행하고 있습니다.
더 좋은 서비스가 되기 위해 노력하겠습니다. 끊임없는 애정과 관심 부탁 드립니다.

궁금하신 사항은 언제든지 고객지원센터 1:1게시판으로 문의해주세요. [문의하기]