Commit eff44b04 authored by sanashaikh's avatar sanashaikh

Sana S: Modified on 24/12/19

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@214012 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c623f0c0
......@@ -95,10 +95,13 @@ public class ShiftPatternProcIC extends ValidatorEJB implements ShiftPatternProc
if (currentColumn.trim().equals("itm_default"))
{
String shiftPattern = getColumnValue("shift_pattern",dom);
String shiftTo = getColumnValue("shift_to",dom);
valueXmlString.append("<shift_pattern protect = '1'> ").append(shiftPattern == null ? "N":shiftPattern).append("</shift_pattern>\r\n");
valueXmlString.append("<shift_to protect = '1'> ").append(shiftTo == null ? "" : shiftTo).append("</shift_to>\r\n");
String shiftPattern = genericUtility.getColumnValue("shift_pattern",dom);
String shiftTo = genericUtility.getColumnValue("shift_to",dom);
System.out.println("shiftPattern>>"+shiftPattern+"\tshiftTo>>>>"+shiftTo);
valueXmlString.append("<shift_pattern protect=\"1\"> ").append(shiftPattern == null ? "N":shiftPattern).append("</shift_pattern>\r\n");
valueXmlString.append("<shift_to protect=\"1\"> ").append(shiftTo == null ? "" : shiftTo).append("</shift_to>\r\n");
loginSite = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"loginSite");
valueXmlString.append("<site_code__fr>").append(loginSite).append("</site_code__fr>\r\n");
......
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