미완료주문처리 코드 수정

This commit is contained in:
chicpro
2016-08-08 10:07:32 +09:00
parent c4199daf74
commit c16af99580

View File

@ -110,7 +110,7 @@ $colspan = 10;
}
// 주문금액
$sql = " select sum(if(io_type = '1', io_price, (ct_price + io_price)) * ct_qty) as price from {$g5['g5_shop_cart_table']} where od_id = '{$row['cart_id']}' and ct_status = '쇼핑' and ct_select = '1' ";
$sql = " select sum(if(io_type = '1', io_price, (ct_price + io_price)) * ct_qty) as price from {$g5['g5_shop_cart_table']} where od_id = '{$row['cart_id']}' and ct_status = '쇼핑' ";
$ct = sql_fetch($sql);
$bg = 'bg'.($i%2);