From e89cf62784a99aba9e5a694372e769d2faa2442d Mon Sep 17 00:00:00 2001 From: maliang Date: Thu, 5 Nov 2020 13:51:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=A1=E5=AE=A1=E8=B4=9F=E8=B4=A3?= =?UTF-8?q?=E4=BA=BA=E5=A4=9A=E6=AC=A1=E9=80=80=E5=9B=9E=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=E6=8F=90=E4=BA=A4=E5=87=BA=E9=94=99=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E8=A7=A3=E5=86=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebContent/Common/WorkFlow/FlowSubmitDialog.jsp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/WebContent/Common/WorkFlow/FlowSubmitDialog.jsp b/WebContent/Common/WorkFlow/FlowSubmitDialog.jsp index 1edf7547b..0b669243d 100644 --- a/WebContent/Common/WorkFlow/FlowSubmitDialog.jsp +++ b/WebContent/Common/WorkFlow/FlowSubmitDialog.jsp @@ -23,8 +23,17 @@ //获取信审意见 只要有一个意见为拒绝的,就不允许直接结束 String choice=""; if ("BusinessApplyFlow".equals(flowNo)&&("0040".equals(phaseNo)||"0050".equals(phaseNo)||"0060".equals(phaseNo))){ - choice = Sqlca.getString("select CONCAT(IFNULL(v.FIRSTCHOICE,','),',',IFNULL(v.SECONDCHOICE,','),',',IFNULL(v.THIRDCHOICE,',')) choice" + + + if("0050".equals(phaseNo)){ + choice = Sqlca.getString("select CONCAT(IFNULL(v.FIRSTCHOICE,','),',',IFNULL(v.SECONDCHOICE,',')) choice" + " from VI_PROJECTINFO_BUSINESS v, flow_task t where t.serialno='"+taskNo+"' and v.FLOWUNID=t.objectno"); + } + + if("0060".equals(phaseNo)){ + choice = Sqlca.getString("select CONCAT(IFNULL(v.FIRSTCHOICE,','),',',IFNULL(v.SECONDCHOICE,','),',',IFNULL(v.THIRDCHOICE,',')) choice" + + " from VI_PROJECTINFO_BUSINESS v, flow_task t where t.serialno='"+taskNo+"' and v.FLOWUNID=t.objectno"); + } + System.out.println(choice); // if (choice.contains("0010")){ // choice="审批意见为拒绝,流程不允许直接结束!"; // }else{