Commit ae95c97d authored by pshinde's avatar pshinde

changes done in freight rate (DI3GSUN047)


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94434 ce508802-f39f-4f6c-b175-0d175dae99d5
parent bd89b61f
......@@ -817,6 +817,23 @@ public String itemChanged(Document dom, Document dom1, Document dom2, String obj
chargeCode=genericUtility.getColumnValue("charge_code", dom2);
valueXmlString.append("<charge_code protect='0'>").append("<![CDATA["+chargeCode+"]]>").append("</charge_code>");
}
else if(currentColumn.trim().equalsIgnoreCase("itm_defaultedit"))
{
loadType = checkNull(genericUtility.getColumnValue("load_type", dom));
if(loadType.equals("F"))
{
System.out.println("LAOD TYPE IS FFF");
valueXmlString.append("<min_weight protect = \"1\">").append("<![CDATA[]]>").append("</min_weight>");
valueXmlString.append("<max_weight protect = \"1\">").append("<![CDATA[]]>").append("</max_weight>");
}
else
{
System.out.println("LAOD TYPE IS DDDDDDDDD");
valueXmlString.append("<min_weight protect = \"0\">").append("<![CDATA[]]>").append("</min_weight>");
valueXmlString.append("<max_weight protect = \"0\">").append("<![CDATA[]]>").append("</max_weight>");
}
}
else if (currentColumn.trim().equalsIgnoreCase("frt_list"))
{
......
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