주문서 작성시 제조사 원산지등을 불러오고 싶어요
본문
답변 1
/shop/orderform.sub.php 파일 47줄에 아래 소스를 수정하시고,
// $s_cart_id 로 현재 장바구니 자료 쿼리
$sql = " select a.ct_id,
a.it_id,
a.it_name,
a.ct_price,
a.ct_point,
a.ct_qty,
a.ct_status,
a.ct_send_cost,
a.it_sc_type,
a.it_,maker,
a.it_origin,
b.ca_id,
b.ca_id2,
b.ca_id3,
b.it_notax
from {$g5['g5_shop_cart_table']} a left join {$g5['g5_shop_item_table']} b on ( a.it_id = b.it_id )
where a.od_id = '$s_cart_id'
and a.ct_select = '1' ";
199줄 출력되는 부분에 아래와 같이 추가해주면 됩니다.
<?php echo $row['it_maker']; ?>
<?php echo $row['it_origin']; ?>
답변을 작성하시기 전에 로그인 해주세요.