* MPPProductBOMLine.isCoProduct - implementation was commented out => uncomment it
* add MPPProductBOMLine.isByProduct method
This commit is contained in:
teo_sarca 2009-06-12 14:01:38 +00:00
parent d34be4e2c7
commit 89bb37d216
1 changed files with 8 additions and 3 deletions

View File

@ -155,11 +155,16 @@ public class MPPProductBOMLine extends X_PP_Product_BOMLine
return true;
}
public boolean isByProduct()
{
String componentType = getComponentType();
return COMPONENTTYPE_By_Product.equals(componentType);
}
public boolean isCoProduct()
{
// String componentType = getComponentType();
// return COMPONENTTYPE_ByProduct.equals(componentType); // TODO
return false;
String componentType = getComponentType();
return COMPONENTTYPE_Co_Product.equals(componentType);
}
/**