간이영수증 출력 스킨 패치 가이드

스킨 패치 파일 다운로드 ↓

■ 수정위치 1. 관리자모드 -> 디자인 에서 수정할 스킨이 "현재 작업스킨"으로 설정 2. 관리자모드 -> 디자인, 트리에서 아래의 화일을 선택후 수정

■ 아래 관련 선행패치를 진행여부를 확인 하신 후 해당패치를 적용하시기 바랍니다.

[고도몰5 pro,고도몰5 biz,고도몰5 standard] 구매자 주문상세 페이지에서 거래명세서 출력 기능 추가

■ 마이페이지/mypage -> 마이페이지 > 주문상세 | mypage/order_view.html

- 아래의 내용을 추가함

수정 전 (590 ~ 603 라인)

                        <!--{ ? receipt['particularFl'] == 'y' }-->
                        <tr>
                            <th class="ta-l">거래명세서</th>
                            <td><button type="button" class="normal-btn small1" onclick="order_print_popup('particular')"><em>거래명세서 인쇄</em></button></td>
                        </tr>
                        <!--{ / }-->

수정 후

                        <!--{ ? receipt['particularFl'] == 'y' }-->
                        <tr>
                            <th class="ta-l">거래명세서</th>
                            <td><button type="button" class="normal-btn small1" onclick="order_print_popup('particular')"><em>거래명세서 인쇄</em></button></td>
                        </tr>
                        <!--{ / }-->
                        <!--{ ? receipt['reception'] == 'y' }-->
                        <tr>
                            <th class="ta-l">간이영수증</th>
                            <td><button type="button" class="normal-btn small1" onclick="order_print_popup('reception')"><em>간이영수증 인쇄</em></button></td>
                        </tr>
                        <!--{ / }-->

■ 마이페이지/mypage -> _reception.html

- 아래의 내용을 추가함(페이지추가)

Last updated

Was this helpful?