织梦cms二次开发订单导出excel表格
导出的excel文件请用wps软件打开,office软件下可能会乱码
1、打开 /dede/shops_operations.php 找到
1
else if ($dopost == 'delete')
在它上面加入
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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>数量</th>"; echo "<th>支付方式</th>"; echo "<th>配送费</th>"; echo "<th>购买时间</th>"; echo "<th>收货人</th>"; echo "<th>地址</th>"; echo "<th>邮编</th>"; echo "<th>联系电话</th>"; echo "<th>邮箱</th>"; echo "<th>留言</th>"; echo "<th>合计(元)</th>"; echo "<th>状态</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 xjq_shops_orders as o left join xjq_shops_products as p on o.oid=p.oid left join xjq_shops_delivery as d on d.pid=o.pid LEFT JOIN xjq_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>";//数量
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>";//联系电话
echo "<td>".$arr['email']."</td>";//邮箱
echo "<td>".$arr['des']."</td>";//留言
echo "<td>".$arr['priceCount']."</td>";//合计
echo "<td>".GetSta($arr['state'])."</td>";//状态
echo "</tr>";
} echo "</table>"; exit();
}
2、打开 /dede/shops_operations.htm 找到
1
<input type="button" name="b9" value="设为已完成状态" class='np coolbg' style="width:100" onClick="OkSel();">复制
在它下面加入
1
<input type="button" name="b9" value="导出选中订单" class='np coolbg' style="width:100" onClick="OutSel();">复制
继续找到
1
function PushSel(){
在它上面加入
1
2
3
function OutSel(){ var nid = getCheckboxItem();
location.href = "shops_operations.php?dopost=out&nid="+nid;
}
完成,看清楚教程,有的是在下面加入有的是在上面加入的。
修改到此结束,需要此功能的小伙伴赶紧试试吧。
☉本站的源码不会像其它下载站一样植入大量的广告。为了更好的用户体验以后坚持不打水印
☉本站只提供精品源码,源码在于可用,不在多!!希望在这里找到你合适的。
☉本站提供的整站程序,均带数据及演示地址。可以在任一源码详情页查看演示地址
☉本站所有资源(包括源码、模板、素材、特效等)仅供学习与参考,请勿用于商业用途。
☉如有其他问题,请加网站客服QQ(984818011)进行交流。
- 织梦dede首页列表页获取文章对应的tag标签
- 织梦dede导航栏目顶级和二级判断二级输出不同url
- 织梦dede标签array runphp静态生成乱码BUG解决方法
- 织梦dede如何禁止会员发布文章内容带超链接
- 织梦ajax跨域提交自定义表单和跨域验证码问题
- 织梦CMS MIP文章内容页图片适配百度MIP规范
- 织梦CMS时间格式实现XX秒前、XX分钟前、XX天前
- 织梦DedeCMS更新系统缓存增加清理沉余缓存的功能
- 织梦CMS让channelartlist标签支持currentstyle属性的
- 织梦dede自带编辑器替换百度ueditor编辑器
- 织梦DEDECMS整站动态化或整站静态化设置方法
- 织梦dede 模板路径templets目录都有什么?