Advertisement
Aleksandr37rus

Untitled

Jul 19th, 2022
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.15 KB | None | 0 0
  1. @Override
  2.     public List<Object> getRegistry(String sub, String ticketP,
  3.                                                                     String extension_date, String req_num,
  4.                                                                     String execution_date, String executor,
  5.                                                                     String inn_company, String  performer_status) {
  6.         List<String> all = new ArrayList<>();
  7.             if (sub != null && !sub.equals("")){
  8.                 all.add(sub);
  9.             }
  10.             if (ticketP != null && !ticketP.equals("")){
  11.                 all.add(ticketP);
  12.             }
  13.             if (extension_date != null && !extension_date.equals("")){
  14.                 all.add(extension_date);
  15.             }
  16.             if (req_num != null && !req_num.equals("")){
  17.                 all.add(req_num);
  18.             }
  19.             if (execution_date != null && !execution_date.equals("")){
  20.                 all.add(extension_date);
  21.             }
  22.             if (executor != null && !executor.equals("")){
  23.                 all.add(executor);
  24.             }
  25.             if (inn_company != null && !inn_company.equals("")){
  26.                 all.add(inn_company);
  27.             }
  28.             if (performer_status != null && !performer_status.equals("")){
  29.                 all.add(performer_status);
  30.             }
  31.  
  32.         if (sub !=  null){
  33.                 UUID idSub = iSubsidiary.findByFullName(sub).getId();
  34.                 return iRequirements.getAllByIdSub(idSub);
  35.         }else {
  36.             return iRequirements.getAlls();
  37.         }
  38.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement