test代码补齐

release
yishiqihuasheng 2 years ago
parent 917967f819
commit fc03274586
  1. 14
      dxhy-core/src/main/java/com/dxhy/core/controller/ExcelController.java

@ -231,7 +231,19 @@ public class ExcelController extends AbstractController {
String newCondition = prams.toString(); String newCondition = prams.toString();
pramsMap.put("conditions", newCondition); pramsMap.put("conditions", newCondition);
} else { } else {
prams.put("gfsh", gfsh); String gfmc = "";
List<Tax> org = getUserInfo().getOrg();
if (org != null && org.size() > 0) {
for (Tax tax : org) {
if (tax.getTaxno().equals(gfsh)) {
gfmc = tax.getTaxname();
}
}
}
prams.put("gfmc", gfmc);
prams.put("gfsh",gfsh);
String newCondition = prams.toString();
pramsMap.put("conditions", newCondition);
} }
} else { } else {
pramsMap.put("conditions", condition); pramsMap.put("conditions", condition);

Loading…
Cancel
Save