[PHP] 쇼핑몰에 쓰려고 만든 함수 몇개
쇼핑몰 관리자 페이지에서 사용하려고 만든 함수 몇가지.. 매출액이나 주문건수 등을 계산할 때 쓰는 함수이다.
function get_shop_sales($period)
{
global $g4;
$len = strlen($period);
$sql = ” select SUM( a.ct_amount * a.ct_qty ) – SUM( IF(a.ct_status = ‘취소’ OR a.ct_status = ‘반품’ OR a.ct_status = ‘품절’, a.ct_amount * a.ct_qty, 0) ) as sales
from $g4[shop_cart_table] as a left join $g4[shop_order_table] as b on ( a.on_uid = b.on_uid )
where substring(b.od_time, 1, $len) = ‘$period’ “;
$row = sql_fetch($sql);
return $row[sales];
}
// 결재완료수
function get_credit_count($period)
{
global $g4;
$len = strlen($period);
$sql = ” select od_id from $g4[shop_order_table]
where ((od_temp_bank – od_receipt_bank – od_receipt_point) = 0)
or ((od_temp_card – od_receipt_card – od_receipt_point) = 0)
and substring(od_receipt_time, 1, $len) = ‘$period’ “;
$result = sql_query($sql);
$count = mysql_num_rows($result);
return $count;
}
// 주문수
function get_order_count($period)
{
global $g4;
$len = strlen($period);
$sql = ” select od_id from $g4[shop_order_table] where substring(od_time, 1, $len) = ‘$period’ “;
$result = sql_query($sql);
$count = mysql_num_rows($result);
return $count;
}
// 회원수
function get_member_count($period)
{
global $g4;
$len = strlen($period);
$sql = ” select mb_no from $g4[member_table] where substring(mb_datetime, 1, $len) = ‘$period’ “;
$result = sql_query($sql);
$count = mysql_num_rows($result);
return $count;
}
// 취소수
function get_cancel_count($period)
{
global $g4;
$len = strlen($period);
$sql = ” select distinct b.od_id
from $g4[shop_cart_table] as a left join $g4[shop_order_table] as b on ( a.on_uid = b.on_uid )
where a.ct_status IN (‘취소’, ‘반품’, ‘품절’) and substring(b.od_time, 1, $len) = ‘$period’ “;
$result = sql_query($sql);
$count = mysql_num_rows($result);
return $count;
}
넘겨받은 $period 의 길이를 계산해서 그것만큼 substring 결과 값이 같은 것만 계산하도록 했다. 기간이 일단위에서
월단위가 될 때도 있고 어쩌면 년단위가 될 수도 있으니까.. 저런 꼼수를 부려봤는데 괜찮게 한 것인지는 모르겠다.