로그인

검색

고도몰5 튜닝 - 주문하시는 분을 수정할 수 없게 처리

회원정보에서 불러오는 주문자 정보를 바꿀 경우, 반품, 교환, 세금계산서 발행시 착오가 생길 수 있다.

그래서 코드 수정을 통해서 주문하시는 분에 불러온 이름을 수정할 수 없게 처리 하는 방법

 

사용하는스킨폴더/order/order.html 파일

대략 528 라인

 

기존코드 

<tr>
<th scope="row"><span class="important">{=__('주문하시는 분')}</span></th>
<td><input type="text" name="orderName" value="{=orderName}" data-pattern="{? gGlobal['isFront']}gdMemberNmGlobal{:}gdEngKor{/}" maxlength="20"/></td>
</tr>

 

를 아래와 같이 "readonly" 추가한다.

 

<tr>
<th scope="row"><span class="important">{=__('주문하시는 분')}</span></th>
<td><input type="text" name="orderName" value="{=orderName}" data-pattern="{? gGlobal['isFront']}gdMemberNmGlobal{:}gdEngKor{/}" maxlength="20" readonly/></td>
</tr>

 

이렇게 하면 회원정보에서 불러온 주문자 정보를 수정할 수 없게 된다.

 

 

* 모바일은 아래와 같이

모바일 스킨폴더/order/order.html

대략 257라인

 

<tr>
<th scope="row" class="required"><label for="ordr_nm">{=__('주문자')}</label></th>
<td><input type="text" id="ordr_nm" name="orderName" value="{=orderName}" maxlength="20"></td>
</tr>

 

여기에 아래 코드와 같이 "readonly" 요걸 넣어주면 된다!

 

  <tr>
<th scope="row" class="required"><label for="ordr_nm">{=__('주문자')}</label></th>
<td><input type="text" id="ordr_nm" name="orderName" value="{=orderName}" maxlength="20" readonly></td>
</tr>

 

 

이 게시물을

에디터 선택

※ 주의 : 페이지가 새로고침됩니다

이 댓글을 삭제하시겠습니까?

제목
날짜
조회 수
섬네일
2021.04.29
조회 수: 432
2021.04.22
조회 수: 477
2021.04.14
조회 수: 471
2021.04.07
조회 수: 470
2021.03.22
조회 수: 296
2021.02.22
조회 수: 381
2020.12.07
조회 수: 327
2020.11.30
조회 수: 415
2020.11.23
조회 수: 413
2020.11.05
조회 수: 996
2020.09.17
조회 수: 730
2020.08.24
조회 수: 424
2020.07.08
조회 수: 907
we
2020.07.07
조회 수: 598
2020.06.11
조회 수: 446
2020.05.14
조회 수: 664
2020.05.11
조회 수: 444
2020.05.07
조회 수: 310
2020.05.04
조회 수: 338
2020.04.22
조회 수: 252
2021.04.29
조회 수: 432
2021.04.22
조회 수: 477
2021.04.14
조회 수: 471
2021.04.07
조회 수: 470
2021.03.22
조회 수: 296
2021.02.22
조회 수: 381
2020.12.07
조회 수: 327
2020.11.30
조회 수: 415
2020.11.23
조회 수: 413
2020.11.05
조회 수: 996
2020.09.17
조회 수: 730
2020.08.24
조회 수: 424
2020.07.08
조회 수: 907
we
2020.07.07
조회 수: 598
2020.06.11
조회 수: 446
2020.05.14
조회 수: 664
2020.05.11
조회 수: 444
2020.05.07
조회 수: 310
2020.05.04
조회 수: 338
2020.04.22
조회 수: 252