Sku List Grid, Name doesn't show?
Posted: Mon May 13, 2013 1:55 pm
When a Sku name is null, with BundleSkuSearchDataSourceFactory() is the default behavior to display null or the name from the default Sku name?
SkuImpl
Tells me that it should display the default Sku's name, but doesn't.
SkuImpl
Code: Select all
@Override
public String getName() {
if (name == null && hasDefaultSku()) {
return lookupDefaultSku().getName();
}
return name;
}
Tells me that it should display the default Sku's name, but doesn't.