Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Commit

Permalink
미완료주문처리 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chicpro committed Aug 10, 2016
1 parent 7a01d7a commit 85f9636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adm/shop_admin/inorderlist.php
Expand Up @@ -110,7 +110,7 @@
}

// 주문금액
$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);
Expand Down

0 comments on commit 85f9636

Please sign in to comment.