Commit b52505bc authored by wansari's avatar wansari

added dealloc_qty in XML string as it was giving error can not insert null...

added dealloc_qty in XML string as it was giving error can not insert null into, while inserting in sord_alloc_det table.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@43572 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e5205fc6
......@@ -1080,6 +1080,8 @@ public class StockAllocIc extends ValidatorEJB implements StockAllocIcLocal, Sto
valueXmlString.append("<unit__std>").append( unitStd ).append("</unit__std>");
valueXmlString.append("<conv__qty_stduom>").append( convQtyStduom ).append("</conv__qty_stduom>");
valueXmlString.append("<quantity__stduom>").append( quantityStduom ).append("</quantity__stduom>");
//Added by wasim on 14-04-2017 for setting dealloc_qty in XML string as it was giving error, can not insert null into sord_alloc_det
valueXmlString.append("<dealloc_qty>").append(0.0).append("</dealloc_qty>");
// added by cpatil end
}
......
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