李宇
2021-04-09 dac136a54c51842a9cd9abd97c236b43cb48d169
src/main/java/com/nanometer/smartlab/controller/OpeUseFlowInfoController.java
@@ -47,6 +47,8 @@
   private Hashtable printTable;
   private String containerCode;
   public String getHouseName() {
      return houseName;
   }
@@ -98,10 +100,10 @@
                  Map<String, Object> filters) {
               List<OpeUseFlow> list = null;
               try {
                  int count = opeUseFlowService.getOpeUseFlowTotalCountByName(houseName,reagentId, reagentCode, null, getUserId(),startDate,endDate);
                  int count = opeUseFlowService.getOpeUseFlowTotalCountByName(houseName,reagentId, reagentCode, containerCode,null, getUserId(),startDate,endDate);
                  this.setRowCount(count);
                  if (count > 0) {
                     list = opeUseFlowService.getOpeUseFlowListByName(houseName,reagentId, reagentCode, null, getUserId(),startDate,endDate, first, pageSize);
                     list = opeUseFlowService.getOpeUseFlowListByName(houseName,reagentId, reagentCode, containerCode,null, getUserId(),startDate,endDate, first, pageSize);
                  }
               } catch (Exception e) {
                  logger.error(e);
@@ -227,4 +229,12 @@
   public void setPrintTable(Hashtable printTable) {
      this.printTable = printTable;
   }
   public String getContainerCode() {
      return containerCode;
   }
   public void setContainerCode(String containerCode) {
      this.containerCode = containerCode;
   }
}