[Tep-j-general] Re: 納品書の表示について

Back to archive index

Seiji Sogabe sogab****@alles*****
2005年 7月 20日 (水) 02:05:51 JST


こんばんわ、曽我部です。

shellac wrote:
>>             $order->info['currency_value']);
>>     } else {
>>         $price_with_tax = $tprice_with_tax = '---';
>>     }
> 
> 
> コードを加える箇所はこの間でいいのでしょうか。
> 
> 
>>     echo '        </td>' . "\n" .
>>          '        <td class="dataTableContent" valign="top">' . $order->products[$i]['model'] . '</td>' . "\n";

場所はあっています。
ただ、

> $partist_query = tep_db_query("select products_artist from products where products_id = '" .
> $order->products[$i]['id'] . "'");

の$order->products[$i]には、商品のIDがないので表示されないようです。

admin/includes/classes/order.phpの85行目の

> $orders_products_query = tep_db_query("select orders_products_id, products_name, ...(省略)
を
$orders_products_query = tep_db_query("select orders_products_id, products_id, products_name, ...
                                                                  ^^^^^^^^^^^
のように変更(products_idを追加)して、91行目の

>                                           'price' => $orders_products['products_price'],

のあとに、
                                            'id' => $orders_products['products_id'],

を追加すれば、invoice.phpでは$order->products[$i]['id']で商品IDを取得できるので、
表示されると思います。


では。
-- 
sogab****@alles*****




Tep-j-general メーリングリストの案内
Back to archive index