APP合同变更附件上传依然有预警提示问题

This commit is contained in:
zhangjun 2020-08-13 13:31:20 +08:00
parent 5d0b4ab86c
commit 68e77cc9ab

View File

@ -55,6 +55,12 @@ public class DocListCheck extends DefaultBussinessCheck {
String sql="SELECT cust.CUSTOMERNAME,lib.DOC_NAME FROM LB_DOCRELATIVE rela LEFT JOIN LB_DOCLIBRARY lib ON rela.id=lib.relative_id"+
" left join customer_info cust on rela.cust_id=cust.customerid WHERE (lib.BUSINESS_CHECK not in ('DocCheck_0','DocCheck_1') or lib.BUSINESS_CHECK is null) AND lib.doc_nature in ('01','03') ";
if(this.getAttribute("FlowNo").toString().equals("BContractApproveFlow") ||
this.getAttribute("FlowNo").toString().equals("BusinessChangeFlow")){
sql+=" and rela.OBJECTTYPE = 'BusinessApplyFlow' ";
}
sql+=otherWhere+" and lib.doc_Class_Itemno in ("+docListNo+")";
Map<String,String> paramMap=new HashMap<String, String>();