From 60ccfe9be1bc0ee3a7145de49d25f5bd4b6653a4 Mon Sep 17 00:00:00 2001 From: zhangbb Date: Thu, 29 Aug 2019 11:00:33 +0800 Subject: [PATCH] =?UTF-8?q?1.=E9=80=9A=E7=94=A8=E4=BA=A7=E5=93=81=E7=9A=84?= =?UTF-8?q?=E9=A3=8E=E9=99=A9=E9=A2=84=E8=AD=A6=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../tenwa/lease/flow/project/commcheck/ClcNumberCheck.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src_tenwa/com/tenwa/lease/flow/project/commcheck/ClcNumberCheck.java b/src_tenwa/com/tenwa/lease/flow/project/commcheck/ClcNumberCheck.java index 074390cca..aafbd28e2 100644 --- a/src_tenwa/com/tenwa/lease/flow/project/commcheck/ClcNumberCheck.java +++ b/src_tenwa/com/tenwa/lease/flow/project/commcheck/ClcNumberCheck.java @@ -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;