Page 1 of 1

Show quantities in additional Skus list

Posted: Thu Oct 29, 2015 5:32 pm
by ipapachristoudis
Hello

Can someone advice me on how to show available quantities for every SKU in the list of skus at the admin product page?

I need to display an extra column with the quantities. Is it doable?

Re: Show quantities in additional Skus list

Posted: Wed Mar 02, 2016 11:16 pm
by kunner
Use Admin Metadata Overrides.

Please take a look below.
http://www.broadleafcommerce.com/docs/c ... -overrides


You can resolve it simple by modify Sku's adminPresentation metadata.
Just Use XML-based overrides simple.

<mo:override id="blMetadataOverrides">
<mo:overrideItem ceilingEntity="org.broadleafcommerce.core.catalog.domain.Sku">
<mo:field name="quantityAvailable">
<mo:property name="prominent" value="true" />
<mo:property name="gridOrder" value="1000" />
</mo:field>
</mo:overrideItem>
</mo:override>