直营店逻辑修改-自营字段取值修改

This commit is contained in:
zhanglei 2021-03-22 13:41:10 +08:00
parent e91d00130c
commit 697268f77a
2 changed files with 3 additions and 3 deletions

View File

@ -131,7 +131,7 @@
function checkDispalyDistributor() {
var distributorNo22 = "<%=distributorNo%>";
var distributorType22 = "<%=distributorType%>";
if(distributorType22 == "type03"){
if(distributorType22 == "types03"){
return true;
}
return false;

View File

@ -123,7 +123,7 @@ public class LBProjectIntoTempInitCarBusiness extends BaseBussiness {
BizObject distributorBo = JBOFactory.createBizObjectQuery(DISTRIBUTOR_INFO.CLASS_NAME,"orgid=:orgid").setParameter("orgid",deptid).getSingleResult(false);
String distributorType = distributorBo.getAttribute("TYPE").toString();
if((this.getAttribute("operationType") != null && "BAIC_MOTOR".equals(this.getAttribute("operationType").toString()))
|| "type03".equals(distributorType)){//×ÔÓªµê
|| "types03".equals(distributorType)){//×ÔÓªµê
distributoIid=this.getAttribute("distributorNo").toString();
vndrName=this.getAttribute("distributorName").toString();
}else{
@ -197,7 +197,7 @@ public class LBProjectIntoTempInitCarBusiness extends BaseBussiness {
BizObject distributorBo = JBOFactory.createBizObjectQuery(DISTRIBUTOR_INFO.CLASS_NAME,"orgid=:orgid").setParameter("orgid",deptid).getSingleResult(false);
String fiType = distributorBo.getAttribute("TYPE").toString();
if((this.getAttribute("operationType") != null && "BAIC_MOTOR".equals(this.getAttribute("operationType").toString()))
|| "type03".equals(fiType)){//×ÔÓªµê
|| "types03".equals(fiType)){//×ÔÓªµê
distributoIid=this.getAttribute("distributorNo").toString();
vndrName=this.getAttribute("distributorName").toString();
}else{