Commit 225b0d09 authored by pchavan's avatar pchavan

Add CheckNullandTrim method.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@179469 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 28e253a7
......@@ -9394,6 +9394,13 @@ public class PoReceiptIc extends ValidatorEJB implements PoReceiptIcLocal,PoRec
}
return input;
}
private String checkNullandTrim(String input) {
if (input == null) {
input = "";
}
return input.trim();
}
private String gbfcheckpodetsite(String purcOrder,String siteCode,Connection 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