0

萨拉姆

我想查看订单的详细信息,例如历史订单中的订单

我使用history.js,但我没有得到查看详细订单的页面

这是一些代码

{foreach from=$orders item=order name=myLoop}
    {if $order.id_order_state==5}
        {if isset($order.invoice) && $order.invoice && isset($order.virtual) && $order.virtual}
        {/if}
        -|-
        {$order.id_order}
        {Order::getUniqReferenceOf($order.id_order)}
        -|-
        {$order.date_add|date_format:'Y-m-d H:i:s'}

        -|-
            {foreach from=$histories item=history name=hLoop}
                {if $history[0].id_order==$order.id_order}
                    {$history[0].date_add}
                {/if}
            {/foreach}
        -|-

        {$order.payment|escape:'htmlall':'UTF-8'}
        -|-
        {if isset($order.order_state)}{$order.order_state|escape:'htmlall':'UTF-8'}
        {/if}

        <br>
            <a class="color-myaccount" href="javascript:showOrder(1, {$order.id_order|intval}, '{$base_dir}?fc=module&module={$module_name}&controller=products');">{l s='details'}</a>


    {/if}

{/foreach}

此代码查看顺序和详细信息获取详细信息顺序

但我不知道细节

4

2 回答 2

1

试试这个函数,它是静态的:

Order::getOrdersWithInformations()

你可以从中得到,添加日期 + id_customer + total_paid + stats 等等。

于 2013-07-27T12:12:49.677 回答
0

PS版是什么?

对于 1.5:查看“OrderDetailControllerCore”类(控制器/前端/)和 order-detail.tpl(主题/您的模板/)

于 2013-07-17T16:00:57.817 回答