zencart会员中心订单列表

2012-07-06 09:00 来源:www.chinab4c.com 作者:admin

     zencart会员中心订单列表,这个是zencart会员中心里面,让客户为了方便的管理zencart订单制作的。在zencart会员中心订单中,我们可以看到,zencart订单列表是非常简单的。也是非常清晰的。显示的内容不多。

    zencart会员中心订单列表,是位置于includes/modules/pages/account_history/header_php.php的程序里面调用该会员ID下的所有订单,包括成交的以及为成交的都有在里面。

    zencart的订单列表模板页面位置于includes/templates/template_default/templates/tpl_account_history_default.php页面,这个是负责显示zencart会员中心订单列表的数据信息的。

     我们在这2个页面中,我们可以清晰的看到,zencart订单数据库表是十分简洁的。数据分布合理。

   $history_query_raw = "SELECT o.orders_id, o.date_purchased, o.delivery_name,
                               o.billing_name, ot.text as order_total, s.orders_status_name
                        FROM   " . TABLE_ORDERS . " o, " . TABLE_ORDERS_TOTAL . " ot, " . TABLE_ORDERS_STATUS . " s
                        WHERE      o.customers_id = :customersID
                        AND        o.orders_id = ot.orders_id
                        AND        ot.class = 'ot_total'
                        AND        o.orders_status = s.orders_status_id
                        AND        s.language_id = :languagesID
                        ORDER BY   orders_id DESC";

     以上就是调用某个会员下所有的zencart订单信息

    来源:http://www.chinab4c.com