YYC
2023-07-17 849e0634fab58695e6197b9b89e340b2791294ad
igds-inout/src/main/java/com/ld/igds/m/service/HPlanManageService.java
@@ -69,7 +69,16 @@
      this.pagingQuery(page, hql, count, args);
   }
    public List<InoutPlan> listPlan() {
        String hql = " from " + InoutPlan.class.getName()
                + " where companyId =:companyId and deptId =:deptId";
        Map<String, Object> args = new HashMap<String, Object>();
        args.put("companyId", ContextUtil.getCompanyId());
        args.put("deptId", ContextUtil.subDeptId(null));
        return this.query(hql, args);
    }
   public List<InoutPlanDetail> listPlanDetail(String planId) {