Browse Source

额度申请 担保人为空不上传

koul 5 năm trước cách đây
mục cha
commit
03da3131e1

+ 1 - 3
src/main/java/com/uas/erp/schedular/finance/task/B2BInformation.java

@@ -257,9 +257,7 @@ public class B2BInformation  extends AbstractTask{
 		List<Map<String, Object>> maps = jdbcTemplate.queryForList("select * from (select cq_id,cq_factoruu," +
                 "cq_custuu,cq_custname,cq_effectdays,cq_quota,cq_lendrate,cq_annualrate," +
                 "cq_repaymentmeans,cq_recorderuu,cq_approval,cq_enddate,cq_basicevaluation,cq_code,cq_uinfo,CQ_DEPOSITRATE from " +
-                "customerQuota where " +
-				"CQ_UPLOADSTATUS='待上传' and cq_status = '已审核' and cq_quotatype='卖方客户' order by cq_code ) where rownum " +
-                "< 100");
+                "customerQuota where CQ_UPLOADSTATUS='待上传' and cq_status = '已审核' and cq_quotatype='卖方客户' and nvl(cq_assuremeans,' ')<>' ' order by cq_code ) where rownum < 100");
 		return maps;
 	}