Announcement

Collapse
No announcement yet.

Packing List for Kits

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Packing List for Kits

    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.

    #2
    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.
    Brennan Heyde
    VP Product
    Miva, Inc.
    [email protected]
    https://www.miva.com

    Comment

    Working...
    X