[email protected] wrote:
Author: jleroux
Date: Thu Feb 19 17:19:48 2009
New Revision: 745931
URL: http://svn.apache.org/viewvc?rev=745931&view=rev
Log:
A slightly modified patch from Karim Rahimpur "Packing issues: weights and remaining
items" https://issues.apache.org/jira/browse/OFBIZ-2163 OFBIZ-2163
Modified:
ofbiz/trunk/applications/product/src/org/ofbiz/shipment/packing/PackingServices.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/packing/PackingServices.java?rev=745931&r1=745930&r2=745931&view=diff
==============================================================================
---
ofbiz/trunk/applications/product/src/org/ofbiz/shipment/packing/PackingServices.java
(original)
+++
ofbiz/trunk/applications/product/src/org/ofbiz/shipment/packing/PackingServices.java
Thu Feb 19 17:19:48 2009
@@ -70,6 +70,23 @@
return ServiceUtil.returnSuccess();
}
+ /**
+ * <p>Create or update package lines.</p>
+ * <p>Context parameters:
+ * <ul>
+ * <li>selInfo - selected rows</li>
+ * <li>iteInfo - orderItemIds</li>
+ * <li>prdInfo - productIds</li>
+ * <li>pkgInfo - package numbers</li>
+ * <li>wgtInfo - weights to pack</li>
+ * <li>numPackagesInfo - number of packages to pack per line (>= 1, default:
1)<br/>
+ * Packs the same items n times in consecutive packages, starting from the
package number retrieved from pkgInfo.</li>
+ * <ul>
Oops?
-Adrian