View Single Post
  #7  
Old 08-16-2008, 05:00 PM
 
pcparts pcparts is offline
 

Advanced Member
  
Join Date: Jul 2006
Location: Aussie
Posts: 85
 

Default Re: Show manufacturer on Invoice

Try this skin1/mail/html/order_data.tpl

Around line 14 under
Code:
<th width="60" bgcolor="#cccccc">{$lng.lbl_sku}</th>

add
Code:
<th width="100" bgcolor="#cccccc">{$lng.lbl_manufacturer}</th>


Around line 27 under
Code:
<td align="center">{$product.productcode}</td>

add
Code:
<td align="center">{* RG Add Manufacturer to Invoice Start *} {php} $manid=$this->_tpl_vars['product']['manufacturerid'] ; $productman= func_query_first_cell("select manufacturer from xcart_manufacturers where manufacturerid=$manid"); if ($productman!="") { echo " $productman "; } {/php} {* RG Add Manufacturer to Invoice End *}</td>


Then around line 74 Above

Code:
{$lng.lbl_gift_certificate}: {$gc.gcid}<br />

Add
Code:
<td nowrap="nowrap">

Greg
__________________
Greg
X-CART Gold 4.1.10
Reply With Quote