Spidy Posted January 1, 2015 Share Posted January 1, 2015 Hi all! I realized that the product_supplier_reference is defined in Admin _product_line.tpl, <a href="index.php?controller=adminproducts&id_product={$product['product_id']}&updateproduct&token={getAdminToken tab='AdminProducts'}"> <span class="productName">{$product['product_name']}</span><br /> {if $product.product_reference}{l s='Reference number:'} {$product.product_reference}<br />{/if} {if $product.product_supplier_reference}{l s='Supplier reference:'} {$product.product_supplier_reference}{/if} </a> but in AdminOrdersController I found only this: $products = $this->getProducts($order); // Smarty assign $this->tpl_view_vars = array( 'order' => $order, 'cart' => new Cart($order->id_cart), 'customer' => $customer, 'gender' => $gender, 'customer_addresses' => $customer->getAddresses($this->context->language->id), 'addresses' => array( 'delivery' => $addressDelivery, 'deliveryState' => isset($deliveryState) ? $deliveryState : null, 'invoice' => $addressInvoice, 'invoiceState' => isset($invoiceState) ? $invoiceState : null ), 'customerStats' => $customer->getStats(), 'products' => $products, 'discounts' => $order->getCartRules(), 'orders_total_paid_tax_incl' => $order->getOrdersTotalPaid(), // Get the sum of total_paid_tax_incl of the order with similar reference 'total_paid' => $order->getTotalPaid(), ....but the products supplier reference has not show on any order deatils page.Iam using ps 1.6.0.9...Anyone know a solution for this? Link to comment Share on other sites More sharing options...
Spidy Posted January 1, 2015 Author Share Posted January 1, 2015 It is solved.... CSV import updated only the old supplier_reference column.... Link to comment Share on other sites More sharing options...
Recommended Posts