테이블 변수명에서 yc4_를 shop_로 변경
This commit is contained in:
@ -61,8 +61,8 @@ $sql = " select a.ct_id,
|
||||
b.it_id,
|
||||
b.it_name,
|
||||
b.ca_id
|
||||
from {$g4['yc4_cart_table']} a,
|
||||
{$g4['yc4_item_table']} b
|
||||
from {$g4['shop_cart_table']} a,
|
||||
{$g4['shop_item_table']} b
|
||||
where a.uq_id = '$s_uq_id'
|
||||
and a.it_id = b.it_id
|
||||
order by a.ct_id ";
|
||||
@ -195,7 +195,7 @@ if ($i == 0) {
|
||||
}
|
||||
|
||||
// 이미 주문된 내역을 보여주는것이므로 배송비를 주문서에서 얻는다.
|
||||
$sql = "select od_send_cost from {$g4['yc4_order_table']} where od_id = '$od_id' ";
|
||||
$sql = "select od_send_cost from {$g4['shop_order_table']} where od_id = '$od_id' ";
|
||||
$row = sql_fetch($sql);
|
||||
if ($row['od_send_cost'] > 0)
|
||||
$send_cost = $row['od_send_cost'];
|
||||
|
||||
Reference in New Issue
Block a user