Author: hansbak
Date: Sun Jul 12 07:59:04 2009
New Revision: 793284
URL:
http://svn.apache.org/viewvc?rev=793284&view=revLog:
field name wrong
Modified:
ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/bom/BOMNode.java
Modified: ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/bom/BOMNode.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/bom/BOMNode.java?rev=793284&r1=793283&r2=793284&view=diff==============================================================================
--- ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/bom/BOMNode.java (original)
+++ ofbiz/trunk/applications/manufacturing/src/org/ofbiz/manufacturing/bom/BOMNode.java Sun Jul 12 07:59:04 2009
@@ -466,7 +466,7 @@
this.depth = depth;
this.quantity = quantity.multiply(quantityMultiplier).multiply(scrapFactor);
// First of all we visit the current node.
- if (this.getProduct().getString("shipmentBoxTypeId") != null) {
+ if (this.getProduct().getString("defaultShipmentBoxTypeId") != null) {
arr.add(this);
} else {
GenericValue oneChild = null;