Commit 3c8a0235 authored by chenhao's avatar chenhao

修改bug :4725

parent b621e1e2
......@@ -211,8 +211,13 @@ public class ExcelServiceImpl {
}
public void commonExport(HttpServletResponse response, ExcelDto excelDto, Map par) {
String bizOrgCode= getCurrentAllInfo().getPersonIdentity().getBizOrgCode();
boolean authFalg= false;
ReginParams reginParams= getCurrentAllInfo();
boolean authFalg= false;
if(reginParams ==null) {
authFalg=true;
}
String bizOrgCode = reginParams.getPersonIdentity().getBizOrgCode();
if(org.apache.commons.lang3.StringUtils.isBlank(bizOrgCode)){
authFalg=true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment