接口平台审批意见推送

This commit is contained in:
lixuebo 2019-08-26 10:20:34 +08:00
parent e4f964f211
commit 89acf9e630
2 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,7 @@ public class GeneratePassOpinionLog 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();
@ -38,6 +39,7 @@ public class GeneratePassOpinionLog 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);

View File

@ -23,6 +23,7 @@ public class GenerateRejectOpinionLog 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();
@ -38,6 +39,7 @@ public class GenerateRejectOpinionLog 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);