1.通用产品的风险预警。

This commit is contained in:
zhangbb 2019-08-29 11:00:33 +08:00
parent 1cfb6724c1
commit 60ccfe9be1

View File

@ -18,7 +18,12 @@ public class ClcNumberCheck extends DefaultBussinessCheck {
//自动获得传入的参数值
String flowunid=this.getAttribute("ObjectNo").toString();//获取流程编号
if(flowunid == null) flowunid = "";
String productId = Sqlca.getString("select product_id from lb_project_info_temp where flowunid='"+flowunid+"'");
if("currentProduct".equals(productId)){
setPass(true);
putMsg("通用产品");
return null;
}
//定义变量
String sSql = "";
ASResultSet rs=null;