Authored by lijian

非jit条码可以重复

... ... @@ -492,22 +492,26 @@ e.on("validate",function(){
__m[item.factoryCode]=true;
}
});
var ispass=true;
if(len==map3.length&&len==Object.keys(__m).length){
common.util.__ajax2({
url:'/product/checkSkuBarCodeExist',
async:false,
data:{barCode: JSON.stringify(map3)}
},function(res){
if(res.data.length){
ispass="商品条码"+res.data.join(',')+"已经存在";
}
},true);
}else{
ispass="商品条码不可为空或者条码重复";
}
if(common.util.__input("supplierId")){
if(len==map3.length&&len==Object.keys(__m).length){
common.util.__ajax2({
url:'/product/checkSkuBarCodeExist',
async:false,
data:{barCode: JSON.stringify(map3)}
},function(res){
if(res.data.length){
ispass="商品条码"+res.data.join(',')+"已经存在";
}
},true);
}else{
ispass="商品条码不可为空或者条码重复";
}
}else {
if(!(len==map3.length&&len==Object.keys(__m).length)){
ispass="商品条码不可为空";
}
}
return ispass;
}
});
... ...