Commit 496f3b53 authored by msaggam's avatar msaggam

In customer master sales_pers to be made nullable and mandatory to be removed,

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@201289 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4bf2a133
...@@ -86,9 +86,6 @@ implements CustomerLocal, CustomerRemote ...@@ -86,9 +86,6 @@ implements CustomerLocal, CustomerRemote
String errorType = ""; String errorType = "";
String errString = ""; String errString = "";
String tranId = ""; String tranId = "";
//Variable declared by Mahesh Saggam on 27-05-2019 [Start]
String modName = "";
//end
String custCode = "", ignoreCredit = "", ignoreDays = "", acctCodeAdv = "", cctrCodeAdv = "", groupCode = "", custCodeBil = "", stanCode = "", terrCode = ""; String custCode = "", ignoreCredit = "", ignoreDays = "", acctCodeAdv = "", cctrCodeAdv = "", groupCode = "", custCodeBil = "", stanCode = "", terrCode = "";
String stateCode = "", countCode = "", crTerm = "", currCode = "", currCode1 = "", acctCodeAr = "", cctrCodeAr = "", taxClass = "", taxChap = "", priceList = ""; String stateCode = "", countCode = "", crTerm = "", currCode = "", currCode1 = "", acctCodeAr = "", cctrCodeAr = "", taxClass = "", taxChap = "", priceList = "";
String salesPers = "", tranCode = "", siteCodeRcp = "", siteCode = "", channelPartner = "", blackListing = "", contactCode = "", bankCode = "", priceListDisc = ""; String salesPers = "", tranCode = "", siteCodeRcp = "", siteCode = "", channelPartner = "", blackListing = "", contactCode = "", bankCode = "", priceListDisc = "";
...@@ -117,10 +114,6 @@ implements CustomerLocal, CustomerRemote ...@@ -117,10 +114,6 @@ implements CustomerLocal, CustomerRemote
conn = getConnection(); conn = getConnection();
// Changes and Commented By Bhushan on 09-06-2016 :END // Changes and Commented By Bhushan on 09-06-2016 :END
userId = getValueFromXTRA_PARAMS(xtraParams, "loginCode"); userId = getValueFromXTRA_PARAMS(xtraParams, "loginCode");
//Changed by Mahesh Saggam on 27-05-2019 [Start]
modName = ("w_" + getValueFromXTRA_PARAMS(xtraParams, "obj_name")).toUpperCase();
System.out.println("transer=============================" + modName);
//Changed by Mahesh Saggam on 27-05-2019 [Start]
if ((objContext != null) && (objContext.trim().length() > 0)) if ((objContext != null) && (objContext.trim().length() > 0))
{ {
currentFormNo = Integer.parseInt(objContext); currentFormNo = Integer.parseInt(objContext);
...@@ -988,7 +981,9 @@ implements CustomerLocal, CustomerRemote ...@@ -988,7 +981,9 @@ implements CustomerLocal, CustomerRemote
} }
} }
else if (childNodeName.equalsIgnoreCase("sales_pers")) //Changed by Mahesh Saggam on 29-05-2019[Start]
/*else if (childNodeName.equalsIgnoreCase("sales_pers"))
{ {
salesPers = checkNull(genericUtility.getColumnValue("sales_pers", dom)); salesPers = checkNull(genericUtility.getColumnValue("sales_pers", dom));
...@@ -1016,15 +1011,17 @@ implements CustomerLocal, CustomerRemote ...@@ -1016,15 +1011,17 @@ implements CustomerLocal, CustomerRemote
} }
} }
/* Comment By Nasruddin [16-SEP-16] START Comment By Nasruddin [16-SEP-16] START
else else
{ {
errCode = "VMSLPERNLL"; errCode = "VMSLPERNLL";
errList.add(errCode); errList.add(errCode);
errFields.add(childNodeName.toLowerCase()); errFields.add(childNodeName.toLowerCase());
} }
Comment By Nasruddin [16-SEP-16] END*/ Comment By Nasruddin [16-SEP-16] END
} }*/
//Changed by Mahesh Saggam on 29-05-2019[End]
else if (childNodeName.equalsIgnoreCase("sales_pers__1")) else if (childNodeName.equalsIgnoreCase("sales_pers__1"))
{ {
......
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