Commit c21bfdda authored by smestry's avatar smestry

Updated the java file for Product wizard trade mark pophelp.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103760 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 74dd65b2
...@@ -107,6 +107,8 @@ public class DDProductWizEditPosEJB extends ValidatorEJB implements DDProductWiz ...@@ -107,6 +107,8 @@ public class DDProductWizEditPosEJB extends ValidatorEJB implements DDProductWiz
// Changed by samadhan on 19/05/16 [start] // Changed by samadhan on 19/05/16 [start]
finally finally
{ {
tradeMarkParent = "";
tradeMarkChild = "";
deleteSkus = ""; deleteSkus = "";
attributeSetId = ""; attributeSetId = "";
item_parnt = ""; item_parnt = "";
......
...@@ -122,6 +122,8 @@ public class DDProductWizPosEJB extends ValidatorEJB implements DDProductWizPosR ...@@ -122,6 +122,8 @@ public class DDProductWizPosEJB extends ValidatorEJB implements DDProductWizPosR
// Changed by samadhan on 19/05/16 [start] // Changed by samadhan on 19/05/16 [start]
finally finally
{ {
tradeMarkChild = "";
tradeMarkParent = "";
apiSimpleUrl=""; apiSimpleUrl="";
apiConfigUrl=""; apiConfigUrl="";
apiDelSkusUrl=""; apiDelSkusUrl="";
...@@ -425,6 +427,10 @@ public class DDProductWizPosEJB extends ValidatorEJB implements DDProductWizPosR ...@@ -425,6 +427,10 @@ public class DDProductWizPosEJB extends ValidatorEJB implements DDProductWizPosR
{ {
tradeMarkParent = checkNull(childNode.getFirstChild().getNodeValue()); tradeMarkParent = checkNull(childNode.getFirstChild().getNodeValue());
} }
else
{
tradeMarkParent = "";
}
} }
//Changed by Sneha on 26-09-2019, to add trade mark for item parent [End] //Changed by Sneha on 26-09-2019, to add trade mark for item parent [End]
...@@ -851,6 +857,11 @@ public class DDProductWizPosEJB extends ValidatorEJB implements DDProductWizPosR ...@@ -851,6 +857,11 @@ public class DDProductWizPosEJB extends ValidatorEJB implements DDProductWizPosR
if ( childNode != null && childNode.getFirstChild() != null ) if ( childNode != null && childNode.getFirstChild() != null )
{ {
tradeMarkChild = checkNull(childNode.getFirstChild().getNodeValue()); tradeMarkChild = checkNull(childNode.getFirstChild().getNodeValue());
//System.out.println("tradeMarkChild inside if =========>> ["+tradeMarkChild+"]");
}
else
{
tradeMarkChild = "";
} }
} }
//Changed by Sneha on 26-09-2019, to add trade mark for child item [End] //Changed by Sneha on 26-09-2019, to add trade mark for child item [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