@ -15,37 +15,53 @@ function print_line($save)
|
|||||||
if ($count++ > 0)
|
if ($count++ > 0)
|
||||||
echo "<tr><td colspan=9 height=1 bgcolor=#EEEEEE></td></tr>\n";
|
echo "<tr><td colspan=9 height=1 bgcolor=#EEEEEE></td></tr>\n";
|
||||||
|
|
||||||
echo "
|
?>
|
||||||
<tr class=ht>
|
<tr class="sale1">
|
||||||
<td align=center><a href='./sale1month.php?fr_date={$save['od_date']}01&to_date={$save['od_date']}12'>{$save['od_date']}</a></td>
|
<td><a href="./sale1month.php?fr_month=<?=$save['od_date']?>01&to_month=<?=$save['od_date']?>12"><?=$save['od_date']?></a></td>
|
||||||
<td align=center>".number_format($save['ordercount'])."</td>
|
<td><?=number_format($save['ordercount'])?></td>
|
||||||
<td align=right >".number_format($save['orderamount'])."</td>
|
<td><?=number_format($save['orderamount'])?></td>
|
||||||
<td align=right >".number_format($save['ordercancel'] + $save['dc'])."</td>
|
<td><?=number_format($save['ordercancel'] + $save['dc'])?></td>
|
||||||
<td align=right >".number_format($save['receiptbank'])."</td>
|
<td><?=number_format($save['receiptbank'])?></td>
|
||||||
<td align=right >".number_format($save['receiptcard'])."</td>
|
<td><?=number_format($save['receiptcard'])?></td>
|
||||||
<td align=right >".number_format($save['receiptpoint'])."</td>
|
<td><?=number_format($save['receiptpoint'])?></td>
|
||||||
<td align=right >".number_format($save['receiptcancel'])."</td>
|
<td><?=number_format($save['receiptcancel'])?></td>
|
||||||
<td align=right >".number_format($save['misu'])."</td>
|
<td><?=number_format($save['misu'])?></td>
|
||||||
</tr>\n";
|
</tr>
|
||||||
|
<?
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?//=subtitle($g4['title'])?>
|
<style type="text/css">
|
||||||
|
.sale1{text-align:center}
|
||||||
<table cellpadding=0 cellspacing=0 width=100%>
|
</style>
|
||||||
<tr><td colspan=9 height=2 bgcolor=#0E87F9></td></tr>
|
<section class="cbox">
|
||||||
<tr class=ht>
|
<h2>연별 매출현황</h2>
|
||||||
<td width=100 align=center>주문년도</td>
|
<table>
|
||||||
<td align=center>주문수</td>
|
<colgroup>
|
||||||
<td width=90 align=right>주문합계</td>
|
<col class="grid_2">
|
||||||
<td width=90 align=right>취소+DC</td>
|
<col class="grid_2">
|
||||||
<td width=90 align=right>무통장입금</td>
|
<col class="grid_2">
|
||||||
<td width=90 align=right>카드입금</td>
|
<col class="grid_2">
|
||||||
<td width=90 align=right>포인트입금</td>
|
<col class="grid_2">
|
||||||
<td width=90 align=right>입금취소</td>
|
<col class="grid_2">
|
||||||
<td width=90 align=right>미수금</td>
|
<col class="grid_2">
|
||||||
|
<col class="grid_2">
|
||||||
|
<col class="grid_2">
|
||||||
|
</colgroup>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">주문년도</th>
|
||||||
|
<th scope="col">주문수</th>
|
||||||
|
<th scope="col">주문합계</th>
|
||||||
|
<th scope="col">취소+DC</th>
|
||||||
|
<th scope="col">무통장입금</th>
|
||||||
|
<th scope="col">카드입금</th>
|
||||||
|
<th scope="col">포인트입금</th>
|
||||||
|
<th scope="col">입금취소</th>
|
||||||
|
<th scope="col">미수금</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr><td colspan=9 height=1 bgcolor=#CCCCCC></td></tr>
|
</thead>
|
||||||
|
<tbody>
|
||||||
<?
|
<?
|
||||||
unset($save);
|
unset($save);
|
||||||
unset($tot);
|
unset($tot);
|
||||||
@ -59,7 +75,7 @@ $sql = " select uq_id,
|
|||||||
(od_receipt_bank + od_receipt_card + od_receipt_point) as receiptamount,
|
(od_receipt_bank + od_receipt_card + od_receipt_point) as receiptamount,
|
||||||
(od_refund_amount + od_cancel_card) as receiptcancel
|
(od_refund_amount + od_cancel_card) as receiptcancel
|
||||||
from {$g4['yc4_order_table']}
|
from {$g4['yc4_order_table']}
|
||||||
where SUBSTRING(od_time,1,4) between '$fr_date' and '$to_date'
|
where SUBSTRING(od_time,1,4) between '$fr_year' and '$to_year'
|
||||||
order by od_time desc ";
|
order by od_time desc ";
|
||||||
$result = sql_query($sql);
|
$result = sql_query($sql);
|
||||||
for ($i=0; $row=mysql_fetch_array($result); $i++)
|
for ($i=0; $row=mysql_fetch_array($result); $i++)
|
||||||
@ -106,25 +122,27 @@ for ($i=0; $row=mysql_fetch_array($result); $i++)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($i == 0) {
|
if ($i == 0) {
|
||||||
echo "<tr><td colspan=9 align=center height=100 bgcolor=#FFFFFF><span class=point>자료가 한건도 없습니다.</span></td></tr>";
|
echo '<tr><td colspan="9" calss=""><span>자료가 한건도 없습니다.</span></td></tr>';
|
||||||
} else {
|
} else {
|
||||||
print_line($save);
|
print_line($save);
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<tr><td colspan=9 height=1 bgcolor=#CCCCCC></td></tr>
|
</tbody>
|
||||||
<tr class=ht>
|
<tfoot>
|
||||||
<td align=center>합 계</td>
|
<tr class="sale1">
|
||||||
<td align=center><?=number_format($tot['ordercount'])?></td>
|
<td>합 계</td>
|
||||||
<td align=right ><?=number_format($tot['orderamount'])?></td>
|
<td><?=number_format($tot['ordercount'])?></td>
|
||||||
<td align=right ><?=number_format($tot['ordercancel'] + $tot['dc'])?></td>
|
<td><?=number_format($tot['orderamount'])?></td>
|
||||||
<td align=right ><?=number_format($tot['receiptbank'])?></td>
|
<td><?=number_format($tot['ordercancel'] + $tot['dc'])?></td>
|
||||||
<td align=right ><?=number_format($tot['receiptcard'])?></td>
|
<td><?=number_format($tot['receiptbank'])?></td>
|
||||||
<td align=right ><?=number_format($tot['receiptpoint'])?></td>
|
<td><?=number_format($tot['receiptcard'])?></td>
|
||||||
<td align=right ><?=number_format($tot['receiptcancel'])?></td>
|
<td><?=number_format($tot['receiptpoint'])?></td>
|
||||||
<td align=right ><?=number_format($tot['misu'])?></td>
|
<td><?=number_format($tot['receiptcancel'])?></td>
|
||||||
|
<td><?=number_format($tot['misu'])?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr><td colspan=9 height=1 bgcolor=#CCCCCC></td></tr>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
|
</section>
|
||||||
|
|
||||||
<?
|
<?
|
||||||
include_once (G4_ADMIN_PATH.'/admin.tail.php');
|
include_once (G4_ADMIN_PATH.'/admin.tail.php');
|
||||||
|
|||||||
Reference in New Issue
Block a user