배송비 계산을 쇼핑 주문 준비 배송 완료 상태의 상품에 대해서만 구하도록 수정

This commit is contained in:
chicpro
2013-09-11 18:29:52 +09:00
parent 6d06af119b
commit 30173edb10

View File

@ -1527,6 +1527,7 @@ function get_sendcost($price, $cart_id, $selected=1)
from {$g4['shop_cart_table']}
where od_id = '$cart_id'
and ct_send_cost = '0'
and ct_status IN ( '쇼핑', '주문', '준비', '배송', '완료' )
and ct_select = '$selected' ";
$result = sql_query($sql);