单据审批处理时获取提交审批处理的结果

来源:互联网 发布:php 下载zip文件 编辑:程序博客网 时间:2024/04/29 18:39
if(this.getUIContext().get("Owner") instanceof MultiApproveUI) {    MultiApproveUI ma = (MultiApproveUI)this.getUIContext().get("Owner");   Boolean resultValue=new Boolean(false);   Object object = ma.getBillUI().getUIContext().get("approveIsPass");    if(object != null) { resultValue = (Boolean)object;}    boolean isPass=resultValue.booleanValue();   if(isPass){   }}

阅读全文
0 0
原创粉丝点击