将织梦CMS进行二次开发以实现订单导出为Excel表格
织梦CMS二次开发订单导出Excel表格,可以通过以下步骤实现: 1. 在后台模板中找到需要导出的订单列表页面。 2. 在该页面中添加一个导出按钮,点击后触发导出功能。 3. 编写导出功能的代码,将订单数据读取到数组中。 4. 使用PHPExcel库将数组中的数据写入Excel文件。 5. 设置Excel文件的格式和内容,包括表头、列宽、单元格样式等。 6. 将生成的Excel文件保存到服务器上,并提供下载链接给用户。
织梦后台商品订单列表导出到excel,虽然对于很多做大站的商城站来说织梦不是最好的选择,但是这个插件也是一个参考,也方便了企业商品订单的管理。
使用说明
可选择导出指定的订单,不选就是导出全部
导出的excle文件按当前时间命名
导出的excel文件请用WPS软件打开,office软件下可能会乱码
1、打开 /dede/shops_operations.php 找到
elseif($dopost=='delete')
在它上面加入
elseif($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($nidsas$n){if($wh=='')$wh="WHEREo.oid='$n'";else$wh.="ORo.oid='$n'";}}$sql="SELECTo.*,p.title,p.priceasuprice,d.dname,u.*FROMxjq_shops_ordersasoleftjoinxjq_shops_productsaspono.oid=p.oidleftjoinxjq_shops_deliveryasdond.pid=o.pidLEFTJOINxjq_shops_userinfoASuONo.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 找到
<inputtype="button"name="b9"value="设为已完成状态"class='npcoolbg'style="width:100"onClick="OkSel();">复制
在它下面加入
<inputtype="button"name="b9"value="导出选中订单"class='npcoolbg'style="width:100"onClick="OutSel();">复制
继续找到
functionPushSel(){
在它上面加入
functionOutSel(){varnid=getCheckboxItem();location.href="shops_operations.php?dopost=out&nid="+nid;}
完成,看清楚教程,有的是在下面加入有的是在上面加入的。
修改到此结束,需要此功能的小伙伴赶紧试试吧。