관리자 경로 수정 작업 중
This commit is contained in:
@ -1,14 +1,14 @@
|
||||
<?
|
||||
$sub_menu = "500110";
|
||||
include_once("./_common.php");
|
||||
$sub_menu = '500110';
|
||||
include_once('./_common.php');
|
||||
|
||||
auth_check($auth[$sub_menu], "r");
|
||||
|
||||
$fr_date = preg_replace("/([0-9]{4})([0-9]{2})([0-9]{2})/", "\\1-\\2-\\3", $fr_date);
|
||||
$to_date = preg_replace("/([0-9]{4})([0-9]{2})([0-9]{2})/", "\\1-\\2-\\3", $to_date);
|
||||
|
||||
$g4[title] = "$fr_date ~ $to_date 매출현황";
|
||||
include_once ("$g4[admin_path]/admin.head.php");
|
||||
$g4['title'] = "$fr_date ~ $to_date 매출현황";
|
||||
include_once (G4_ADMIN_PATH.'/admin.head.php');
|
||||
|
||||
function print_line($save)
|
||||
{
|
||||
@ -18,24 +18,24 @@ function print_line($save)
|
||||
if ($count++ > 0)
|
||||
echo "<tr><td colspan=9 height=1 bgcolor=#EEEEEE></td></tr>\n";
|
||||
|
||||
$date = preg_replace("/-/", "", $save[od_date]);
|
||||
$date = preg_replace("/-/", "", $save['od_date']);
|
||||
|
||||
echo "
|
||||
<tr class=ht>
|
||||
<td align=center><a href='./sale1today.php?date=$date'>$save[od_date]</a></td>
|
||||
<td align=center>".number_format($save[ordercount])."</td>
|
||||
<td align=right >".number_format($save[orderamount])."</td>
|
||||
<td align=right >".number_format($save[ordercancel] + $save[dc])."</td>
|
||||
<td align=right >".number_format($save[receiptbank])."</td>
|
||||
<td align=right >".number_format($save[receiptcard])."</td>
|
||||
<td align=right >".number_format($save[receiptpoint])."</td>
|
||||
<td align=right >".number_format($save[receiptcancel])."</td>
|
||||
<td align=right >".number_format($save[misu])."</td>
|
||||
<td align=center><a href='./sale1today.php?date=$date'>{$save['od_date']}</a></td>
|
||||
<td align=center>".number_format($save['ordercount'])."</td>
|
||||
<td align=right >".number_format($save['orderamount'])."</td>
|
||||
<td align=right >".number_format($save['ordercancel'] + $save['dc'])."</td>
|
||||
<td align=right >".number_format($save['receiptbank'])."</td>
|
||||
<td align=right >".number_format($save['receiptcard'])."</td>
|
||||
<td align=right >".number_format($save['receiptpoint'])."</td>
|
||||
<td align=right >".number_format($save['receiptcancel'])."</td>
|
||||
<td align=right >".number_format($save['misu'])."</td>
|
||||
</tr>\n";
|
||||
}
|
||||
?>
|
||||
|
||||
<?=subtitle($g4[title])?>
|
||||
<?=subtitle($g4['title'])?>
|
||||
|
||||
<table cellpadding=0 cellspacing=0 width=100%>
|
||||
<tr><td colspan=9 height=2 bgcolor=#0E87F9></td></tr>
|
||||
@ -63,51 +63,51 @@ $sql = " select on_uid,
|
||||
od_dc_amount,
|
||||
(od_receipt_bank + od_receipt_card + od_receipt_point) as receiptamount,
|
||||
(od_refund_amount + od_cancel_card) as receiptcancel
|
||||
from $g4[yc4_order_table]
|
||||
where SUBSTRING(od_time,1,10) between '$fr_date' and '$to_date'
|
||||
from {$g4['yc4_order_table']}
|
||||
where SUBSTRING(od_time,1,10) between '$fr_date' and '$to_date'
|
||||
order by od_time desc ";
|
||||
$result = sql_query($sql);
|
||||
for ($i=0; $row=mysql_fetch_array($result); $i++)
|
||||
{
|
||||
if ($i == 0)
|
||||
$save[od_date] = $row[od_date];
|
||||
$save['od_date'] = $row['od_date'];
|
||||
|
||||
if ($save[od_date] != $row[od_date]) {
|
||||
if ($save['od_date'] != $row['od_date']) {
|
||||
print_line($save);
|
||||
unset($save);
|
||||
$save[od_date] = $row[od_date];
|
||||
$save['od_date'] = $row['od_date'];
|
||||
}
|
||||
|
||||
// 장바구니 상태별 금액
|
||||
$sql1 = " select (SUM(ct_amount * ct_qty)) as orderamount, /* 주문합계 */
|
||||
(SUM(IF(ct_status = '취소' OR ct_status = '반품' OR ct_status = '품절', ct_amount * ct_qty, 0))) as ordercancel /* 주문취소 */
|
||||
from $g4[yc4_cart_table]
|
||||
where on_uid = '$row[on_uid]' ";
|
||||
from {$g4['yc4_cart_table']}
|
||||
where on_uid = '{$row['on_uid']}' ";
|
||||
$row1 = sql_fetch($sql1);
|
||||
|
||||
$row1[orderamount] += $row[od_send_cost];
|
||||
$misu = $row1[orderamount] - $row1[ordercancel] - $row[od_dc_amount] - $row[receiptamount] + $row[receiptcancel];
|
||||
$row1['orderamount'] += $row['od_send_cost'];
|
||||
$misu = $row1['orderamount'] - $row1['ordercancel'] - $row['od_dc_amount'] - $row['receiptamount'] + $row['receiptcancel'];
|
||||
|
||||
$save[ordercount]++;
|
||||
$save[orderamount] += $row1[orderamount];
|
||||
$save[ordercancel] += $row1[ordercancel];
|
||||
$save[dc] += $row[od_dc_amount];
|
||||
$save[receiptbank] += $row[od_receipt_bank];
|
||||
$save[receiptcard] += $row[od_receipt_card];
|
||||
$save[receiptpoint] += $row[od_receipt_point];
|
||||
$save[receiptcancel] += $row[receiptcancel];
|
||||
$save[misu] += $misu;
|
||||
$save['ordercount']++;
|
||||
$save['orderamount'] += $row1['orderamount'];
|
||||
$save['ordercancel'] += $row1['ordercancel'];
|
||||
$save['dc'] += $row['od_dc_amount'];
|
||||
$save['receiptbank'] += $row['od_receipt_bank'];
|
||||
$save['receiptcard'] += $row['od_receipt_card'];
|
||||
$save['receiptpoint'] += $row['od_receipt_point'];
|
||||
$save['receiptcancel'] += $row['receiptcancel'];
|
||||
$save['misu'] += $misu;
|
||||
|
||||
$tot[ordercount]++;
|
||||
$tot[orderamount] += $row1[orderamount];
|
||||
$tot[ordercancel] += $row1[ordercancel];
|
||||
$tot[dc] += $row[od_dc_amount];
|
||||
$tot[receiptbank] += $row[od_receipt_bank];
|
||||
$tot[receiptcard] += $row[od_receipt_card];
|
||||
$tot[receiptpoint ] += $row[od_receipt_point];
|
||||
$tot[receiptamount] += $row[receiptamount];
|
||||
$tot[receiptcancel] += $row[receiptcancel];
|
||||
$tot[misu] += $misu;
|
||||
$tot['ordercount']++;
|
||||
$tot['orderamount'] += $row1['orderamount'];
|
||||
$tot['ordercancel'] += $row1['ordercancel'];
|
||||
$tot['dc'] += $row['od_dc_amount'];
|
||||
$tot['receiptbank'] += $row['od_receipt_bank'];
|
||||
$tot['receiptcard'] += $row['od_receipt_card'];
|
||||
$tot['receiptpoint '] += $row['od_receipt_point'];
|
||||
$tot['receiptamount'] += $row['receiptamount'];
|
||||
$tot['receiptcancel'] += $row['receiptcancel'];
|
||||
$tot['misu'] += $misu;
|
||||
}
|
||||
|
||||
if ($i == 0) {
|
||||
@ -119,18 +119,18 @@ if ($i == 0) {
|
||||
<tr><td colspan=9 height=1 bgcolor=#CCCCCC></td></tr>
|
||||
<tr class=ht>
|
||||
<td align=center>합 계</td>
|
||||
<td align=center><?=number_format($tot[ordercount])?></td>
|
||||
<td align=right ><?=number_format($tot[orderamount])?></td>
|
||||
<td align=right ><?=number_format($tot[ordercancel] + $tot[dc])?></td>
|
||||
<td align=right ><?=number_format($tot[receiptbank])?></td>
|
||||
<td align=right ><?=number_format($tot[receiptcard])?></td>
|
||||
<td align=right ><?=number_format($tot[receiptpoint])?></td>
|
||||
<td align=right ><?=number_format($tot[receiptcancel])?></td>
|
||||
<td align=right ><?=number_format($tot[misu])?></td>
|
||||
<td align=center><?=number_format($tot['ordercount'])?></td>
|
||||
<td align=right ><?=number_format($tot['orderamount'])?></td>
|
||||
<td align=right ><?=number_format($tot['ordercancel'] + $tot['dc'])?></td>
|
||||
<td align=right ><?=number_format($tot['receiptbank'])?></td>
|
||||
<td align=right ><?=number_format($tot['receiptcard'])?></td>
|
||||
<td align=right ><?=number_format($tot['receiptpoint'])?></td>
|
||||
<td align=right ><?=number_format($tot['receiptcancel'])?></td>
|
||||
<td align=right ><?=number_format($tot['misu'])?></td>
|
||||
</tr>
|
||||
<tr><td colspan=9 height=1 bgcolor=#CCCCCC></td></tr>
|
||||
</table>
|
||||
|
||||
<?
|
||||
include_once ("$g4[admin_path]/admin.tail.php");
|
||||
include_once (G4_ADMIN_PATH.'/admin.tail.php');
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user