汽车类——新增业务申请,车辆属性和租赁方式从产品中带出
This commit is contained in:
parent
f2c88fae90
commit
0433c4d5f3
@ -117,11 +117,11 @@
|
||||
CustomerId=ceckRes;
|
||||
|
||||
if(carAttributes==""){
|
||||
alert("请选择车辆属性");
|
||||
alert("该产品未配置车辆属性,请完善或选择别的产品!");
|
||||
return;
|
||||
}
|
||||
if(leasehold==""){
|
||||
alert("请选择租赁方式");
|
||||
alert("该产品未配置租赁方式,请完善或选择别的产品!");
|
||||
return;
|
||||
}
|
||||
if(productModel==""){
|
||||
@ -291,7 +291,7 @@
|
||||
<%/*~[Describe=选择产品;]~*/%>
|
||||
function selectBusinessType()
|
||||
{
|
||||
var carAttr = false;
|
||||
/* var carAttr = false;
|
||||
var carAttributes = getItemValue(0,getRow(),"carAttributes");
|
||||
if(carAttributes){
|
||||
carAttr = true;
|
||||
@ -304,7 +304,7 @@
|
||||
lease = true;
|
||||
}else{
|
||||
lease = false;
|
||||
}
|
||||
} */
|
||||
var modelid = false;
|
||||
var model = getItemValue(0,getRow(),"modelid");
|
||||
if(model){
|
||||
@ -314,9 +314,9 @@
|
||||
}
|
||||
var CurOrgID=<%=CurOrg.getOrgID()%>;
|
||||
var YesNo="Y";
|
||||
if(modelid==true&&carAttr==true&&lease==true){
|
||||
if(modelid==true){
|
||||
modelid=getItemValue(0,getRow(),"modelid");
|
||||
AsDialog.OpenSelector("selectProductVersionInfo","carAttributes,"+carAttributes+",leasehold,"+leasehold+",modelid,"+modelid+",CurOrgID,"+CurOrgID+",YesNo,"+YesNo,"dialogWidth=" + parseInt(window.screen.width * 0.4) + "px dialogHeight=" + parseInt(window.screen.height * 0.5) + "px",
|
||||
AsDialog.OpenSelector("selectProductVersionInfo","attribute2,car_product,modelid,"+modelid+",CurOrgID,"+CurOrgID+",YesNo,"+YesNo,"dialogWidth=" + parseInt(window.screen.width * 0.4) + "px dialogHeight=" + parseInt(window.screen.height * 0.5) + "px",
|
||||
function(sReturn){
|
||||
if(!sReturn||sReturn=="_CANCEL_"||sReturn==""||sReturn=="_NONE_")
|
||||
{
|
||||
@ -338,18 +338,21 @@
|
||||
setItemValue(0,0,"productName",sReturn[2]);
|
||||
setItemValue(0,0,"productId",sReturn[3]);
|
||||
setItemValue(0,0,"versionid",sReturn[4]);
|
||||
setItemValue(0,0,"carAttributes",sReturn[9]);
|
||||
setItemValue(0,0,"leasehold",sReturn[10]);
|
||||
|
||||
},"请选择产品",'');
|
||||
}else{
|
||||
if(modelid){
|
||||
alert("请先选择车型");
|
||||
/*if(modelid){
|
||||
alert("请先选择车型");
|
||||
}
|
||||
if(carAttr==false){
|
||||
if(carAttr==false){
|
||||
alert("请先选择车辆属性");
|
||||
}
|
||||
if(lease==false){
|
||||
alert("请先选择租赁方式");
|
||||
}
|
||||
} */
|
||||
}
|
||||
|
||||
// if(carAttributes=='01'){
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user