Commit 95fa19a2 authored by steurwadkar's avatar steurwadkar

WaveGenration sales order to item change and sort order enhancement functionality changes


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104943 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 9b0268b1
...@@ -302,7 +302,7 @@ etc ...@@ -302,7 +302,7 @@ etc
columnValue = genericUtility.getColumnValue("sale_order__from",currDom); columnValue = genericUtility.getColumnValue("sale_order__from",currDom);
custCodeTo = checkNull(genericUtility.getColumnValue("cust_code__to",currDom)); custCodeTo = checkNull(genericUtility.getColumnValue("cust_code__to",currDom));
saleOrderTo = checkNull(genericUtility.getColumnValue("sale_order__to",currDom)); saleOrderTo = checkNull(genericUtility.getColumnValue("sale_order__to",currDom));
System.out.println("sale order from ["+columnValue+"] "); System.out.println("sale order from ["+columnValue+"] saleOrderTo ["+saleOrderTo+"]");
System.out.println("Hello sale_order__from"); System.out.println("Hello sale_order__from");
//Changed by samadhan on 06/01/2016 for item change on browser wizard //Changed by samadhan on 06/01/2016 for item change on browser wizard
//valueXmlString.append( "<Detail1>\r\n" ); //valueXmlString.append( "<Detail1>\r\n" );
...@@ -433,6 +433,12 @@ etc ...@@ -433,6 +433,12 @@ etc
//Changed by sumit on 29/12/12 display parcel pick allow //Changed by sumit on 29/12/12 display parcel pick allow
valueXmlString.append("<parcelpack_allow protect ='1' ><![CDATA[").append("").append("]]></parcelpack_allow>\r\n"); valueXmlString.append("<parcelpack_allow protect ='1' ><![CDATA[").append("").append("]]></parcelpack_allow>\r\n");
} }
//Added by Santosh on 09/03/2017 to call sale_order_to itemChange[Start]
if(saleOrderTo != "" && saleOrderTo != null && saleOrderTo != "ZZ")
{
return defaultItemChanged(currDom, hdrDom, allDom, objContext, "sale_order__to", editFlag, xtraParams);
}
//Added by Santosh on 09/03/2017 to call sale_order_to itemChange[End]
} }
else else
{ {
......
...@@ -708,7 +708,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -708,7 +708,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
{ {
orderByStr += "CRTERM.CR_TERM_PRIORITY,"; orderByStr += "CRTERM.CR_TERM_PRIORITY,";
} }
else if("Canellation Date".equalsIgnoreCase(sortOrderValueArry[i])) else if("Cancellation Date".equalsIgnoreCase(sortOrderValueArry[i]))
{ {
orderByStr += "SORDER.DUE_DATE,"; orderByStr += "SORDER.DUE_DATE,";
} }
......
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