花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網,按 + 收藏我們
登錄 注冊 退出 找回密碼

ecshop商品詳情頁面顯示商品購買記錄方法

時間: 2024-02-25 10:43 閱讀: 作者:素材無憂網

實現ECSHOP商品詳情頁面顯示購買記錄有些ECSHOP模板開發(fā)時候沒有帶這個商品購買記錄,所以需要自己增加下:
在goods.php加入 代碼
$smarty->assign('sale_history',getsales_history($goods_id));//獲取購買歷史記錄
function getsales_history($goods_id){$sql ='select f.consignee, f.order_sn, f.address, g.goods_number,f.add_time FROM '. $GLOBALS['ecs']->table('order_goods') .' as g,'. $GLOBALS['ecs']->table('order_info') .' as f where g.order_id = f.order_id and g.goods_id='.$goods_id;$res = $GLOBALS['db']->getAll($sql);$sales_history = array();foreach ($res AS $idx => $row){
$sales_history[$idx]['name'] = $row['consignee'];
$sales_history[$idx]['order_sn'] = $row['order_sn']; $sales_history[$idx]['address'] = $row['address'];
$sales_history[$idx]['number'] = $row['goods_number'];
//$sales_history[$idx]['add_time'] = local_date("Y-m-d", $row['add_time']);
$sales_history[$idx]['add_time'] = local_date($GLOBALS['_CFG']['time_format'], $row['add_time']);
}
return $sales_history;}
在goods.dwt中加入 代碼
歷史購買記錄 名字 訂單號 地址 數量 日期
{$saleitem.name} {$saleitem.order_sn}

      {$saleitem.address} {$saleitem.number} {$saleitem.add_time}

      版權聲明: 本站資源均來自互聯網或會員發(fā)布,如果侵犯了您的權益請與我們聯系,我們將在24小時內刪除!謝謝!

      轉載請注明: ecshop商品詳情頁面顯示商品購買記錄方法

      相關文章
      推薦文章
      模板推薦
      • 聯系我們

        網站模板素材無憂

        網站模板源碼群

        客服QQ

        工作時間:8:00-18:00

        客服QQ

        379144319

        電子郵件

        [email protected]

      • 返回頂部