織夢訂單列表導出到excel,
1、打開 /dede/shops_operations.php 找到
else if ($dopost == 'delete')
在它上面加入
else if ($dopost == 'out')
{
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:attachment;filename=".date("Y-m-d-H-i-s").".xls");
echo "<table><tr>";
echo "<th>訂單號</th>";
echo "<th>商品名稱</th>";
echo "<th>單價(元/單位)</th>";
echo "<th>數(shù)量</th>";
echo "<th>支付方式</th>";
echo "<th>配送費</th>";
echo "<th>購買時間</th>";
echo "<th>收貨人</th>";
echo "<th>地址</th>";
echo "<th>郵編</th>";
echo "<th>聯(lián)系電話</th>";
echo "<th>郵箱</th>";
echo "<th>留言</th>";
echo "<th>合計(元)</th>";
echo "<th>狀態(tài)</th>";
echo "</tr>";
$wh = '';
if( !empty($nid) )
{
$nids = explode('`',$nid);
foreach($nids as $n)
{
if($wh=='') $wh = " WHERE o.oid='$n' ";
else $wh .= " OR o.oid='$n' ";
}
}
$sql = "SELECT o.*,p.title,p.price as uprice,d.dname,u.* FROM dede_shops_orders as o left join dede_shops_products as p on o.oid=p.oid left join dede_shops_delivery as d on d.pid=o.pid LEFT JOIN dede_shops_userinfo AS u ON o.oid=u.oid $wh";
$dsql->SetQuery($sql);
$dsql->Execute('t');
while($arr = $dsql->GetArray('t'))
{
echo "<tr>";
echo "<td>".$arr['oid']."</td>";//訂單號
echo "<td>".$arr['title']."</td>";//商品名稱
echo "<td>".$arr['uprice']."</td>";//單價
echo "<td>".$arr['cartcount']."</td>";//數(shù)量
echo "<td>".GetsType($arr['paytype'])."</td>";//支付方式
echo "<td>".$arr['dname']."費用:".$arr['dprice']."元</td>";//配送費
echo "<td>".GetDateTimeMk($arr['stime'])."</td>";//購買時間
echo "<td>".$arr['consignee']."</td>";//收貨人
echo "<td>".$arr['address']."</td>";//地址
echo "<td>".$arr['zip']."</td>";//郵編
echo "<td>".$arr['tel']."</td>";//聯(lián)系電話
echo "<td>".$arr['email']."</td>";//郵箱
echo "<td>".$arr['des']."</td>";//留言
echo "<td>".$arr['priceCount']."</td>";//合計
echo "<td>".GetSta($arr['state'])."</td>";//狀態(tài)
echo "</tr>";
}
echo "</table>";
exit();
}
2、打開 /dede/shops_operations.htm 找到
<input type="button" name="b9" value="設為已完成狀態(tài)" class='np coolbg' style="width:100" onClick="OkSel();">
在它下面加入
<input type="button" name="b9" value="導出選中訂單" class='np coolbg' style="width:100" onClick="OutSel();">
繼續(xù)找到
function PushSel(){
在它上面加入
function OutSel()
{
var nid = getCheckboxItem();
location.href = "shops_operations.php?dopost=out&nid="+nid;
}
上述完成,注意加的上下位置,不能加錯了。
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢訂單列表導出到excel