去除车架号校验

This commit is contained in:
tangfutang 2018-08-06 12:45:09 +08:00
parent 53a77b3fc7
commit 98d824a312
2 changed files with 4 additions and 2 deletions

View File

@ -200,9 +200,9 @@
setItemValue(0,getRow(),"FlowUnid",sFlowUnid);//³õʼ»¯Á÷³Ì±àºÅ
var framNum = getItemValue(0,getRow(0),"FRAME_NUMBER").length;
var plate_number = getItemValue(0,getRow(0),"LICENSE_PLATE_NUMBER");
if(framNum != "0" && checkFrameNumber()==false){
/* if(framNum != "0" && checkFrameNumber()==false){
return;
}
} */
var ApplyType = "<%=ApplyType%>";
if(plate_number!=null&&plate_number!=""){

View File

@ -1933,6 +1933,8 @@ public String claimSign(JBOTransaction tx) throws Exception {
BizObject cr = crManage.createQuery("CUSTOMERID=:customerid").setParameter("customerid", customerid).getSingleResult(false);
if(cr != null){
info = cr.getAttribute("FULLNAME").toString() + "@" + cr.getAttribute("mobile").toString()+"@"+flagType;
}else{
info = "flagType@flagType@"+flagType;
}
//获取需要盖章的文件信息
Map<String,ContractSignInfo> map=new HashMap<String,ContractSignInfo>();