Not sure if there is a way to do this, but we have several kit products.  Is there code I can use for the packing slip that will grab the skus associated with the kit?  As it stands now, I had to create a spreadsheet printout for our shipping department with the breakdown of the items.
							
						
					Announcement
				
					Collapse
				
			
		
	
		
			
				No announcement yet.
				
			
				
	
Packing List for Kits
				
					Collapse
				
			
		
	X
- 
	
	
		
		
		
		
		
		
		
	
	
Yes there is a foreach loop which allows you to output the kit data here:
Code:<mvt:foreach iterator="part" array="group:parts"> <tr> <td class="code">Part: &mvt:part:code;</td> <td class="product">&mvt:part:name;</td> <td class="each">&mvt:part:quantity;</td> <td class="total">&mvt:part:total_quantity;</td> </tr> </mvt:foreach>
This needs to be inside the <mvt:foreach iterator="group" array="ordershipment:groups"> loop.
 
Comment