I have set up a configurable product based on 6 different single products. What I would like to happen is for the user to pick the size and color they want, then on checkout, it will pull up the the single product (with SKU) that they selected. Right now in the checkout process, it just displays the configurable product and its associated SKU.
We have to export orders into our financial software and it won’t be able to decipher which product the person wants by the configurable product SKU. It needs to show the exact single product SKU.
A few of us have been reporting this bug for a while.
We feel that the simple product SKU should be indicated in the invoice, packing slip, and order detail pages. Customers will be confused if they order 3 different sizes or colors of a product and see the same SKU 3 times on the invoice, and the shipping department will have trouble finding the right product if the simple sku isn’t on the packing slip.
Where exactly do I put this in the file?
Do I have to add
echo $_item->getSku()
if ($_options = $this->getOptionList()) {
echo $this->getChildProduct()->getSku();
}
else {
echo $_item->getSku();
}
I\’ve tried to add it on line 62 but I get nothing. see enclosed file
Thank you so much. I would need to show it in the admin as well so that i can pull out the ordr. Where would i put it?
I tried in the adminhtml/default/default/sales/order/view/items.phtml but it doesn’t work.
Thank you so much. I would need to show it in the admin as well so that i can pull out the ordr. Where would i put it?
I tried in the adminhtml/default/default/sales/order/view/items.phtml but it doesn\’t work.
I tried, but when I try to put the code after sku, everything dissapears.
This how i put the code, but it doesn’t show the items nicely. It just adds all the individuals sku’s as duplicates above the box. I just like like to replace the config by the individual sku.
<?php $_items = $this->getItemsCollection() ?>
<?php $i=0;foreach ($_items as $_item):?>
<?php if ($_options = $this->getOptionList()){
echo $this->getChildProduct()->getSku();