Commit 6f802d7f authored by abibave's avatar abibave

Request Id:W16LSER006

Added condition for blank value of wf_status column if user not select it in dropdown at the time of addition Sales Return Transaction.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@43769 ce508802-f39f-4f6c-b175-0d175dae99d5
parent ef8c8d44
......@@ -57,7 +57,7 @@ public class SalesReturnWfEJB extends ActionHandlerEJB implements SalesReturnWfE
closePstmtRs(pStmt, rs);
if(!"Y".equalsIgnoreCase(confirmed)){
if ("O".equalsIgnoreCase(status) || "R".equalsIgnoreCase(status)) {
if ("O".equalsIgnoreCase(status) || "R".equalsIgnoreCase(status) || "".equalsIgnoreCase(status)) {
GenericWorkflowClass wfGenericClass = new GenericWorkflowClass();
retString = wfGenericClass.invokeWorkflow(conn, tranId, xtraParams, "w_salesreturn_retn", "salesreturn_retn");
if ("success".equalsIgnoreCase(retString)) {
......
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