Commit f499f7f9 authored by ppatro's avatar ppatro

To merge src for WMS updated wave gen changes.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91968 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d4cc6939
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>ibase</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
...@@ -694,12 +694,12 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -694,12 +694,12 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
System.out.println("MIN_SHELF_LIFE =["+minSelfLife+"]"); System.out.println("MIN_SHELF_LIFE =["+minSelfLife+"]");
HashMap itemVolMap = getItemVoumeMap(itemCode, "", conn); HashMap itemVolMap = getItemVoumeMap(itemCode, "", conn);
double packSize = (Double)itemVolMap.get("PACK_SIZE"); double packSize = (Double)itemVolMap.get("PACK_SIZE");
double itemSize = (Double)itemVolMap.get("ITEM_SIZE"); double itemWeight = (Double)itemVolMap.get("ITEM_WEIGHT");
//Change by Rohan Bhogale on 19/07/12 To display transporte details.start //Change by Rohan Bhogale on 19/07/12 To display transporte details.start
getTranInfo = new HashMap(); getTranInfo = new HashMap();
saleOrderTran = rs.getString("SALE_ORDER"); saleOrderTran = rs.getString("SALE_ORDER");
getTranInfo = getTransportInfo(saleOrderTran,itemSize * pendingQty, conn); getTranInfo = getTransportInfo(saleOrderTran,itemWeight * pendingQty, conn);
tranCod = (String)getTranInfo.get("TRAN_CODE"); tranCod = (String)getTranInfo.get("TRAN_CODE");
docLocation = getDocLoc(tranCod, conn); docLocation = getDocLoc(tranCod, conn);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment