Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 862836 Details for
Bug 1064932
The code of method _jspService(HttpServletRequest, HttpServletResponse) is exceeding the 65535 bytes limit
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
JSP which gives error
test.jsp (text/plain), 169.33 KB, created by
kashi
on 2014-02-13 15:15:34 UTC
(
hide
)
Description:
JSP which gives error
Filename:
MIME Type:
Creator:
kashi
Created:
2014-02-13 15:15:34 UTC
Size:
169.33 KB
patch
obsolete
><%@page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> ><%@taglib uri="struts-html" prefix="html"%> ><%@taglib uri="struts-bean" prefix="bean"%> ><%@taglib uri="struts-logic" prefix="logic"%> > ><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" >"http://www.w3.org/TR/html4/loose.dtd"> ><html> > <head> > <title>CPOS</title> > <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> > <link href="css/General.css" rel="stylesheet" type="text/css"> > <script language="JavaScript" src="../../js/Sales.js"></script> > <script language="JavaScript" src="../../js/Calendar.js"></script> > <script language="javascript"> > var cal = new CalendarPopup(); > >var indFrom = ""; >function removeId(from) >{ > if (from != null && from == 'org') > { > document.getElementById("selectedOrgEntity").value = ''; > } > else if(from != null && from == 'rel') > { > document.getElementById("relManagerName").value = ''; > } >} > >function changeValue() >{ >var value = document.getElementById('flexAttr6').value; >if(document.getElementById('flexAttr6').checked) >{ >document.getElementById('flexAttr6').value='Y'; >} >else >{ >document.getElementById('flexAttr6').value='N'; >} >} > > >// Commercial BR9: Employee_Creation R4 BY TCS 486512 START > function autoPopulateAddress(obj){ > var entOrg = document.getElementById('parentEntityId').value; > var url = ""; > if(obj.value!=0){ > url = '/cPOSWeb/jsp/sales/addEntity.do?method=autoPopulateAddress&entOrgId='+entOrg; > if(obj.value=="" || url==""){ > }else{ > getData(url) > } > } > } > function getData(url ) { > if (window.XMLHttpRequest) > { // Non-IE browsers > req = new XMLHttpRequest(); > req.onreadystatechange = processStateChange; > try { > req.open("GET", url, true); > } > catch (e) { > alert(e); > } > req.send(null); > } > else if (window.ActiveXObject) > { // IE > req = new ActiveXObject("Microsoft.XMLHTTP"); > if (req) > { > req.onreadystatechange = processStateChange; > // req.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); > req.open("GET", url, true); > req.send(); > } > } > } > function processStateChange() { > if (req.readyState == 4) { // Complete > if (req.status == 200) { // OK response > xmlDoc = req.responseXML; > var x = xmlDoc.documentElement; > var city = x.getElementsByTagName('city')[0].childNodes[0].nodeValue; > var state = x.getElementsByTagName('state')[0].childNodes[0].nodeValue; > var stateId = x.getElementsByTagName('stateId')[0].childNodes[0].nodeValue; > var country = x.getElementsByTagName('country')[0].childNodes[0].nodeValue; > var countryId = x.getElementsByTagName('countryId')[0].childNodes[0].nodeValue; > var cityId = x.getElementsByTagName('cityId')[0].childNodes[0].nodeValue; > var pincode = x.getElementsByTagName('pincode')[0].childNodes[0].nodeValue; > var address = x.getElementsByTagName('address')[0].childNodes[0].nodeValue; > var regionState = x.getElementsByTagName('regionState')[0].childNodes[0].nodeValue; > var regionStateId = x.getElementsByTagName('regionStateId')[0].childNodes[0].nodeValue; > > document.getElementById('address').value=address; > document.getElementById('selectedCountry').value=countryId; > //document.getElementById('selectedCity').value=cityId; > document.getElementById('pincode').value=pincode; > // document.getElementById('selectedState').value=stateId; > > getSelectedStates(countryId,stateId,cityId); > document.getElementById('selectedRegionState').value=regionStateId; > > } else { > } > } > } > > > function getSelectedStates(countryId,stateId,cityId){ > checkInternetExplorer(); > var countryId = document.getElementById('selectedCountry').value; > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/getStates.do?countryId='+countryId, true); > xmlHttp.onreadystatechange = function(){callbackForState('stateList',null,'',stateId,cityId);}; > xmlHttp.send(null); > > } > > function callbackForState(dropdownType, id,indicator,stateId,cityId) > { > if (xmlHttp.readyState == 4) > { > if (xmlHttp.status == 200) > { > > xmlDoc = xmlHttp.responseXML; > > if(dropdownType == 'stateList') { > var x = xmlDoc.getElementsByTagName('state'); > > if(x != null ){ > document.getElementById('errorDiv').innerHTML = ''; > for (var i=0; i < x.length;++i){ > document.getElementById('selectedState').value=stateId; > addOption(document.forms[0].selectedState, > xmlDoc.getElementsByTagName('stateName')[i].childNodes[0].nodeValue, > xmlDoc.getElementsByTagName('stateId')[i].childNodes[0].nodeValue); > > } > if( x.length <1) { > var msg= "No States found for selected country in getSelectedStates"; > > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > if(null!=document.getElementById("errorMessages")) > document.getElementById("errorMessages").removeNode(true); > } > } else { > var msg= "No States found for selected country in getSelectedStates"; > > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > if(null!=document.getElementById("errorMessages")) > document.getElementById("errorMessages").removeNode(true); > } > > } > getSelectedCities(stateId,cityId); > } > > } > > return true; > } > > > > > > function getSelectedCities(stateId,cityId){ > checkInternetExplorer(); > //var cityId = document.getElementById('selectedCity').value; > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/getCities.do?stateId='+stateId, true); > xmlHttp.onreadystatechange = function(){callbackCitiesOnOrg('cityList',null,'',cityId);}; > xmlHttp.send(null); > } > > function callbackCitiesOnOrg(dropdownType, id,indicator,cityId) > { > > if (xmlHttp.readyState == 4) > { > if (xmlHttp.status == 200) > { > xmlDoc = xmlHttp.responseXML; > if(dropdownType == 'cityList') > { > //First clear the dropdown before adding new options > clearDropDown(document.forms[0].selectedCity); > > var x = xmlDoc.getElementsByTagName('city'); > //document.getElementById('selectedCity').value=cityId; > if(x != null ){ > document.getElementById('errorDiv').innerHTML = ''; > > > for (var i=0; i < x.length;++i){ > document.getElementById('selectedCity').value=cityId; > addOption(document.forms[0].selectedCity, > xmlDoc.getElementsByTagName('cityName')[i].childNodes[0].nodeValue, > xmlDoc.getElementsByTagName('cityId')[i].childNodes[0].nodeValue); > } > if( x.length < 1) { > var msg= "No cities found for selected state"; > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > if(null!=document.getElementById("errorMessages")) > document.getElementById("errorMessages").removeNode(true); > } > } else { > var msg= "No cities found for selected state"; > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > if(null!=document.getElementById("errorMessages")) > document.getElementById("errorMessages").removeNode(true); > } > } > } > } > return true; > > > } > > > > >// Commercial BR9: Employee_Creation R4 BY TCS 486512 END > > > > > >function showRelManagersPopUp(obj) >{ > indFrom = "O"; > var entityTypeId = document.getElementById('selectedEntityType').value; > var rel= document.getElementById("relManager").value; > document.forms[0].filterText.value = rel; > var ret = isTextValid(rel); > if(ret == false ) > { > document.getElementById("errorDiv").innerHTML = "<font color='red'><b><ul><li>Entity field contains illegal characters.</li></ul></b></font>"; > } else { > var retVal = specialCharRegExp(document.forms[0].filterText,document.getElementById('errorDiv')) > if(retVal==true){ > showSalesRelManagerListPopUp(entityTypeId,rel); > document.getElementById("errorDiv").innerHTML = ""; > } > } >} >function callMultiSelect(ind) >{ > var disabled = true; > if (null != '<%=request.getAttribute("beatIdUpdatable")%>') { > disabled = '<%=request.getAttribute("beatIdUpdatable")%>'; > } > if (document.entityForm.selectedMultiBeats != null && (disabled == false || disabled == 'false')) > { > getDropDownListEntity('/cPOSWeb/jsp/sales/editEntity.do?method=getCreate&operation=getBeats&ind='+ind+'&selectedRegionState=', document.forms[0].selectedRegionState.value, 'selectedMultiBeats'); > } >} >//BR6 Performance Extraction >function getCellSite(obj) > { > //alert("hello"+obj); > //clearDropDown(document.forms[0].selectedCellSites); > var selectedRegionState=document.forms[0].selectedRegionState.value; > getDropDownListEntity('/cPOSWeb/jsp/sales/editEntity.do?method=getCreate&operation=getCellSite&ind='+obj+'&selectedRegionState=', document.forms[0].selectedRegionState.value, 'selectedCellSites'); > //alert("hello=========>>"); > } >//End > function getParentPerson() > { > > if (null != document.getElementById("parentPersonEntId") ) > { > var disabled = true; > if (null != '<%=request.getAttribute("parentPersonEntityUpdatable")%>') { > disabled = '<%=request.getAttribute("parentPersonEntityUpdatable")%>'; > } > if (disabled == 'false') > { > var a = trim(document.getElementById("orgEntity").value); > var c = trim(document.getElementById("selectedEntityType").value); > var b = ''; > if (a== '') > { > b = '0'; > }else{ > b = document.getElementById("selectedOrgEntity").value; > } > getDropDownList('/cPOSWeb/jsp/sales/addEntity.do?method=populateParentPersonEntIds&entTypeId='+c+'&entOrgId=',b, 'parentPersonEntId'); > } > } >} >function showOrgListPopUp(obj) >{ > indFrom = "P"; > var entityTypeId = document.getElementById('selectedEntityType').value; > var orgId = document.getElementById("orgEntity").value; > showSalesOrgListPopUp(entityTypeId,orgId); >} >function populateRunningBalance() >{ > if (document.forms[0].runningBalance != null) > { > var a = document.forms[0].creditLimit.value; > if (null != a && a != '') > { > document.forms[0].runningBalance.value = a; > }else { > document.forms[0].runningBalance.value = ''; > } > } >} >function enableDisableCircle(){ > > if(document.forms[0].corporate.checked){ > document.forms[0].selectedCircle.disabled=true; > }else{ > document.forms[0].selectedCircle.disabled=false; > } >} > >function checkEntityCode() >{ > checkInternetExplorer(); > var indicator = ''; > var entityId = document.forms[0].entityId.value; > var from = document.getElementById("indicator").value; > var corpChecked ='false'; > if (document.forms[0].corporate != null) > { > corpChecked = document.forms[0].corporate.checked; > } > if ((null != from && from == 'O') || (null != indFrom && indFrom == "O")) > { > var a = document.forms[0].orgCode.value; > > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/editEntity.do?method=getEntityCode&from=org&orgCode='+a+'&entityId='+entityId+'&corp='+corpChecked, true); > indicator = 'O'; > } > if ((null != from && from == 'P') || (null != indFrom && indFrom == "P")) > { > var b = document.forms[0].entityCode.value; > var entTypeId = document.getElementById("selectedEntityType").value; > > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/editEntity.do?method=getEntityCode&from=person&personCode='+b+'&entityId='+entityId+'&corp='+corpChecked+'&entTypeId='+entTypeId, true); > indicator = 'P'; > } > xmlHttp.onreadystatechange = function(){callback('entityCode',null,indicator);}; > xmlHttp.send(null); > >} > >/*function checkName() >{ > > checkInternetExplorer(); > var indicator = '<%= request.getAttribute("ind") %>'; > //var indicator = document.getElementById("indicator").value; > var entityId = document.getElementById("entityId").value; > var entTypeId = document.getElementById("selectedEntityType").value; > var corpChecked ='false'; > if (document.forms[0].corporate != null) > { > corpChecked = document.forms[0].corporate.checked; > } > > if (document.forms[0].orgNameApplicable != null ) > { > if (indicator != '' && indicator=='O') > { > var b = ''; > if(null!=document.forms[0].orgName.value) > { > b = trim(document.forms[0].orgName.value); > } > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/editEntity.do?method=getEntityName&from=orgName&orgName='+b+'&entityId='+entityId+'&corp='+corpChecked+'&entTypeId='+entTypeId, true); > } > xmlHttp.onreadystatechange = function(){callback('entityName',null,indicator);}; > xmlHttp.send(null); > > }else if (document.getElementById("firstNameApplicable") != null || document.getElementById("lastNameApplicable") != null) > { > if (indicator != '' && indicator=='P') > { > var a = ''; > if(null!=document.getElementById("firstNameApplicable")){ > a = trim(document.getElementById("firstName").value); > } > > var b = ''; > if(null!=document.getElementById("lastNameApplicable")){ > b = trim(document.getElementById("lastName").value); > } > var c = a + b ; > > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/editEntity.do?method=getEntityName&from=personName&personName='+c+'&entityId='+entityId+'&corp='+corpChecked+'&entTypeId='+entTypeId, true); > } > xmlHttp.onreadystatechange = function(){callback('entityName',null,indicator);}; > xmlHttp.send(null); > }else { > submitEditEntity(); > } > > > >}*/ > >function getStates(countryId) >{ > checkInternetExplorer(); > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/getStates.do?countryId='+countryId.value, true); > xmlHttp.onreadystatechange = function(){callback('stateList',null,'');}; > xmlHttp.send(null); >} >function getCities(stateId) >{ > checkInternetExplorer(); > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/getCities.do?stateId='+stateId.value, true); > xmlHttp.onreadystatechange = function(){callback('cityList',null,'');}; > xmlHttp.send(null); >} > >function getDealerDetails() >{ > checkInternetExplorer(); > var a = document.getElementById("selectedEvoDealer").value; > if (a == 0 || a == '0') > { > clearEVODetails(); > } > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/editEntity.do?method=getDealerDetails&dealerId='+ a ,true); > xmlHttp.onreadystatechange = function(){callback('dealerDetails',null,'');}; > xmlHttp.send(null); >} >function checkTypedOrganisation() >{ > var entityTypeId = trim(document.getElementById("selectedEntityType").value); > > var org = trim(document.entityForm.orgEntity.value); > checkInternetExplorer(); > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/editEntity.do?method=checkTypedOrganisation&entityTypeId='+entityTypeId+'&org='+org, true); > xmlHttp.onreadystatechange = function(){callback('orgList',null,'');}; > xmlHttp.send(null); >} >function checkTypedRelManager() >{ > var entityTypeId = trim(document.getElementById("selectedEntityType").value); > var rel = trim(document.getElementById("relManager").value); > document.getElementById("relManagerCheck").value = "true"; > document.getElementById('errorDiv').innerHTML = ''; > if (rel != "") > { > checkInternetExplorer(); > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/editEntity.do?method=checkTypedRelManager&entityTypeId='+entityTypeId+'&rel='+rel, true); > xmlHttp.onreadystatechange = function(){callback('relList',null,'');}; > xmlHttp.send(null); > } >} >function checkBSCSCode() >{ > if (document.forms[0].bscsReferenceCode != null) > { > checkInternetExplorer(); > var b = document.getElementById("bscsReferenceCode").value; > var corpChecked ='false'; > if (document.forms[0].corporate != null) > { > corpChecked = document.forms[0].corporate.checked; > } > xmlHttp.open("GET",'/cPOSWeb/jsp/sales/editEntity.do?method=getBSCSCode&from=bscs&bscsCode='+b+'&corp='+corpChecked, true); > indicator = 'O'; > xmlHttp.onreadystatechange = function(){callback('bscsCode',null,indicator);}; > xmlHttp.send(null); > } >} >var xmlDoc; >function checkInternetExplorer() >{ > try > { // Internet Explorer 6.0 > xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); > }catch(e) > { > alert("Your browser does not support AJAX!"); > return false; > } > return true; >} >function callback(dropdownType, id,indicator) >{ > if (xmlHttp.readyState == 4) > { > if (xmlHttp.status == 200) > { > xmlDoc = xmlHttp.responseXML; > if(dropdownType == 'stateList') { > //First clear the dropdown before adding new options > clearDropDown(document.forms[0].selectedState); > > var x = xmlDoc.getElementsByTagName('state'); > if(x != null ){ > document.getElementById('errorDiv').innerHTML = ''; > for (var i=0; i < x.length;++i){ > addOption(document.forms[0].selectedState, > xmlDoc.getElementsByTagName('stateName')[i].childNodes[0].nodeValue, > xmlDoc.getElementsByTagName('stateId')[i].childNodes[0].nodeValue); > getCities(0); > } > if( x.length < 1) { > var msg= "No States found for selected country"; > > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > if(null!=document.getElementById("errorMessages")) > document.getElementById("errorMessages").removeNode(true); > } > } else { > var msg= "No States found for selected country"; > > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > if(null!=document.getElementById("errorMessages")) > document.getElementById("errorMessages").removeNode(true); > } > } > else if(dropdownType == 'cityList') > { > //First clear the dropdown before adding new options > clearDropDown(document.forms[0].selectedCity); > > var x = xmlDoc.getElementsByTagName('city'); > if(x != null ){ > document.getElementById('errorDiv').innerHTML = ''; > for (var i=0; i < x.length;++i){ > addOption(document.forms[0].selectedCity, > xmlDoc.getElementsByTagName('cityName')[i].childNodes[0].nodeValue, > xmlDoc.getElementsByTagName('cityId')[i].childNodes[0].nodeValue); > } > if( x.length < 1) { > var msg= "No cities found for selected state"; > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > if(null!=document.getElementById("errorMessages")) > document.getElementById("errorMessages").removeNode(true); > } > } else { > var msg= "No cities found for selected state"; > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > if(null!=document.getElementById("errorMessages")) > document.getElementById("errorMessages").removeNode(true); > } > } > else if(dropdownType == 'entityTypesList') > { > //First clear the dropdown before adding new options > clearDropDown(document.forms[0].selectedEntityType); > > var x = xmlDoc.getElementsByTagName('entityType'); > if(x != null ){ > document.getElementById('errorDiv').innerHTML = ''; > for (var i=0; i < x.length;++i){ > addOption(document.forms[0].selectedEntityType, > xmlDoc.getElementsByTagName('entityTypeName')[i].childNodes[0].nodeValue, > xmlDoc.getElementsByTagName('entityTypeId')[i].childNodes[0].nodeValue); > } > if( x.length < 1) { > var msg= "No Entity Types Found"; > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > if(null!=document.getElementById("errorMessages")) > document.getElementById("errorMessages").removeNode(true); > } > } else { > var msg= "No Entity Types Found "; > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > if(null!=document.getElementById("errorMessages")) > document.getElementById("errorMessages").removeNode(true); > } > } > else if(dropdownType == 'entityCode') > { > var x = xmlDoc.documentElement; > var code='0'; > if (x != null){ > code = x.getElementsByTagName('entityCode')[0].childNodes[0].nodeValue; > } > if(code == '1') > { > var msg= "Entity Code Already Exists"; > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > if (indicator != '' && indicator == 'O') > { > document.forms[0].orgCode.focus(); > } > if (indicator != '' && indicator == 'P') > { > document.forms[0].entityCode.focus(); > } > } > if (code == '0') > { > document.getElementById('errorDiv').innerHTML = ''; > submitEditEntity(); > } > } > else if(dropdownType == 'entityName') > { > var x = xmlDoc.documentElement; > var code = x.getElementsByTagName('entityCode')[0].childNodes[0].nodeValue; > > if(code == '1') > { > > if (indicator != '' && indicator == 'O') > { > document.forms[0].orgName.focus(); > } > if (indicator != '' && indicator == 'P') > { > if (document.forms[0].firstName.value != '') > { > document.forms[0].firstName.focus(); > } > else { > document.forms[0].lastName.focus(); > } > } > var msg= "Entity Name Already Exists"; > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > } > if (code == '0') > { > document.getElementById('errorDiv').innerHTML = ''; > submitEditEntity(); > } > } > else if(dropdownType == 'orgList') > { > var x = xmlDoc.documentElement; > var code = x.getElementsByTagName('entityCode')[0].childNodes[0].nodeValue; > if(code == '1') > { > document.forms[0].orgEntity.focus(); > var msg= "please enter valid organisation."; > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > } > if (code == '0') > { > document.getElementById('errorDiv').innerHTML = ''; > } > } > else if(dropdownType == 'relList') > { > var x = xmlDoc.documentElement; > var code = '1'; > if (null != x.getElementsByTagName('entityCode')[0]) > { > code = x.getElementsByTagName('entityCode')[0].childNodes[0].nodeValue; > if(code == '1') > { > document.forms[0].relManager.focus(); > var msg= "Please enter valid Relationship manager name."; > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > } > if (code == '0') > { > document.getElementById('errorDiv').innerHTML = ''; > } > } > } > else if(dropdownType='dealerDetails'){ > var x = xmlDoc.documentElement; > var orgName = 'false'; > var address = 'false'; > var mobileNo = 'false'; > var evoState = 'false'; > var evoCity = 'false'; > var evoPincode = 'false'; > var country = 'false'; > var officeNo1 = 'false'; > var evoWarehouse = 'false'; > var emailId = 'false'; > > if (null != x.getElementsByTagName('orgName')[0]){ > orgName = x.getElementsByTagName('orgName')[0].childNodes[0].nodeValue; > } > if (null != x.getElementsByTagName('address')[0]){ > address = x.getElementsByTagName('address')[0].childNodes[0].nodeValue; > } > if (null != x.getElementsByTagName('mobileNo')[0]){ > mobileNo = x.getElementsByTagName('mobileNo')[0].childNodes[0].nodeValue; > } > if (null != x.getElementsByTagName('evoState')[0]){ > evoState = x.getElementsByTagName('evoState')[0].childNodes[0].nodeValue; > } > if (null != x.getElementsByTagName('evoCity')[0]){ > evoCity = x.getElementsByTagName('evoCity')[0].childNodes[0].nodeValue; > } > if (null != x.getElementsByTagName('evoPincode')[0]){ > evoPincode = x.getElementsByTagName('evoPincode')[0].childNodes[0].nodeValue; > } > if (null != x.getElementsByTagName('country')[0]){ > country = x.getElementsByTagName('country')[0].childNodes[0].nodeValue; > } > if (null != x.getElementsByTagName('officeNo1')[0]){ > officeNo1 = x.getElementsByTagName('officeNo1')[0].childNodes[0].nodeValue; > } > if (null != x.getElementsByTagName('evoWarehouse')[0]){ > evoWarehouse = x.getElementsByTagName('evoWarehouse')[0].childNodes[0].nodeValue; > } > if (null != x.getElementsByTagName('emailId')[0]){ > emailId = x.getElementsByTagName('emailId')[0].childNodes[0].nodeValue; > } > > if(null!=orgName && orgName != 'false'){ > if (null != document.getElementById("orgName")){ > document.getElementById("orgName").value=orgName; > } > } > if(null!=address && address != 'false' ){ > if (null != document.getElementById("address")){ > document.getElementById("address").value=address; > } > } > if(null!=evoCity && evoCity != 'false'){ > if (null != document.getElementById("selectedEvoCity")){ > document.getElementById("selectedEvoCity").value=evoCity; > } > } > if(null!=evoState && evoState != 'false'){ > if(null !=document.getElementById("selectedEvoState")){ > document.getElementById("selectedEvoState").value=evoState; > } > } > if(null!=mobileNo && mobileNo != 'false'){ > if (null != document.getElementById("mobileNo")){ > document.getElementById("mobileNo").value=mobileNo; > } > } > if(null!=country && country != 'false'){ > if (null != document.getElementById("selectedCountry")){ > document.getElementById("selectedCountry").value=country; > getStates(document.getElementById("selectedCountry")) ; > } > } > if(null!=evoPincode && evoPincode != 'false'){ > if(null != document.getElementById("pincode")){ > document.getElementById("pincode").value=evoPincode; > } > } > if(null!=officeNo1 && officeNo1 != 'false'){ > if(null != document.getElementById("officeNo1")){ > document.getElementById("officeNo1").value=officeNo1; > } > } > if(null!=evoWarehouse && evoWarehouse != 'false'){ > if (null != document.getElementById("evoWarehouse")){ > document.getElementById("evoWarehouse").value=evoWarehouse; > } > } > if(null!=emailId && emailId !='false' ){ > if (null != document.getElementById("emailId")){ > document.getElementById("emailId").value=emailId; > } > } > }else if(dropdownType == 'bscsCode') > { > var x = xmlDoc.documentElement; > var code = x.getElementsByTagName('bscsCode')[0].childNodes[0].nodeValue; > if(code == '1') > { > var msg= "BSCS Reference Code Already Exists"; > document.getElementById('errorDiv').innerHTML = "<font color='red'><b><ul>"+msg+"</ul></b></font>"; > document.forms[0].bscsReferenceCode.focus(); > > } > if (code == '0') > { > document.getElementById('errorDiv').innerHTML = ''; > } > } > } > } > return true; >} > > </script> > </head> > <body> > <html:form action="editEntity"> > <input type="hidden" id="filterText"/> > <html:hidden property="entityId" name="entityForm"/> > <html:hidden property="indicator" name="entityForm"/> > <jsp:include flush="true" page="/jsp/common/header.jsp"/> > <jsp:include flush="true" page="/jsp/common/mainMenu.jsp"/> > <table> > <tr><td colspan="2"> </td></tr> > <tr> > <td width="205"> </td> > <td><div id="errorMessages"><html:errors/></div><div id="errorDiv"></div></td> > </tr> > </table> > <table width="100%" border="0" cellspacing="0" cellpadding="0"> > <tr valign="top"> > <td width="10"> </td> > <td width="180"><br> > <span class="Heading">Manage entity</span></td> > <td width="15"> </td> > <td> > <table width="100%" border="0" cellspacing="0" cellpadding="0"> > <tr> > <td height="30" align="right" valign="bottom"><span class="smallFont"><strong>Note:</strong> Fields > >marked as </span><span class="mandetory">* </span><span class="smallFont">are mandatory </span><sapcer height="1"></td> > </tr> > </table> > <table width="100%" border="0" cellpadding="3" cellspacing="0" class="Gridview"> > <tr class="GridHeader"> > <th colspan="6">Modify Entity </th> > </tr> > > <logic:equal name="entityForm" property="checkCorporate" value="true"> > <tr class="GridDataRow"> > <td width="24%">Corporate</td> > <td colspan="2" nowrap="nowrap"> > <html:checkbox name="entityForm" property="corporate" disabled="true"/> > <html:hidden name="entityForm" property="corporate"/> > </td> > <td width="23%"> </td> > <td width="28%"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <tr class="GridDataRow"> > <td width="136">Entity type <span class="mandetory" > *</span> > </td> > <td> > <html:select property="selectedEntityType" styleClass="bdr" name="entityForm" disabled="true" > > <html:optionsCollection property="entityTypes" value="value" label="label" /> > </html:select> > <html:hidden property="selectedEntityType" name="entityForm"/> > > </td> > <td colspan="4"><table height="25" border="0" cellpadding="2" cellspacing="3"> > <tr> > <td nowrap="nowrap" > </td> > </tr> > </table></td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > > <%boolean grey = true; %> > <logic:equal name="entityForm" property="indicator" value="O" > > <tr> > <td height="1" colspan="7" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap">Entity Code > </td> > <td colspan="2" nowrap="nowrap"> > <html:text property="orgCode" name="entityForm" onkeypress="onlyVarcharAndNumbers(this);" disabled="true" styleClass="bdr"></html:text> > <html:hidden name="entityForm" property="orgCode"/> > </td> > > <logic:equal name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <td width="20%" nowrap>EVO code > <logic:equal name="entityForm" property="evoReferenceCodeMandatory" value="true"><span id="evoReferenceCodeId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:select property="selectedEvoDealer" styleClass="bdr" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("evoReferenceCodeUpdatable").toString())%>' onchange="getDealerDetails();" > > <html:optionsCollection property="evoDealers" value="value" label="label" /> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("evoReferenceCodeUpdatable").toString())){%> > <html:hidden property="selectedEvoDealer" name="entityForm"/> > <%} %> > <!-- <html:hidden property="selectedEvoDealer" name="entityForm"/> --> > </td> > > </logic:equal> > <logic:notEqual name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <td width="20%"> </td> > <td colspan="2"> </td> > </logic:notEqual> > </tr> > <tr> > <td height="1" colspan="7" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <!-- Added for DM3890--> > <logic:equal name="entityForm" property="etopReferenceCodeApplicable" value="true"> > <bean:define id="entForm" name="entityForm" type="com.vodafone.cpos.formbeans.sales.EntityForm"/> > <% if(entForm.getSelectedEntityType()==8 || entForm.getSelectedEntityType()==9 ){%> > <tr> > <td> > > <html:radio name="entityForm" property="radioOption" value="prepaid" onclick="" /><strong>Prepaid</strong> > <html:radio name="entityForm" property="radioOption" value="other" onclick="" /> <strong>Other</strong> > </td> > </tr> > <% }%> > </logic:equal> > > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="orgNameApplicable" value="true"> > > <logic:equal name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <td width="20%" nowrap>Entity name</td> > <td colspan="2"> > <html:text name="entityForm" property="orgName" styleClass="bdr" readonly="true"></html:text> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <td width="20%" nowrap>Entity name > <logic:equal name="entityForm" property="orgNameMandatory" value="true"><span id="orgNameId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="orgName" maxlength="50" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("orgNameUpdatable").toString())%>' styleClass="bdr"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("orgNameUpdatable").toString())){%> > > <html:hidden name="entityForm" property="orgName"/> > <%} %> > <!--<html:text property="evoDealerName" name="entityForm" styleClass="bdr" readonly="true"></html:text>--> > </td> > </logic:notEqual> > </logic:equal> > <%int entname =0; %> > <logic:notEqual name="entityForm" property="orgNameApplicable" value="true"> > <% entname++;%> > </logic:notEqual> > > <logic:equal name="entityForm" property="orafinReferenceCodeApplicable" value="true"> > <td nowrap>ORAFIN code > <logic:equal name="entityForm" property="orafinReferenceCodeMandatory" value="true"><span id="orafinReferenceCodeId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap> > <html:select property="selectedOrafinDealer" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("orafinReferenceCodeUpdatable").toString())%>' name="entityForm"> > <html:optionsCollection property="orafinDealers" value="value" label="label" /> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("orafinReferenceCodeUpdatable").toString())){%> > <html:hidden property="selectedOrafinDealer" name="entityForm"/> > <%} %> > </td> > </logic:equal> > > <logic:notEqual name="entityForm" property="orafinReferenceCodeApplicable" value="true"> > <%entname++; %> > </logic:notEqual> > <%if (entname == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (entname ==0 || entname ==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%} %> > > <logic:equal name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap> EVO City</td> > <td colspan="2" nowrap="nowrap"> > <html:text property="selectedEvoCity" name="entityForm" styleClass="bdr" readonly="true"></html:text> > > </td> > <td width="20%" nowrap>EVO State</td> > <td colspan="2" nowrap="nowrap"> > <html:text property="selectedEvoState" name="entityForm" styleClass="bdr" readonly="true"></html:text> > > </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="billingAddressApplicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap" class="SubHeadingBlack">Address > <logic:equal name="entityForm" property="billingAddressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> </td> > <td width="20%" nowrap"> </td> > <td colspan="2" nowrap="nowrap"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > > <tr class="GridDataRow"> > <td width="20%" valign="top" nowrap="nowrap"> Address > <logic:equal name="entityForm" property="billingAddressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <logic:equal name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <html:textarea property="address" name="entityForm" rows="5" cols="35" styleClass="bdr" readonly="true"/> > </logic:equal> > <logic:notEqual name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <html:textarea property="address" name="entityForm" rows="5" cols="35" disabled='<%=Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())%>' styleClass="bdr" /> > </logic:notEqual> > > </td> > <td valign="top" width="20%" nowrap="nowrap"> </td> > <td valign="top" colspan="2" nowrap="nowrap"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap">Country > <logic:equal name="entityForm" property="billingAddressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <logic:equal name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <!--<html:text property="selectedEvoCountry" name="entityForm" styleClass="bdr" readonly="true"></html:text>--> > <html:select property="selectedCountry" styleClass="bdr" name="entityForm" disabled="true" onchange="getStates(this);"> > <html:optionsCollection property="countries" value="countryId" label="countryName"/> > </html:select> > <html:hidden property="selectedCountry" name="entityForm"/> > </logic:equal> > > <logic:notEqual name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <html:select property="selectedCountry" styleClass="bdr" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())%>' onchange="getStates(this);"> > <html:optionsCollection property="countries" value="countryId" label="countryName"/> > </html:select> > </logic:notEqual> > </td> > <td width="20%" nowrap="nowrap"> State > <logic:equal name="entityForm" property="billingAddressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:select property="selectedState" styleClass="bdr" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())%>' onchange="getCities(this);"> > <html:optionsCollection property="states" value="stateId" label="stateName"/> > </html:select> > </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap"> City > <logic:equal name="entityForm" property="billingAddressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:select property="selectedCity" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())%>' name="entityForm"> > <html:optionsCollection property="cities" value="cityId" label="cityName"/> > </html:select> > </td> > <td width="20%" nowrap="nowrap">Pincode > <logic:equal name="entityForm" property="billingAddressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap="nowrap" colspan="2"> > <logic:equal name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <html:text name="entityForm" property="pincode" styleClass="bdr" maxlength="6" readonly="true" onkeypress="checkNum();" onblur="checkInputLength(this.value,6)"></html:text> > </logic:equal> > <logic:notEqual name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <html:text name="entityForm" property="pincode" styleClass="bdr" maxlength="6" disabled='<%=Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())%>' onkeypress="checkNum();" onblur="checkInputLength(this.value,6)"></html:text> > </logic:notEqual> > <%if(Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())){%> > <html:hidden property="selectedCity" name="entityForm"/> > <html:hidden property="selectedState" name="entityForm"/> > <html:hidden property="selectedCountry" name="entityForm"/> > <html:hidden property="address" name="entityForm"/> > <html:hidden property="pincode" name="entityForm"/> > <%} %> > </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:notEqual name="entityForm" property="mobileNoApplicable" value="true"> > <logic:notEqual name="entityForm" property="landlineNoApplicable" value="true"> > <%grey = false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="mobileNoApplicable" value="true"> > <logic:equal name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <td width="20%">Mobile No</td> > <td colspan="2"> > <html:text name="entityForm" property="mobileNo" maxlength="10" styleClass="bdr" readonly="true"></html:text> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <td width="20%">Mobile No > <logic:equal name="entityForm" property="mobileNoMandatory" value="true"><span id="mobileNoId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="mobileNo" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("mobileNoUpdatable").toString())%>' maxlength="10" onkeypress="checkNum();"/> > <% if(Boolean.parseBoolean(request.getAttribute("mobileNoUpdatable").toString())){%> > <html:hidden name="entityForm" property="mobileNo"/> > <%} %> > </td> > </logic:notEqual> > </logic:equal> > <%int mob = 0; %> > <logic:notEqual name="entityForm" property="mobileNoApplicable" value="true"> > <% mob++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="landlineNoApplicable" value="true"> > <logic:equal name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <td width="20%">Landline No</td> > <td colspan="2"> > <html:text name="entityForm" property="officeNo1" styleClass="bdr" readonly="true"></html:text> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <td width="20%">Landline No > <logic:equal name="entityForm" property="landlineNoMandatory" value="true"><span id="landlineNoId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text property="officeNo1" name="entityForm" maxlength="15" disabled='<%=Boolean.parseBoolean(request.getAttribute("landlineNoUpdatable").toString())%>' styleClass="bdr" onkeypress="checkNum();"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("landlineNoUpdatable").toString())){%> > <html:hidden name="entityForm" property="officeNo1"/> > <%} %> > </td> > </logic:notEqual> > </logic:equal> > <logic:notEqual name="entityForm" property="landlineNoApplicable" value="true"> > <% mob++; %> > </logic:notEqual> > <%if (mob == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (mob == 0 || mob == 1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="officeNo2Applicable" value="true"> > <logic:notEqual name="entityForm" property="officeNo3Applicable" value="true"> > <%grey = false;%> > </logic:notEqual> > </logic:notEqual> > <%if(grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="officeNo2Applicable" value="true"> > <td width="20%">Office No 2 > <logic:equal name="entityForm" property="officeNo2Mandatory" value="true"><span id="officeNo2Id" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="officeNo2" maxlength="15" disabled='<%=Boolean.parseBoolean(request.getAttribute("officeNo2Updatable").toString())%>' styleClass="bdr" onkeypress="checkNum();"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("officeNo2Updatable").toString())){%> > <html:hidden name="entityForm" property="officeNo2"/> > <%} %> > </td> > </logic:equal> > <% int off = 0; %> > <logic:notEqual name="entityForm" property="officeNo2Applicable" value="true"> > <% off++; %> > </logic:notEqual> > <logic:equal name="entityForm" property="officeNo3Applicable" value="true"> > <td width="20%">Office No 3 > <logic:equal name="entityForm" property="officeNo3Mandatory" value="true"><span id="officeNo3Id" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="officeNo3" maxlength="15" disabled='<%=Boolean.parseBoolean(request.getAttribute("officeNo3Updatable").toString())%>' styleClass="bdr" onkeypress="checkNum();"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("officeNo3Updatable").toString())){%> > <html:hidden name="entityForm" property="officeNo3" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="officeNo3Applicable" value="true"> > <% off++; %> > </logic:notEqual> > <%if (off == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (off ==0 || off == 1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="residenceNoApplicable" value="true"> > <logic:notEqual name="entityForm" property="emailIdApplicable" value="true"> > <%grey = false; %> > </logic:notEqual> > </logic:notEqual> > <%if(grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="residenceNoApplicable" value="true"> > <td width="20%">Residence number > <logic:equal name="entityForm" property="residenceNoMandatory" value="true"><span id="residenceNoId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="residenceNo" maxlength="15" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("residenceNoUpdatable").toString())%>' onkeypress="checkNum();"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("residenceNoUpdatable").toString())){%> > <html:hidden name="entityForm" property="residenceNo" /> > <%} %> > </td> > </logic:equal> > <% int resNo = 0; %> > <logic:notEqual name="entityForm" property="residenceNoApplicable" value="true"> > <% resNo++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="emailIdApplicable" value="true"> > <logic:equal name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <td width="20%">Email</td> > <td colspan="2"> > <html:text name="entityForm" property="emailId" styleClass="bdr" readonly="true"></html:text> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="evoReferenceCodeApplicable" value="true"> > <td width="20%">Email > <logic:equal name="entityForm" property="emailIdMandatory" value="true"><span id="email_Id" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="emailId" disabled='<%=Boolean.parseBoolean(request.getAttribute("emailIdUpdatable").toString())%>' styleClass="bdr" maxlength="50"/> > <% if(Boolean.parseBoolean(request.getAttribute("emailIdUpdatable").toString())){%> > <html:hidden name="entityForm" property="emailId" /> > <%} %> > </td> > </logic:notEqual> > </logic:equal> > > <logic:notEqual name="entityForm" property="emailIdApplicable" value="true"> > <% resNo++; %> > </logic:notEqual> > <%if (resNo == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (resNo ==0 || resNo == 1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="proprietorApplicable" value="true"> > <logic:notEqual name="entityForm" property="contactPersonNameApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if(grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="proprietorApplicable" value="true"> > <td width="20%" nowrap="nowrap">Proprietor > <logic:equal name="entityForm" property="proprietorMandatory" value="true"><span id="proprietorId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text name="entityForm" property="proprietor" maxlength="30" disabled='<%=Boolean.parseBoolean(request.getAttribute("proprietorUpdatable").toString())%>' onkeypress="onlyVarcharAndNumbers(this);" styleClass="bdr"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("proprietorUpdatable").toString())){%> > <html:hidden name="entityForm" property="proprietor" /> > <%} %> > </td> > </logic:equal> > <% int pro =0; %> > <logic:notEqual name="entityForm" property="proprietorApplicable" value="true"> > <% pro++; %> > </logic:notEqual> > <logic:equal name="entityForm" property="contactPersonNameApplicable" value="true"> > <td width="20%" nowrap="nowrap">Contact person name > <logic:equal name="entityForm" property="contactPersonNameMandatory" value="true"><span id="contactPersonNameId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text name="entityForm" property="contactPersonName" maxlength="20" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("contactPersonNameUpdatable").toString())%>' styleClass="bdr"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("contactPersonNameUpdatable").toString())){%> > <html:hidden name="entityForm" property="contactPersonName" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="contactPersonNameApplicable" value="true"> > <%pro++; %> > </logic:notEqual> > <%if (pro == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (pro ==0 || pro==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="stateRegionApplicable" value="true"> > <logic:notEqual name="entityForm" property="zoneApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="stateRegionApplicable" value="true"> > <td width="20%" nowrap="nowrap">State/Region > <logic:equal name="entityForm" property="stateRegionMandatory" value="true"><span id="stateRegionId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:select property="selectedRegionState" disabled='<%=Boolean.parseBoolean(request.getAttribute("stateRegionIdUpdatable").toString())%>' styleClass="bdr" onchange="getCellSite('org');" onblur="callMultiSelect('org');" name="entityForm"> > <html:option value="0">---Select---</html:option> > <html:optionsCollection property="regionStateList" value="regionStateCode" label="regionStateName"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("stateRegionIdUpdatable").toString())){%> > <html:hidden name="entityForm" property="selectedRegionState" /> > <%} %> > </td> > </logic:equal> > <% int str = 0; %> > <logic:notEqual name="entityForm" property="stateRegionApplicable" value="true"> > <% str++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="zoneApplicable" value="true"> > <td width="20%">Zone > <logic:equal name="entityForm" property="zoneMandatory" value="true"><span id="zoneTypeId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:select property="selectedZone" styleClass="bdr" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("zoneUpdatable").toString())%>'> > <html:option value="0">---Select---</html:option> > <html:optionsCollection property="zoneList" value="zoneId" label="zoneDescription"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("zoneUpdatable").toString())){%> > <html:hidden name="entityForm" property="selectedZone" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="zoneApplicable" value="true"> > <% str++; %> > </logic:notEqual> > <%if (str == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > > <%if (str ==0 || str==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="evoWarehouseApplicable" value="true"> > <logic:notEqual name="entityForm" property="locationApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="evoWarehouseApplicable" value="true"> > <td width="20%">EVO Warehouse > <logic:equal name="entityForm" property="evoWarehouseMandatory" value="true"><span id="evoWarehouseId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="evoWarehouse" styleClass="bdr" readonly="true"/> > </td> > </logic:equal> > <% int ware = 0; %> > <logic:notEqual name="entityForm" property="evoWarehouseApplicable" value="true"> > <% ware++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="locationApplicable" value="true"> > <td width="20%" nowrap="nowrap">Associated warehouse > <logic:equal name="entityForm" property="locationMandatory" value="true"><span id="locationId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <logic:equal value="External" property="classificationDesc" name="entityForm"> > <html:select property="selectedWarehouse" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("locationUpdatable").toString())%>' name="entityForm"> > <html:optionsCollection property="warehouses" value="locationId" label="locationName"/> > </html:select> > </logic:equal> > <logic:notEqual value="External" property="classificationDesc" name="entityForm"> > <html:select property="selectedWarehouse" styleClass="bdr" name="entityForm" multiple="true" disabled='<%=Boolean.parseBoolean(request.getAttribute("locationUpdatable").toString())%>' size="5" > > <html:optionsCollection property="warehouses" value="locationId" label="locationName"/> > </html:select> > </logic:notEqual> > <% if(Boolean.parseBoolean(request.getAttribute("locationUpdatable").toString())){%> > <html:hidden name="entityForm" property="disabledLocProp" value="true" /> > <html:hidden name="entityForm" property="selectedWarehouse" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="locationApplicable" value="true"> > <% ware++; %> > </logic:notEqual> > <%if (ware == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (ware ==0 || ware==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey =true;} %> > > > <logic:notEqual name="entityForm" property="beatApplicable" value="true"> > <logic:notEqual name="entityForm" property="faxNoApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="beatApplicable" value="true"> > <td valign="top" width="20%">Beat > <logic:equal name="entityForm" property="beatMandatory" value="true"><span id="beatId" class="mandetory" > *</span></logic:equal> > </td> > > <!-- BR3 Multiple beats for Retailer and DSE BY TCS 397964 STARTS --> > > <logic:notEqual name="entityForm" property="selectedEntityType" value="10"> > <td colspan="2" nowrap="nowrap"> > <html:select property="selectedMultiBeats" disabled='<%=Boolean.parseBoolean(request.getAttribute("beatIdUpdatable").toString())%>' styleClass="bdr" name="entityForm" > > <html:option value="0">---Select---</html:option> > <html:optionsCollection property="beats" value="beatCode" label="beatName"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("beatIdUpdatable").toString())){%> > <html:hidden name="entityForm" property="disabledBeatProp" value="true" /> > <html:hidden name="entityForm" property="selectedMultiBeats" /> > <%} %> > </td> > </logic:notEqual> > <logic:equal name="entityForm" property="selectedEntityType" value="10"> > <td colspan="2"> > <html:select property="selectedMultiBeats" styleClass="bdr" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("beatIdUpdatable").toString())%>' multiple="true" size="5" onchange="checkForRetBeats();"> > <html:optionsCollection property="beats" value="beatCode" label="beatName"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("beatIdUpdatable").toString())){%> > <html:hidden name="entityForm" property="disabledBeatProp" value="true" /> > <html:hidden name="entityForm" property="selectedMultiBeats" /> > <%} %> > </td> > </logic:equal> > > <!-- BR3 Multiple beats for Retailer and DSE BY TCS 397964 ENDS --> > > </logic:equal> > <% int bt =0; %> > <logic:notEqual name="entityForm" property="beatApplicable" value="true"> > <% bt++; %> > </logic:notEqual> > <logic:equal name="entityForm" property="faxNoApplicable" value="true"> > <td width="20%" nowrap="nowrap">Fax No > <logic:equal name="entityForm" property="faxNoMandatory" value="true"><span id="faxNoId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text name="entityForm" styleClass="bdr" maxlength="15" disabled='<%=Boolean.parseBoolean(request.getAttribute("faxNumberUpdatable").toString())%>' property="faxNo" onkeypress="checkNum();"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("faxNumberUpdatable").toString())){%> > <html:hidden name="entityForm" property="faxNo" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="faxNoApplicable" value="true"> > <%bt++; %> > </logic:notEqual> > <%if (bt == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (bt ==0 || bt==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="bscsReferenceCodeApplicable" value="true"> > <logic:notEqual name="entityForm" property="etopReferenceCodeApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="bscsReferenceCodeApplicable" value="true"> > <td width="20%" nowrap="nowrap">BSCS refrence code > <logic:equal name="entityForm" property="bscsReferenceCodeMandatory" value="true"><span id="bscsReferenceCodeId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="bscsReferenceCode" onblur="checkBSCSCode();" disabled='<%=Boolean.parseBoolean(request.getAttribute("bscsReferenceCodeUpdatable").toString())%>' styleClass="bdr" maxlength="15" onkeypress="onlyVarcharAndNumbers(this);"/> > <% if(Boolean.parseBoolean(request.getAttribute("bscsReferenceCodeUpdatable").toString())){%> > <html:hidden name="entityForm" property="bscsReferenceCode" /> > <%} %> > </td> > </td> > </logic:equal> > <%int bscs = 0; %> > <logic:notEqual name="entityForm" property="bscsReferenceCodeApplicable" value="true"> > <% bscs++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="etopReferenceCodeApplicable" value="true"> > <td width="20%" nowrap="nowrap">eTop refrence code > <logic:equal name="entityForm" property="etopReferenceCodeMandatory" value="true"><span id="etopReferenceCodeId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="etopReferenceCode" disabled='<%=Boolean.parseBoolean(request.getAttribute("etopReferenceCodeUpdatable").toString())%>' styleClass="bdr" maxlength="10" onkeypress="onlyVarcharAndNumbers(this);"/> > <% if(Boolean.parseBoolean(request.getAttribute("etopReferenceCodeUpdatable").toString())){%> > <html:hidden name="entityForm" property="etopReferenceCode" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="etopReferenceCodeApplicable" value="true"> > <%bscs++; %> > </logic:notEqual> > <%if (bscs == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (bscs ==0 || bscs==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="classOfRetailerApplicable" value="true"> > <logic:notEqual name="entityForm" property="typeOfRetailerApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="classOfRetailerApplicable" value="true"> > <td width="20%">Class of retailer > <logic:equal name="entityForm" property="classOfRetailerMandatory" value="true"><span id="classOfRetailerId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" styleClass="bdr" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("classOfRetailerUpdatable").toString())%>' property="classOfRetailer"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("classOfRetailerUpdatable").toString())){%> > <html:hidden name="entityForm" property="classOfRetailer" /> > <%} %> > > </td> > </logic:equal> > <%int ret = 0; %> > <logic:notEqual name="entityForm" property="classOfRetailerApplicable" value="true"> > <% ret++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="typeOfRetailerApplicable" value="true"> > <td width="20%" nowrap="nowrap">Type of retailer > <logic:equal name="entityForm" property="typeOfRetailerMandatory" value="true"><span id="typeOfRetailerId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:select property="selectedRetailerType" styleClass="bdr" name="entityForm"> > <html:optionsCollection property="typeOfRetailersList" value="value" label="label"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("typeOfRetailerUpdatable").toString())){%> > <html:hidden name="entityForm" property="selectedRetailerType" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="typeOfRetailerApplicable" value="true"> > <% ret++; %> > </logic:notEqual> > <%if (ret == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (ret ==0 || ret==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="creditLimitApplicable" value="true"> > <logic:notEqual name="entityForm" property="runningBalanceApplicable" value="true"> > <%grey= false;%> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="creditLimitApplicable" value="true"> > <td width="20%" nowrap="nowrap">Credit limit > <logic:equal name="entityForm" property="creditLimitMandatory" value="true"><span id="creditLimitId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="creditLimit" disabled='<%=Boolean.parseBoolean(request.getAttribute("creditLimitUpdatable").toString())%>' > onblur="onlyFloatNumbers(this);populateRunningBalance();" onkeyup="onlyFloatNumbers(this);" maxlength="20" styleClass="bdr" /> > <% if(Boolean.parseBoolean(request.getAttribute("creditLimitUpdatable").toString())){%> > <html:hidden name="entityForm" property="creditLimit" /> > <%} %> > </td> > </logic:equal> > <%int cred = 0; %> > <logic:notEqual name="entityForm" property="creditLimitApplicable" value="true"> > <% cred++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="runningBalanceApplicable" value="true"> > <td width="20%" nowrap="nowrap">Running balance > <logic:equal name="entityForm" property="runningBalanceMandatory" value="true"><span id="runningBalanceId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text property="runningBalance" name="entityForm" styleClass="bdr" readonly="true" maxlength="20"></html:text> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="runningBalanceApplicable" value="true"> > <% cred++; %> > </logic:notEqual> > <%if (cred == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (cred ==0 || cred==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="cellNoQuotaApplicable" value="true"> > <logic:notEqual name="entityForm" property="includeActivatedNoApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="cellNoQuotaApplicable" value="true"> > <td width="20%">Cell number quota > <logic:equal name="entityForm" property="cellNoQuotaMandatory" value="true"><span id="cellNoQuotaId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="cellNoQuota" maxlength="22" disabled='<%=Boolean.parseBoolean(request.getAttribute("cellNoQuotaUpdatable").toString())%>' onkeypress="onlyVarcharAndNumbers(this);" styleClass="bdr"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("cellNoQuotaUpdatable").toString())){%> > <html:hidden name="entityForm" property="cellNoQuota" /> > <%} %> > </td> > </logic:equal> > <% int cell = 0; %> > <logic:notEqual name="entityForm" property="cellNoQuotaApplicable" value="true"> > <% cell++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="includeActivatedNoApplicable" value="true"> > <td width="20%" nowrap="nowrap"> > to include activated numbers > <logic:equal name="entityForm" property="includeActivatedNoMandatory" value="true"><span id="includeActivatedNoId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:checkbox property="include" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("toIncludeActivatedNoUpdatable").toString())%>' ></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("toIncludeActivatedNoUpdatable").toString())){%> > <html:hidden name="entityForm" property="include" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="includeActivatedNoApplicable" value="true"> > <% cell++; %> > </logic:notEqual> > <%if (cell == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (cell ==0 || cell==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="bankIdApplicable" value="true"> > <logic:notEqual name="entityForm" property="typeOfBankApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="bankIdApplicable" value="true"> > <td width="20%" nowrap>Bank ID > <logic:equal name="entityForm" property="bankIdMandatory" value="true"><span id="bankIdId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="bankId" disabled='<%=Boolean.parseBoolean(request.getAttribute("bankIdUpdatable").toString())%>' onkeypress="onlyVarcharAndNumbers(this);" styleClass="bdr"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("bankIdUpdatable").toString())){%> > <html:hidden name="entityForm" property="bankId" /> > <%} %> > </td> > </logic:equal> > <%int bankId = 0; %> > <logic:notEqual name="entityForm" property="bankIdApplicable" value="true"> > <% bankId++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="typeOfBankApplicable" value="true"> > <td width="20%" nowrap>Type of bank > <logic:equal name="entityForm" property="typeOfBankMandatory" value="true"><span id="typeOfBankId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap> > <html:select property="selectedBankType" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("typeOfBankUpdatable").toString())%>' name="entityForm"> > <html:optionsCollection property="typeOfBanksList" value="value" label="label"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("typeOfBankUpdatable").toString())){%> > <html:hidden name="entityForm" property="selectedBankType" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="typeOfBankApplicable" value="true"> > <%bankId++; %> > </logic:notEqual> > <%if (bankId == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (bankId ==0 || bankId==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="accountTypeApplicable" value="true"> > <logic:notEqual name="entityForm" property="relationshipManagerNameApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="accountTypeApplicable" value="true"> > <td width="20%" nowrap="nowrap">Account type > <logic:equal name="entityForm" property="accountTypeMandatory" value="true"><span id="accountTypeId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:select property="selectedAccountType" disabled='<%=Boolean.parseBoolean(request.getAttribute("accountTypeUpdatable").toString())%>' styleClass="bdr" name="entityForm"> > <html:optionsCollection property="accountTypesList" value="value" label="label"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("accountTypeUpdatable").toString())){%> > <html:hidden name="entityForm" property="selectedAccountType" /> > <%} %> > </td> > </logic:equal> > <%int acc = 0; %> > <logic:notEqual name="entityForm" property="accountTypeApplicable" value="true"> > <% acc++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="relationshipManagerNameApplicable" value="true"> > <td width="20%" nowrap="nowrap">Relationship manager name > <logic:equal name="entityForm" property="relationshipManagerNameMandatory" value="true"><span id="relationshipManagerNameId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <%--<html:select property="relManagerName" styleClass="bdr" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("relationshipManagerNameUpdatable").toString())%>'> > <html:optionsCollection property="relManagerList" value="value" label="label" /> > </html:select>--%> > <html:text property="relManager" name="entityForm" styleClass="bdr" styleId="parentEntityName" onblur="checkTypedRelManager();" onkeypress="onlyVarcharAndNumbers(this);removeId('rel');" readonly='<%=Boolean.parseBoolean(request.getAttribute("relationshipManagerNameUpdatable").toString())%>'></html:text> > <html:hidden property="relManagerName" name="entityForm" styleId="parentEntityId"/> > <% if(Boolean.parseBoolean(request.getAttribute("relationshipManagerNameUpdatable").toString())){%> > <html:hidden property="relManagerName" name="entityForm" styleId="parentEntityId"/> > <%} %> > <img src="/cPOSWeb/images/search_icon.gif" width="13" height="12" style="cursor:hand" onclick="javascript:showRelManagersPopUp(this);"> > </td> > </logic:equal> > > <logic:notEqual name="entityForm" property="relationshipManagerNameApplicable" value="true"> > <%acc++; %> > </logic:notEqual> > <%if (acc == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > > <%if (acc ==0 || acc ==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="agencyRmNameApplicable" value="true"> > <logic:notEqual name="entityForm" property="typeOfTransactionApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="agencyRmNameApplicable" value="true"> > <td width="20%" nowrap="nowrap">Agency RM name > <logic:equal name="entityForm" property="agencyRmNameMandatory" value="true"><span id="agencyRmNameId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" styleClass="bdr" property="agencyRmName" maxlength="30" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("agencyRMNameUpdatable").toString())%>'></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("agencyRMNameUpdatable").toString())){%> > <html:hidden name="entityForm" property="agencyRmName" /> > <%} %> > </td> > </logic:equal> > <% int rm = 0; %> > <logic:notEqual name="entityForm" property="agencyRmNameApplicable" value="true"> > <%rm++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="typeOfTransactionApplicable" value="true"> > <td width="20%" nowrap="nowrap">Type of transaction > <logic:equal name="entityForm" property="typeOfTransactionMandatory" value="true"><span id="typeOfTransactionId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:select property="selectedTypeOfTransaction" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("typeOfTransactionUpdatable").toString())%>' name="entityForm"> > <html:optionsCollection property="typeOfTransaction" value="value" label="label"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("typeOfTransactionUpdatable").toString())){%> > <html:hidden name="entityForm" property="selectedTypeOfTransaction" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="typeOfTransactionApplicable" value="true"> > <% rm++; %> > </logic:notEqual> > <%if (rm == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (rm ==0 || rm ==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="maxBlockedApplicable" value="true"> > <logic:notEqual name="entityForm" property="noOfAccountsApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="maxBlockedApplicable" value="true"> > <td width="20%">Max Blocked > <logic:equal name="entityForm" property="maxBlockedMandatory" value="true"><span id="maxBlockedId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" styleClass="bdr" property="maxBlocked" maxlength="22" onkeypress="checkNum();" disabled='<%=Boolean.parseBoolean(request.getAttribute("maxBlockedUpdatable").toString())%>'></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("maxBlockedUpdatable").toString())){%> > <html:hidden name="entityForm" property="maxBlocked" /> > <%} %> > </td> > </logic:equal> > <% int max = 0; %> > <logic:notEqual name="entityForm" property="maxBlockedApplicable" value="true"> > <% max++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="noOfAccountsApplicable" value="true"> > <td width="20%" nowrap="nowrap">No Of Accounts > <logic:equal name="entityForm" property="noOfAccountsMandatory" value="true"><span id="noOfAccountsId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text property="noOfAccounts" name="entityForm" maxlength="22" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("noOfAccountsUpdatable").toString())%>' onkeypress="checkNum();"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("noOfAccountsUpdatable").toString())){%> > <html:hidden name="entityForm" property="noOfAccounts" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="noOfAccountsApplicable" value="true"> > <% max++; %> > </logic:notEqual> > <%if (max == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (max ==0 || max ==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="noOfFOSApplicable" value="true"> > <logic:notEqual name="entityForm" property="noOfTelecallersApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="noOfFOSApplicable" value="true"> > <td width="20%" nowrap="nowrap">Number of FOS > <logic:equal name="entityForm" property="noOfFOSMandatory" value="true"><span id="noOfFOSId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text property="numberOfFOS" name="entityForm" styleClass="bdr" maxlength="22" disabled='<%=Boolean.parseBoolean(request.getAttribute("noOfFOSUpdatable").toString())%>' onkeypress="checkNum();"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("noOfFOSUpdatable").toString())){%> > <html:hidden name="entityForm" property="numberOfFOS" /> > <%} %> > </td> > </logic:equal> > <% int fos = 0; %> > <logic:notEqual name="entityForm" property="noOfFOSApplicable" value="true"> > <% fos++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="noOfTelecallersApplicable" value="true"> > <td width="20%">Number of telecallers > <logic:equal name="entityForm" property="noOfTelecallersMandatory" value="true"><span id="noOfTelecallersId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text property="numberOfTelecallers" name="entityForm" styleClass="bdr" maxlength="22" disabled='<%=Boolean.parseBoolean(request.getAttribute("noOfTelecallersUpdatable").toString())%>' onkeypress="checkNum();"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("noOfTelecallersUpdatable").toString())){%> > <html:hidden name="entityForm" property="numberOfTelecallers" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="noOfTelecallersApplicable" value="true"> > <% fos++; %> > </logic:notEqual> > <%if (fos == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (fos ==0 || fos == 1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="blacklistedApplicable" value="true"> > <logic:notEqual name="entityForm" property="numberPortabilityApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="blacklistedApplicable" value="true"> > <td nowrap="nowrap" width="20%">Is Blacklisted</td> > <td colspan="2" nowrap="nowrap"> > <html:checkbox name="entityForm" property="blacklisted" disabled='<%=Boolean.parseBoolean(request.getAttribute("isBlackListedUpdatable").toString())%>' ></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("isBlackListedUpdatable").toString())){%> > <html:hidden name="entityForm" property="blacklisted" /> > <%} %> > </td> > </logic:equal> > <% int isBlk = 0; %> > <logic:notEqual name="entityForm" property="blacklistedApplicable" value="true"> > <% isBlk++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="numberPortabilityApplicable" value="true"> > <td width="20%">Is number portability</td> > <td colspan="2"> > <html:checkbox property="numberPortability" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("numberPortabilityUpdatable").toString())%>' ></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("numberPortabilityUpdatable").toString())){%> > <html:hidden name="entityForm" property="numberPortability" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="numberPortabilityApplicable" value="true"> > <%isBlk++; %> > </logic:notEqual> > <%if (isBlk == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (isBlk ==0 || isBlk == 1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="physicalFormApplicable" value="true"> > <logic:notEqual name="entityForm" property="pvDisplayedApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="physicalFormApplicable" value="true"> > <td nowrap="nowrap" width="20%">Is physical form</td> > <td colspan="2" nowrap="nowrap"> > <html:checkbox property="physicalForm" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("physicalFormUpdatable").toString())%>' ></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("physicalFormUpdatable").toString())){%> > <html:hidden name="entityForm" property="physicalForm" /> > <%} %> > </td> > </logic:equal> > <%int phy = 0; %> > <logic:notEqual name="entityForm" property="physicalFormApplicable" value="true"> > <% phy++; %> > </logic:notEqual> > <logic:equal name="entityForm" property="pvDisplayedApplicable" value="true"> > <td width="20%">Is PV displayed</td> > <td colspan="2"> > <html:checkbox property="pvDisplayed" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("PVDisplayedUpdatable").toString())%>'></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("PVDisplayedUpdatable").toString())){%> > <html:hidden name="entityForm" property="pvDisplayed" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="pvDisplayedApplicable" value="true"> > <% phy++; %> > </logic:notEqual> > <%if (phy == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (phy ==0 || phy == 1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="pvRequiredApplicable" value="true"> > <logic:notEqual name="entityForm" property="dealerSpecificApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="pvRequiredApplicable" value="true"> > <td width="20%">Is PV required</td> > <td colspan="2"> > <html:checkbox property="pvRequired" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("PVRequiredUpdatable").toString())%>' ></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("PVRequiredUpdatable").toString())){%> > <html:hidden name="entityForm" property="pvRequired" /> > <%} %> > </td> > </logic:equal> > <%int pvr = 0; %> > <logic:notEqual name="entityForm" property="pvRequiredApplicable" value="true"> > <%pvr++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="dealerSpecificApplicable" value="true"> > <td nowrap="nowrap" width="20%">is Dealer specific </td> > <td colspan="2"> > <html:checkbox property="dealerSpecific" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("dealerSpecificUpdatable").toString())%>'></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("dealerSpecificUpdatable").toString())){%> > <html:hidden name="entityForm" property="pvRequired" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="dealerSpecificApplicable" value="true"> > <% pvr++; %> > </logic:notEqual> > <%if (pvr == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (pvr ==0 || pvr==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey =true;} %> > > <logic:notEqual name="entityForm" property="privToSkipPhysicalApplicable" value="true"> > <logic:notEqual name="entityForm" property="formSubmittingEntityApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="privToSkipPhysicalApplicable" value="true"> > <td width="20%" nowrap="nowrap">Privileged to skip physical</td> > <td colspan="2" nowrap="nowrap"> > <html:checkbox property="privToSkipPhysical" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("privtoSkipPhysicalUpdatable").toString())%>'></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("privtoSkipPhysicalUpdatable").toString())){%> > <html:hidden name="entityForm" property="privToSkipPhysical" /> > <%} %> > </td> > </logic:equal> > <%int skip =0 ; %> > <logic:notEqual name="entityForm" property="privToSkipPhysicalApplicable" value="true"> > <% skip++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="formSubmittingEntityApplicable" value="true"> > <td width="20%" nowrap="nowrap">Is form submitting entity</td> > <td colspan="2" nowrap="nowrap"> > <html:checkbox name="entityForm" property="fmSubmittingEntity" disabled='<%=Boolean.parseBoolean(request.getAttribute("formSubmittingEntityUpdatable").toString())%>' ></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("formSubmittingEntityUpdatable").toString())){%> > <html:hidden name="entityForm" property="fmSubmittingEntity" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="formSubmittingEntityApplicable" value="true"> > <%skip++; %> > </logic:notEqual> > <%if (skip == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (skip ==0 || skip ==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="privToSkipPrePVApplicable" value="true"> > <logic:notEqual name="entityForm" property="blackListforBidApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="privToSkipPrePVApplicable" value="true"> > <td width="20%" nowrap="nowrap">Privileged to Skip Pre-PV</td> > <td colspan="2" nowrap="nowrap"> > <html:checkbox property="privToSkipPrePV" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("privtoSkipPrePVUpdatable").toString())%>' ></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("privtoSkipPrePVUpdatable").toString())){%> > <html:hidden name="entityForm" property="privToSkipPrePV" /> > <%} %> > </td> > </logic:equal> > <%int pvbid =0;%> > <logic:notEqual name="entityForm" property="privToSkipPrePVApplicable" value="true"> > <% pvbid++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="blackListforBidApplicable" value="true"> > <td width="20%" nowrap="nowrap">Blacklist for a bid </td> > <td colspan="2" nowrap="nowrap"> > <html:checkbox property="blackListForBid" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("blackListForBidUpdatable").toString())%>' ></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("blackListForBidUpdatable").toString())){%> > <html:hidden name="entityForm" property="blackListForBid" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="blackListforBidApplicable" value="true"> > <% pvbid++; %> > </logic:notEqual> > <%if (pvbid == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (pvbid ==0 || pvbid==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:equal name="entityForm" property="forecastingDateApplicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap">Forcasting deadline > <logic:equal name="entityForm" property="forecastingDateMandatory" value="true"><span id="forecastingDateId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text name="entityForm" styleClass="bdr" onkeypress="checkNum();" property="forecastingDeadline" disabled='<%=Boolean.parseBoolean(request.getAttribute("forcastingDateUpdatable").toString())%>'></html:text> > <%if(Boolean.parseBoolean(request.getAttribute("forcastingDateUpdatable").toString())){ %> > <html:hidden name="entityForm" property="forecastingDeadline"/> > <%} %> > <td width="20%"> </td> > <td colspan="2"> </td> > </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <%-- org flexible attributes starts --%> > <logic:equal name="entityForm" property="flexAttr1Applicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap><bean:write name="entityForm" property = "flexAtrr1Label"/> > <html:hidden name="entityForm" property = "flexAtrr1Label"/> > <logic:equal name="entityForm" property="flexAttr1Mandatory" value="true"><span id="flexAttr1Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap colspan="2"> > <html:text name="entityForm" property="flexAttr1" onkeypress="onlyVarcharAndNumbers(this);" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr1Updatable").toString())%>' maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr1Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr1"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr2Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap width="20%"><bean:write name="entityForm" property = "flexAtrr2Label"/> > <html:hidden name="entityForm" property = "flexAtrr2Label"/> > <logic:equal name="entityForm" property="flexAttr2Mandatory" value="true"><span id="flexAttr2Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap colspan="2"> > <html:text name="entityForm" property="flexAttr2" onkeypress="onlyVarcharAndNumbers(this);" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr2Updatable").toString())%>' maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr2Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr2"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr3Applicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap"><bean:write name="entityForm" property = "flexAtrr3Label"/> > <html:hidden name="entityForm" property = "flexAtrr3Label"/> > <logic:equal name="entityForm" property="flexAttr3Mandatory" value="true"><span id="flexAttr3Id" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text name="entityForm" onkeypress="onlyVarcharAndNumbers(this);" property="flexAttr3" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr3Updatable").toString())%>' maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr3Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr3"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr4Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap="nowrap" width="20%"> > <bean:write name="entityForm" property = "flexAtrr4Label"/> > <html:hidden name="entityForm" property = "flexAtrr4Label"/> > <logic:equal name="entityForm" property="flexAttr4Mandatory" value="true"><span id="flexAttr4Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap colspan="2"> > <html:text name="entityForm" property="flexAttr4" onkeypress="onlyVarcharAndNumbers(this);" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr4Updatable").toString())%>' maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr4Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr4"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr5Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap width="20%"> > <bean:write name="entityForm" property = "flexAtrr5Label"/> > <html:hidden name="entityForm" property = "flexAtrr5Label"/> > <logic:equal name="entityForm" property="flexAttr5Mandatory" value="true"><span id="flexAttr5Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap colspan="2"><html:text name="entityForm" property="flexAttr5" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr5Updatable").toString())%>' styleClass="bdr" maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr5Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr5"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr6Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap="nowrap" width="20%"><bean:write name="entityForm" property = "flexAtrr6Label"/> > <html:hidden name="entityForm" property = "flexAtrr6Label"/> > <logic:equal name="entityForm" property="flexAttr6Mandatory" value="true"><span id="flexAttr6Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap="nowrap" colspan="2"> > <html:multibox name="entityForm" property="flexAttr6" value="Y" onclick="changeValue()" /></td> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr6Updatable").toString())){ %> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr7Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap="nowrap" width="20%"><bean:write name="entityForm" property = "flexAtrr7Label"/> > <html:hidden name="entityForm" property = "flexAtrr7Label"/> > <logic:equal name="entityForm" property="flexAttr7Mandatory" value="true"><span id="flexAttr7Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap="nowrap" colspan="2"> > <html:text name="entityForm" property="flexAttr7" styleClass="bdr" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr7Updatable").toString())%>' maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr7Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr7"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr8Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap="nowrap" width="20%"><bean:write name="entityForm" property = "flexAtrr8Label"/> > <html:hidden name="entityForm" property = "flexAtrr8Label"/> > <logic:equal name="entityForm" property="flexAttr8Mandatory" value="true"><span id="flexAttr8Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap="nowrap" colspan="2"> > <html:text name="entityForm" property="flexAttr8" styleClass="bdr" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr8Updatable").toString())%>' maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr8Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr8"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > > > <!-- Start BR6 Sales Added by 472781 Cell Site --> > <jsp:include flush="true" page="editEntityFlexAttr9.jsp"></jsp:include> > <!-- End BR6 Sales Cell Site --> > > <logic:equal name="entityForm" property="flexAttr10Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap="nowrap" width="20%"> > <bean:write name="entityForm" property = "flexAtrr10Label"/> > <html:hidden name="entityForm" property = "flexAtrr10Label"/> > <logic:equal name="entityForm" property="flexAttr10Mandatory" value="true"><span id="flexAttr10Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap="nowrap" colspan="2"> > <html:text name="entityForm" property="flexAttr10" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr10Updatable").toString())%>' styleClass="bdr" maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr10Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr10"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <!-- flexible attributes logic ends here --> > > </logic:equal> > > <%--Organisation Attributes ends here --%> > > <logic:equal name="entityForm" property="indicator" value="P"> > > > <tr valign="top" class="GridDataRow"> > <td width="20%" nowrap="nowrap">Entity Code > </td> > <td colspan="2" nowrap="nowrap"> > <html:text property="entityCode" name="entityForm" onkeypress="onlyVarcharAndNumbers(this);" disabled="true" styleClass="bdr" ></html:text> > <html:hidden name="entityForm" property="entityCode"/> > </td> > > <logic:equal name="entityForm" property="empCodeApplicable" value="true"> > <td width="20%" nowrap="nowrap">Emp Code > <logic:equal name="entityForm" property="empCodeMandatory" value="true"><span id="empCodeId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text name="entityForm" property="empCode" styleClass="bdr" maxlength="50" > disabled='<%=Boolean.parseBoolean(request.getAttribute("empCodeUpdatable").toString())%>' onkeypress="onlyVarcharAndNumbers(this);"/> > <%if(Boolean.parseBoolean(request.getAttribute("empCodeUpdatable").toString())){ %> > <html:hidden name="entityForm" property="empCode"/> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="empCodeApplicable" value="true"> > <td width="20%"> </td> > <td colspan="2"> </td> > </logic:notEqual> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > > <logic:equal name="entityForm" property="nameApplicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap" class="SubHeadingBlack">Name</td> > <td colspan="2" nowrap="nowrap"> </td> > <td width="20%" nowrap="nowrap"> </td> > <td colspan="2" nowrap="nowrap"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="firstNameApplicable" value="true"> > <td width="20%" nowrap="nowrap">First name > <logic:equal name="entityForm" property="firstNameMandatory" value="true"><span id="firstNameId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="firstName" styleClass="bdr" maxlength="30" > disabled='<%=Boolean.parseBoolean(request.getAttribute("firstNameUpdatable").toString())%>' onkeypress="onlyVarcharAndNumbers(this);"/> > <%if(Boolean.parseBoolean(request.getAttribute("firstNameUpdatable").toString())){ %> > <html:hidden name="entityForm" property="firstName"/> > <%} %> > </td> > </logic:equal> > > <%int name=0; %> > <logic:notEqual name="entityForm" property="firstNameApplicable" value="true"> > <%name++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="lastNameApplicable" value="true"> > <td width="20%">Last name > <logic:equal name="entityForm" property="lastNameMandatory" value="true"><span id="lastNameId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="lastName" styleClass="bdr" maxlength="30" > disabled='<%=Boolean.parseBoolean(request.getAttribute("lastNameUpdatable").toString())%>' onkeypress="onlyVarcharAndNumbers(this);"/> > <%if(Boolean.parseBoolean(request.getAttribute("lastNameUpdatable").toString())){ %> > <html:hidden name="entityForm" property="lastName"/> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="lastNameApplicable" value="true"> > <%name++; %> > </logic:notEqual> > <%if (name == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > ><!-- Commercial BR9: Employee_Creation R4 BY TCS 486512 START --> ><logic:equal name="entityForm" property="selectedEntityType" value="170"> > <logic:equal name="entityForm" property="orgEntityApplicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap" class="SubHeadingBlack">Organisation > <logic:equal name="entityForm" property="orgEntityMandatory" value="true"><span id="orgEntityId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> </td> > <td width="20%" nowrap="nowrap"> </td> > <td nowrap="nowrap" colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap">Organisation > <logic:equal name="entityForm" property="orgEntityMandatory" value="true"><span id="orgEntityId" class="mandetory" > *</span></logic:equal> </td> > <td colspan="2"> > <html:text property="orgEntity" name="entityForm" styleClass="bdr" styleId="parentEntityName" onkeypress="onlyVarcharAndNumbers(this);removeId('org');" onblur="checkTypedOrganisation();getParentPerson();autoPopulateAddress(this);" /> > <html:hidden property="selectedOrgEntity" name="entityForm" styleId="parentEntityId"/> > <img src="/cPOSWeb/images/search_icon.gif" width="13" height="12" style="cursor:hand" onclick="javascript:showOrgListPopUp(this)"> > <%--<html:select property="selectedOrgEntity" styleClass="bdr" name="entityForm"> > <html:optionsCollection property="orgEntities" value="value" label="label" /> > </html:select>--%> > </td> > <td width="20%" nowrap="nowrap"> </td> > <td nowrap="nowrap" colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > </logic:equal> ><!-- Commercial BR9: Employee_Creation R4 BY TCS 486512 END --> > > > > > > > > > > > > > > > > <logic:equal name="entityForm" property="addressApplicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap" class="SubHeadingBlack">Address > <logic:equal name="entityForm" property="addressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> </td> > <td width="20%" nowrap="nowrap"> </td> > <td nowrap="nowrap" colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <tr class="GridDataRow"> > <td valign="top" width="20%" nowrap="nowrap"> Address > <logic:equal name="entityForm" property="addressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:textarea property="address" name="entityForm" rows="5" cols="35" styleClass="bdr" > disabled='<%=Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())%>'/> > </td> > <td valign="top" nowrap="nowrap" width="20%"> </td> > <td valign="top" nowrap="nowrap" colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap">Country > <logic:equal name="entityForm" property="addressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:select property="selectedCountry" styleClass="bdr" name="entityForm" > disabled ='<%=Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())%>' onchange="getStates(this);"> > <html:optionsCollection property="countries" value="countryId" label="countryName"/> > </html:select> > </td> > <td nowrap="nowrap" width="20%"> State > <logic:equal name="entityForm" property="addressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap="nowrap" colspan="2"> > <html:select property="selectedState" styleClass="bdr" name="entityForm" > disabled='<%=Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())%>' onchange="getCities(this);"> > <html:optionsCollection property="states" value="stateId" label="stateName"/> > </html:select> > </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > > <tr class="GridDataRow"> > <td nowrap="nowrap" width="20%"> City > <logic:equal name="entityForm" property="addressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:select property="selectedCity" styleClass="bdr" name="entityForm" > disabled='<%=Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())%>'> > <html:optionsCollection property="cities" value="cityId" label="cityName"/> > </html:select> > </td> > <td nowrap="nowrap" width="20%">Pincode > <logic:equal name="entityForm" property="addressMandatory" value="true"><span id="entityAddressId" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap="nowrap" colspan="2"> > <html:text name="entityForm" property="pincode" styleClass="bdr" maxlength="6" onkeypress="checkNum();" > readonly='<%=Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())%>' onblur="checkInputLength(this.value,6)"></html:text> > <%if(Boolean.parseBoolean(request.getAttribute("addressUpdatable").toString())){ %> > <html:hidden name="entityForm" property="address"/> > <html:hidden name="entityForm" property="selectedCountry"/> > <html:hidden name="entityForm" property="selectedState"/> > <html:hidden name="entityForm" property="selectedCity"/> > <html:hidden name="entityForm" property="pincode"/> > <%} %> > </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:notEqual name="entityForm" property="mobileNoApplicable" value="true"> > <logic:notEqual name="entityForm" property="landlineNoApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="mobileNoApplicable" value="true"> > <td width="20%" nowrap="nowrap">Mobile No > <logic:equal name="entityForm" property="mobileNoMandatory" value="true"><span id="mobileNoId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="mobileNo" styleClass="bdr" maxlength="10" disabled='<%=Boolean.parseBoolean(request.getAttribute("mobileNoUpdatable").toString())%>'/> > <%if(Boolean.parseBoolean(request.getAttribute("mobileNoUpdatable").toString())){ %> > <html:hidden name="entityForm" property="mobileNo"/> > <%} %> > </td> > </logic:equal> > <%int no=0; %> > <logic:notEqual name="entityForm" property="mobileNoApplicable" value="true"> > <% no++; %> > </logic:notEqual> > <logic:equal name="entityForm" property="landlineNoApplicable" value="true"> > <td width="20%" nowrap="nowrap">Landline No > <logic:equal name="entityForm" property="landlineNoMandatory" value="true"><span id="landlineNoId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="landlineNo" maxlength="15" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("landlineNoUpdatable").toString())%>'/> > <%if(Boolean.parseBoolean(request.getAttribute("landlineNoUpdatable").toString())){ %> > <html:hidden name="entityForm" property="landlineNo"/> > <%}%> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="landlineNoApplicable" value="true"> > <% no++; %> > </logic:notEqual> > <%if (no == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (no == 0 || no == 1){ %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey=true;} %> > > <logic:notEqual name="entityForm" property="residenceNoApplicable" value="true"> > <logic:notEqual name="entityForm" property="migPhoneNoApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="residenceNoApplicable" value="true"> > <td width="20%" nowrap="nowrap">Residence number > <logic:equal name="entityForm" property="residenceNoMandatory" value="true"><span id="residenceNoId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text property="residenceNo" name="entityForm" maxlength="15" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("residenceNoUpdatable").toString())%>' onkeypress="checkNum();"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("residenceNoUpdatable").toString())){%> > <html:hidden name="entityForm" property="residenceNo" /> > <%} %> > </td> > </logic:equal> > <%int res =0; %> > <logic:notEqual name="entityForm" property="residenceNoApplicable" value="true"> > <%res++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="migPhoneNoApplicable" value="true"> > <td width="20%" nowrap="nowrap">MIG Phone No > <logic:equal name="entityForm" property="migPhoneNoMandatory" value="true"><span id="migPhoneNoId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text property="migPhoneNo" name="entityForm" maxlength="15" disabled='<%=Boolean.parseBoolean(request.getAttribute("MIGPhoneNoUpdatable").toString())%>' styleClass="bdr" onkeypress="checkNum();"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("MIGPhoneNoUpdatable").toString())){%> > <html:hidden name="entityForm" property="migPhoneNo" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="migPhoneNoApplicable" value="true"> > <%res++; %> > </logic:notEqual> > <%if (res == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (res ==0 || res==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="emailIdApplicable" value="true"> > <logic:notEqual name="entityForm" property="designationApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="emailIdApplicable" value="true"> > <td nowrap="nowrap" width="20%">Email > <logic:equal name="entityForm" property="emailIdMandatory" value="true"><span id="email_Id" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="emailId" styleClass="bdr" > disabled='<%=Boolean.parseBoolean(request.getAttribute("emailIdUpdatable").toString())%>' maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("emailIdUpdatable").toString())){ %> > <html:hidden name="entityForm" property="emailId"/> > <%}%> > </td> > </logic:equal> > <%int mail = 0; %> > <logic:notEqual name="entityForm" property="emailIdApplicable" value="true"> > <% mail++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="designationApplicable" value="true"> > <td nowrap="nowrap" width="20%">Designation > <logic:equal name="entityForm" property="designationMandatory" value="true"><span id="designationId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <% > boolean visible =false; >if(null!=request.getAttribute("ISEVUSER") && ""!=request.getAttribute("ISEVUSER")) >{ >visible = ((Boolean)request.getAttribute("ISEVUSER")).booleanValue(); > >} >%> > > <% if(!visible) { %> > <html:text name="entityForm" property="designation" styleClass="bdr" maxlength="50" onkeypress="onlyVarcharAndNumbers(this);"/> > <%} %> > <% if(visible) { %> > <html:select property="designation" styleClass="bdr" name="entityForm" > > <html:option value="0">---Select---</html:option> > <html:optionsCollection property="designations" value="designationName" label="designationName"/> > </html:select> > <%} %> > > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="designationApplicable" value="true"> > <%mail++; %> > </logic:notEqual> > <%if (mail == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (mail ==0 || mail==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="departMentApplicable" value="true"> > <td width="20%" nowrap="nowrap">Department > <logic:equal name="entityForm" property="departMentMandatory" value="true"><span id="departmentId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="department" styleClass="bdr" maxlength="50" > disabled='<%=Boolean.parseBoolean(request.getAttribute("departMentUpdatable").toString())%>' onkeypress="onlyVarcharAndNumbers(this);"/> > <%if(Boolean.parseBoolean(request.getAttribute("departMentUpdatable").toString())){ %> > <html:hidden name="entityForm" property="department"/> > <%}%> > </td> > </logic:equal> > <% int dept =0; %> > <logic:notEqual name="entityForm" property="departMentApplicable" value="true"> > <% dept++; %> > </logic:notEqual> > <!-- Commercial BR9: Employee_Creation R4 BY TCS 486512 START --> ><logic:notEqual name="entityForm" property="selectedEntityType" value="170"> <!-- Added by 486512 for BR9 Commercial --> > <logic:equal name="entityForm" property="orgEntityApplicable" value="true"> > <td width="20%" nowrap="nowrap">Organisation > <logic:equal name="entityForm" property="orgEntityMandatory" value="true"><span id="orgEntityId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text property="orgEntity" name="entityForm" styleClass="bdr" styleId="parentEntityName" onblur="checkTypedOrganisation();getParentPerson();" onkeypress="onlyVarcharAndNumbers(this);removeId('org');" readonly='<%=Boolean.parseBoolean(request.getAttribute("orgEntityUpdatable").toString())%>' /> > <html:hidden property="selectedOrgEntity" name="entityForm" styleId="parentEntityId"/> > <%-- <html:select property="selectedOrgEntity" styleClass="bdr" name="entityForm" > disabled='<%=Boolean.parseBoolean(request.getAttribute("orgEntityUpdatable").toString())%>'> > <html:optionsCollection property="orgEntities" value="value" label="label" /> > </html:select>--%> > <img src="/cPOSWeb/images/search_icon.gif" width="13" height="12" style="cursor:hand" onclick="javascript:showOrgListPopUp(this)"> > <%if(Boolean.parseBoolean(request.getAttribute("orgEntityUpdatable").toString())){ %> > <html:hidden property="selectedOrgEntity" name="entityForm"/> > <%}%> > > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="orgEntityApplicable" value="true"> > <%dept++; %> > </logic:notEqual> > <%if (dept == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (dept ==0 || dept==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%} %> > </logic:notEqual> <!-- Added by 486512 for BR9 Commercial --> > <!--Commercial BR9: Employee_Creation R4 BY TCS 486512 END --> ><!-- Commercial BR9: Employee_Creation R4 BY TCS 486512 START --> > <logic:equal name="entityForm" property="selectedEntityType" value="170"> > <td width="20%"> </td> > <td colspan="2"> </td> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="remarksApplicable" value="true"> > <td width="20%" nowrap="nowrap">Remarks > <logic:equal name="entityForm" property="remarksMandatory" value="true"><span id="remarksId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:textarea name="entityForm" property="remarks" styleClass="bdr" onkeypress="onlyVarcharAndNumbersForRemarks(this);checkRemarksLen(this);"/> > </td> > > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > <!-- Commercial BR9: Employee_Creation R4 BY TCS 486512 END --> > > > <logic:notEqual name="entityForm" property="stateRegionApplicable" value="true"> > <logic:notEqual name="entityForm" property="zoneApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr valign="top" class="GridDataRow"> > <logic:equal name="entityForm" property="stateRegionApplicable" value="true"> > <td width="20%" nowrap="nowrap">State/Region > <logic:equal name="entityForm" property="stateRegionMandatory" value="true"><span id="stateRegionId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:select property="selectedRegionState" disabled='<%=Boolean.parseBoolean(request.getAttribute("stateRegionIdUpdatable").toString())%>' onchange="callMultiSelect('person');" styleClass="bdr" name="entityForm"> > <html:option value="0">---Select---</html:option> > <html:optionsCollection property="regionStateList" value="regionStateCode" label="regionStateName"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("stateRegionIdUpdatable").toString())){%> > <html:hidden name="entityForm" property="selectedRegionState" /> > <%} %> > </td> > </logic:equal> > <% int st=0; %> > <logic:notEqual name="entityForm" property="stateRegionApplicable" value="true"> > <%st++; %> > </logic:notEqual> > <logic:equal name="entityForm" property="zoneApplicable" value="true"> > <td nowrap="nowrap" width="20%">Zone > <logic:equal name="entityForm" property="zoneMandatory" value="true"><span id="zoneTypeId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:select property="selectedZone" styleClass="bdr" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("zoneUpdatable").toString())%>'> > <html:option value="0">---Select---</html:option> > <html:optionsCollection property="zoneList" value="zoneId" label="zoneDescription"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("zoneUpdatable").toString())){%> > <html:hidden name="entityForm" property="selectedZone" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="zoneApplicable" value="true"> > <%st++; %> > </logic:notEqual> > > <%if (st == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (st ==0 || st==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="branchApplicable" value="true"> > <logic:notEqual name="entityForm" property="locationApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="branchApplicable" value="true"> > <td width="20%" nowrap="nowrap">Branch > <logic:equal name="entityForm" property="branchMandatory" value="true"><span id="branchId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:select property="selectedBranch" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("branchUpdatable").toString())%>' name="entityForm"> > <html:option value="0">---Select---</html:option> > <html:optionsCollection property="branchList" value="branchId" label="branchName"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("branchUpdatable").toString())){%> > <html:hidden name="entityForm" property="selectedBranch" /> > <%} %> > </td> > </logic:equal> > <% int br=0; %> > <logic:notEqual name="entityForm" property="branchApplicable" value="true"> > <%br++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="locationApplicable" value="true"> > <td width="20%" nowrap="nowrap">Associated warehouse > <logic:equal name="entityForm" property="locationMandatory" value="true"><span id="locationId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:select property="selectedWarehouse" styleClass="bdr" name="entityForm" multiple="true" size="5" > disabled='<%=Boolean.parseBoolean(request.getAttribute("locationUpdatable").toString())%>'> > <html:optionsCollection property="warehouses" value="locationId" label="locationName"/> > </html:select> > <%if(Boolean.parseBoolean(request.getAttribute("locationUpdatable").toString())){ %> > <html:hidden name="entityForm" property="disabledLocProp" value="true" /> > <html:hidden name="entityForm" property="selectedWarehouse"/> > <%}%> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="locationApplicable" value="true"> > <%br++; %> > </logic:notEqual> > <%if (br == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (br ==0 || br==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > > <logic:notEqual name="entityForm" property="beatApplicable" value="true"> > <logic:notEqual name="entityForm" property="dateOfJoiningApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="beatApplicable" value="true"> > <td nowrap="nowrap" width="20%">Beats > <logic:equal name="entityForm" property="beatMandatory" value="true"><span id="beatId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:select property="selectedMultiBeats" styleClass="bdr" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("beatIdUpdatable").toString())%>' multiple="true" size="5"> > <html:optionsCollection property="beats" value="beatCode" label="beatName"/> > </html:select> > <% if(Boolean.parseBoolean(request.getAttribute("beatIdUpdatable").toString())){%> > <html:hidden name="entityForm" property="disabledBeatProp" value="true" /> > <html:hidden name="entityForm" property="selectedMultiBeats" /> > <%} %> > </td> > </logic:equal> > <%int beats =0; %> > <logic:notEqual name="entityForm" property="beatApplicable" value="true"> > <%beats++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="dateOfJoiningApplicable" value="true"> > <td width="20%" nowrap="nowrap">Date of joining > <logic:equal name="entityForm" property="dateOfJoiningMandatory" value="true"><span id="dateOfJoiningId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text name="entityForm" property="dateOfJoining" styleClass="bdr" size="10" maxlength="50" readonly="true" /> > <%if(Boolean.parseBoolean(request.getAttribute("dateOfJoiningUpdatable").toString())){ %> > <a href="#" name="fromDateAnchor" onclick="cal.select(document.getElementById('dateOfJoining'),'fromDateAnchor','dd/MM/yyyy'); return;"> > <img src="/cPOSWeb/images/calendar_icon.gif" width="16" height="16" border="0"> > </a> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="dateOfJoiningApplicable" value="true"> > <%beats++; %> > </logic:notEqual> > <%if (beats == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (beats ==0 || beats==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="approvalLimitApplicable" value="true"> > <logic:notEqual name="entityForm" property="etopCodeApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="approvalLimitApplicable" value="true"> > <td width="20%" nowrap="nowrap">Approval limit > <logic:equal name="entityForm" property="approvalLimitMandatory" value="true"><span id="approvalLimitId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="approvalLimit" maxlength="22" onkeypress="checkNum();" disabled='<%=Boolean.parseBoolean(request.getAttribute("approvalLimitUpdatable").toString())%>' styleClass="bdr"/> > <%if(Boolean.parseBoolean(request.getAttribute("approvalLimitUpdatable").toString())){ %> > <html:hidden name="entityForm" property="approvalLimit"/> > <%} %> > </td> > </logic:equal> > <% int applmt = 0; %> > <logic:notEqual name="entityForm" property="approvalLimitApplicable" value="true"> > <%applmt++; %> > </logic:notEqual> > <logic:equal name="entityForm" property="etopCodeApplicable" value="true"> > <td width="20%" nowrap="nowrap">eTOP code > <logic:equal name="entityForm" property="etopCodeMandatory" value="true"><span id="etopCodeId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="etopCode" disabled='<%=Boolean.parseBoolean(request.getAttribute("etopReferenceCodeUpdatable").toString())%>' styleClass="bdr" maxlength="15" onkeypress="onlyVarcharAndNumbers(this);"/> > <% if(Boolean.parseBoolean(request.getAttribute("etopReferenceCodeUpdatable").toString())){%> > <html:hidden name="entityForm" property="etopCode" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="etopCodeApplicable" value="true"> > <%applmt++; %> > </logic:notEqual> > <%if (applmt == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (applmt ==0 || applmt ==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="forecastingDateApplicable" value="true"> > <logic:notEqual name="entityForm" property="corporatesApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="forecastingDateApplicable" value="true"> > <td width="20%" nowrap="nowrap">Forcasting deadline > <logic:equal name="entityForm" property="forecastingDateMandatory" value="true"><span id="forecastingDateId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" styleClass="bdr" property="forecastingDeadline" onkeypress="checkNum();" disabled='<%=Boolean.parseBoolean(request.getAttribute("forcastingDateUpdatable").toString())%>'></html:text> > <%if(Boolean.parseBoolean(request.getAttribute("forcastingDateUpdatable").toString())){ %> > <html:hidden name="entityForm" property="forecastingDeadline"/> > <%} %> > </td> > </logic:equal> > <% int fordt = 0; %> > <logic:notEqual name="entityForm" property="forecastingDateApplicable" value="true"> > <%fordt++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="corporatesApplicable" value="true"> > <td width="20%" nowrap="nowrap">Corporates > <logic:equal name="entityForm" property="corporatesMandatory" value="true"><span id="corporatesId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text property="corporates" name="entityForm" maxlength="20" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("corporatesUpdatable").toString())%>' styleClass="bdr" ></html:text> > <%if(Boolean.parseBoolean(request.getAttribute("corporatesUpdatable").toString())){ %> > <html:hidden name="entityForm" property="corporates"/> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="corporatesApplicable" value="true"> > <%fordt++; %> > </logic:notEqual> > <%if (fordt == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (fordt ==0 || fordt==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="blacklistedApplicable" value="true"> > <logic:notEqual name="entityForm" property="canReceiveEscalationApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="blacklistedApplicable" value="true"> > <td width="20%" nowrap="nowrap">Is Blacklisted</td> > <td colspan="2" nowrap="nowrap"> > <html:checkbox name="entityForm" property="blacklisted" disabled='<%=Boolean.parseBoolean(request.getAttribute("isBlackListedUpdatable").toString())%>' ></html:checkbox> > <%if(Boolean.parseBoolean(request.getAttribute("isBlackListedUpdatable").toString())){ %> > <html:hidden property="blacklisted" name="entityForm"/> > <%}%> > </td> > </logic:equal> > <% int blk =0; %> > <logic:notEqual name="entityForm" property="blacklistedApplicable" value="true"> > <%blk++; %> > </logic:notEqual> > <logic:equal name="entityForm" property="canReceiveEscalationApplicable" value="true"> > <td width="20%" nowrap="nowrap">Can receive escalation </td> > <td colspan="2"> > <html:checkbox property="canReceiveEscalation" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("canReceiveEscalationUpdatable").toString())%>' ></html:checkbox> > <%if(Boolean.parseBoolean(request.getAttribute("canReceiveEscalationUpdatable").toString())){ %> > <html:hidden property="canReceiveEscalation" name="entityForm"/> > <%}%> > </td> > > </logic:equal> > <logic:notEqual name="entityForm" property="canReceiveEscalationApplicable" value="true"> > <%blk++; %> > </logic:notEqual> > <%if (blk == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (blk ==0 || blk==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey=true;} %> > > <logic:notEqual name="entityForm" property="priviledgedApplicable" value="true"> > <logic:notEqual name="entityForm" property="formSubmittingEntityApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="priviledgedApplicable" value="true"> > <td width="20%" nowrap="nowrap">Is Priviledged</td> > <td colspan="2"> > <html:checkbox property="priviledge" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("priviledgedUpdatable").toString())%>' ></html:checkbox> > <%if(Boolean.parseBoolean(request.getAttribute("priviledgedUpdatable").toString())){ %> > <html:hidden property="priviledge" name="entityForm"/> > <%}%> > </td> > </logic:equal> > <% int priv=0; %> > <logic:notEqual name="entityForm" property="priviledgedApplicable" value="true"> > <%priv++; %> > </logic:notEqual> > <logic:equal name="entityForm" property="formSubmittingEntityApplicable" value="true"> > <td nowrap="nowrap" width="20%">Is Form submitting entity</td> > <td colspan="2"> > <html:checkbox name="entityForm" property="fmSubmittingEntity" disabled='<%=Boolean.parseBoolean(request.getAttribute("formSubmittingEntityUpdatable").toString())%>' ></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("formSubmittingEntityUpdatable").toString())){%> > <html:hidden name="entityForm" property="fmSubmittingEntity" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="formSubmittingEntityApplicable" value="true"> > <%priv++; %> > </logic:notEqual> > <%if (priv == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (priv ==0 || priv==1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey = true;} %> > > <logic:notEqual name="entityForm" property="blackListforBidApplicable" value="true"> > <logic:notEqual name="entityForm" property="creditLimitApplicable" value="true"> > <%grey= false; %> > </logic:notEqual> > </logic:notEqual> > <%if (grey){ %> > <tr class="GridDataRow"> > <logic:equal name="entityForm" property="blackListforBidApplicable" value="true"> > <td nowrap="nowrap" width="20%">Blacklist for a bid</td> > <td colspan="2" nowrap="nowrap"> > <html:checkbox property="blackListForBid" name="entityForm" disabled='<%=Boolean.parseBoolean(request.getAttribute("blackListForBidUpdatable").toString())%>' ></html:checkbox> > <% if(Boolean.parseBoolean(request.getAttribute("blackListForBidUpdatable").toString())){%> > <html:hidden name="entityForm" property="blackListForBid" /> > <%} %> > </td> > </logic:equal> > <%int bid =0; %> > <logic:notEqual name="entityForm" property="blackListforBidApplicable" value="true"> > <% bid++; %> > </logic:notEqual> > > <logic:equal name="entityForm" property="creditLimitApplicable" value="true"> > <td width="20%" nowrap="nowrap">Credit limit > <logic:equal name="entityForm" property="creditLimitMandatory" value="true"><span id="creditLimitId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2"> > <html:text name="entityForm" property="creditLimit" styleClass="bdr" maxlength="20" disabled='<%=Boolean.parseBoolean(request.getAttribute("creditLimitUpdatable").toString())%>' onkeyup="onlyFloatNumbers(this);" onblur="onlyFloatNumbers(this); populateRunningBalance();"></html:text> > <% if(Boolean.parseBoolean(request.getAttribute("creditLimitUpdatable").toString())){%> > <html:hidden name="entityForm" property="creditLimit" /> > <%} %> > </td> > </logic:equal> > <logic:notEqual name="entityForm" property="creditLimitApplicable" value="true"> > <%bid++; %> > </logic:notEqual> > <%if (bid == 1 ){ %> > <td width="20%"> </td> > <td colspan="2"> </td> > <%} %> > </tr> > <%if (bid ==0 || bid == 1) { %> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > <%}}else{grey= true;} %> > > <logic:equal name="entityForm" property="parentPersonEntIdApplicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap">Parent Person ent Id > <logic:equal name="entityForm" property="parentPersonEntIdMandatory" value="true"><span id="parentPersonEntityId" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <logic:notEmpty property="parentPersonList" name="entityForm"> > <html:select property="parentPersonEntId" styleClass="bdr" disabled='<%=Boolean.parseBoolean(request.getAttribute("parentPersonEntityUpdatable").toString())%>' name="entityForm"> > <html:optionsCollection property="parentPersonList" value="value" label="label" /> > </html:select> > </logic:notEmpty> > <logic:empty name="entityForm" property="parentPersonList"> > <html:select property="parentPersonEntId" styleClass="bdr" name="entityForm"> > <html:option value="0">---Select---</html:option> > </html:select> > </logic:empty> > <% if(Boolean.parseBoolean(request.getAttribute("parentPersonEntityUpdatable").toString())){%> > <html:hidden name="entityForm" property="parentPersonEntId" /> > <%} %> > > </td> > <td width="20%"> </td> > <td colspan="2" width="20%"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > > <%-- person flexible attributes starts --%> > > <logic:equal name="entityForm" property="flexAttr1Applicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap><bean:write name="entityForm" property = "flexAtrr1Label"/> > <html:hidden name="entityForm" property = "flexAtrr1Label"/> > <logic:equal name="entityForm" property="flexAttr1Mandatory" value="true"><span id="flexAttr1Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap colspan="2"> > <html:text name="entityForm" property="flexAttr1" styleClass="bdr" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr1Updatable").toString())%>' maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr1Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr1"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr2Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap width="20%"><bean:write name="entityForm" property = "flexAtrr2Label"/> > <html:hidden name="entityForm" property = "flexAtrr2Label"/> > <logic:equal name="entityForm" property="flexAttr2Mandatory" value="true"><span id="flexAttr2Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap colspan="2"> > <html:text name="entityForm" property="flexAttr2" styleClass="bdr" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr2Updatable").toString())%>' maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr2Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr2"/> > <%}%> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr3Applicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap="nowrap"><bean:write name="entityForm" property = "flexAtrr3Label"/> > <html:hidden name="entityForm" property = "flexAtrr3Label"/> > <logic:equal name="entityForm" property="flexAttr3Mandatory" value="true"><span id="flexAttr3Id" class="mandetory" > *</span></logic:equal> > </td> > <td colspan="2" nowrap="nowrap"> > <html:text name="entityForm" property="flexAttr3" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr3Updatable").toString())%>' styleClass="bdr" maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr3Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr3"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr4Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap="nowrap" width="20%"> > <bean:write name="entityForm" property = "flexAtrr4Label"/> > <html:hidden name="entityForm" property = "flexAtrr4Label"/> > <logic:equal name="entityForm" property="flexAttr4Mandatory" value="true"><span id="flexAttr4Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap colspan="2"> > <html:text name="entityForm" property="flexAttr4" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr4Updatable").toString())%>' styleClass="bdr" maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr4Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr4"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr5Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap width="20%"> > <bean:write name="entityForm" property = "flexAtrr5Label"/> > <html:hidden name="entityForm" property = "flexAtrr5Label"/> > <logic:equal name="entityForm" property="flexAttr5Mandatory" value="true"><span id="flexAttr5Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap colspan="2"><html:text name="entityForm" property="flexAttr5" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr5Updatable").toString())%>' styleClass="bdr" maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr5Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr5"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr6Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap="nowrap" width="20%"><bean:write name="entityForm" property = "flexAtrr6Label"/> > <html:hidden name="entityForm" property = "flexAtrr6Label"/> > <logic:equal name="entityForm" property="flexAttr6Mandatory" value="true"><span id="flexAttr6Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap="nowrap" colspan="2"> > <html:text name="entityForm" property="flexAttr6" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr6Updatable").toString())%>' styleClass="bdr" maxlength="50" /></td> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr6Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr6"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr7Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap="nowrap" width="20%"><bean:write name="entityForm" property = "flexAtrr7Label"/> > <html:hidden name="entityForm" property = "flexAtrr7Label"/> > <logic:equal name="entityForm" property="flexAttr7Mandatory" value="true"><span id="flexAttr7Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap="nowrap" colspan="2"> > <html:text name="entityForm" property="flexAttr7" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr7Updatable").toString())%>' styleClass="bdr" maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr7Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr7"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr8Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap="nowrap" width="20%"><bean:write name="entityForm" property = "flexAtrr8Label"/> > <html:hidden name="entityForm" property = "flexAtrr8Label"/> > <logic:equal name="entityForm" property="flexAttr8Mandatory" value="true"><span id="flexAttr8Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap="nowrap" colspan="2"> > <html:text name="entityForm" property="flexAttr8" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr8Updatable").toString())%>' styleClass="bdr" maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr8Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr8"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <logic:equal name="entityForm" property="flexAttr9Applicable" value="true"> > <tr class="GridDataRow"> > <td nowrap="nowrap" width="20%"><bean:write name="entityForm" property = "flexAtrr9Label"/> > <html:hidden name="entityForm" property = "flexAtrr9Label"/> > <logic:equal name="entityForm" property="flexAttr9Mandatory" value="true"><span id="flexAttr9Id" class="mandetory" > *</span></logic:equal> > </td> > <td nowrap="nowrap" width="20%"> > <html:text name="entityForm" property="flexAttr9" onkeypress="onlyVarcharAndNumbers(this);" disabled='<%=Boolean.parseBoolean(request.getAttribute("flexAttr9Updatable").toString())%>' styleClass="bdr" maxlength="50"/> > <%if(Boolean.parseBoolean(request.getAttribute("flexAttr9Updatable").toString())){ %> > <html:hidden name="entityForm" property="flexAttr9"/> > <%} %> > </td> > <td width="20%"> </td> > <td colspan="2"> </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > > <!-- BR3 Multiple beats for Retailer and DSE BY TCS 397964 STARTS --> > <jsp:include flush="true" page="editEntityFlexAttr.jsp"></jsp:include> > <!-- BR3 Multiple beats for Retailer and DSE BY TCS 397964 ENDS --> > > <!-- person flexible attributes logic ends here --> > > </logic:equal> > <%-- Person ends here --%> > <logic:equal name="entityForm" property="longLatitudeApplicable" value="true"> > <tr class="GridDataRow"> > <td width="20%" nowrap>Longitude</td> > <td colspan="2" nowrap="nowrap"> > <html:text property="longitude" name="entityForm" onkeypress="onlyVarcharAndNumbers(this);" disabled="true" styleClass="bdr"></html:text> > > </td> > <td width="20%" nowrap>Latitude</td> > <td colspan="2" nowrap="nowrap"> > <html:text property="latitude" name="entityForm" onkeypress="onlyVarcharAndNumbers(this);" disabled="true" styleClass="bdr"></html:text> > > </td> > </tr> > <tr> > <td height="1" colspan="6" align="center" class="tdSeperator"><spacer height=1></td> > </tr> > </logic:equal> > <input type="hidden" name="change" value="true" /> > </table> > > <logic:equal name="entityForm" property="linksFlag" value="true"> > <table width="100%" border="0" cellspacing="0" cellpadding="0"> > <tr> > <td> > <table width="100" height="25" border="0" align="right" cellpadding="2" cellspacing="3"> > <tr bgcolor="#FF0000"> > <td nowrap> > <a href="#" onclick="submitEditEntity();" class="WhiteLinks">Update > <span class="whitetext"> > <input name="image23" type="image" src="../../images/enter_arrow.jpg" border=none onclick="return false;"> > </span> > </a> > </td> > <bean:define id="editMap" name="entityForm" property="editMap"/> > <td nowrap> > <html:link page="/editEntity.do?method=getView&mode=modify" name="editMap" styleClass="WhiteLinks">Reset > <span class="whitetext"> > <input name="image2" type="image" src="../../images/enter_arrow.jpg" border=none onclick="return false;"> </span> > </html:link> > <td nowrap> > <html:link page="/manageEntity.do?method=getViewAll&mode=search&flag=cancel" styleClass="WhiteLinks">Cancel > <span class="whitetext"> > <input name="image22" type="image" src="../../images/enter_arrow.jpg" border=none onclick="return false;"> > </span> > </html:link> > </td> > </tr> > </table> > </td> > </tr> > </table> > </logic:equal> > <br> > <a id="ButtonSet1"></a> > </td> > </tr> > </table> > <html:hidden name="entityForm" property="addressId"/> > <input type="hidden" name="relManagerCheck"/> > <!--Motherbuild start --> > <html:hidden property="comingFrom" name="entityForm" > value="<%=comingFrom %>" /> > <!--Motherbuild end --> > </html:form> > </body> ></html>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1064932
: 862836 |
925646