From e4f964f2110c3a5c77348de91cdacb05b80eec1c Mon Sep 17 00:00:00 2001 From: lixuebo Date: Mon, 26 Aug 2019 10:13:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=B9=B3=E5=8F=B0=E4=B8=9A?= =?UTF-8?q?=E5=8A=A1=E7=94=B3=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebContent/WEB-INF/etc/jbo/jbo_sys.xml | 3 ++- .../flow/contract/commbusiness/GenerateBackOpinionLog.java | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/WebContent/WEB-INF/etc/jbo/jbo_sys.xml b/WebContent/WEB-INF/etc/jbo/jbo_sys.xml index 7358e735c..b4993fff5 100644 --- a/WebContent/WEB-INF/etc/jbo/jbo_sys.xml +++ b/WebContent/WEB-INF/etc/jbo/jbo_sys.xml @@ -3106,7 +3106,8 @@ - + + diff --git a/src_tenwa/com/tenwa/lease/flow/contract/commbusiness/GenerateBackOpinionLog.java b/src_tenwa/com/tenwa/lease/flow/contract/commbusiness/GenerateBackOpinionLog.java index e4083f248..022dc6fb4 100644 --- a/src_tenwa/com/tenwa/lease/flow/contract/commbusiness/GenerateBackOpinionLog.java +++ b/src_tenwa/com/tenwa/lease/flow/contract/commbusiness/GenerateBackOpinionLog.java @@ -22,6 +22,7 @@ public class GenerateBackOpinionLog extends BaseBussiness{ if(this.getAttribute("serial")==null)return "true"; + String channel = this.getAttribute("channel").toString(); String applyType = this.getAttribute("ApplyType").toString(); String flowunid = this.getAttribute("FlowUnid").toString(); String projectNo = this.getAttribute("ProjectNo").toString(); @@ -35,6 +36,7 @@ public class GenerateBackOpinionLog extends BaseBussiness{ BizObjectManager laolBm = JBOFactory.getBizObjectManager(LM_APPROVAL_OPINION_LOG.CLASS_NAME,Sqlca); BizObject laolbo = laolBm.newObject(); + laolbo.setAttributeValue("CHANNEL",channel); laolbo.setAttributeValue("APPLICATION_NO",applicationNo); laolbo.setAttributeValue("PROJECT_NO",projectNo); laolbo.setAttributeValue("FLOWUNID",flowunid);