Class ProcessSearchDAO

java.lang.Object
ru.bgcrm.dao.CommonDAO
org.bgerp.dao.process.ProcessSearchDAO
Direct Known Subclasses:
ProcessLinkProcessSearchDAO

public class ProcessSearchDAO extends CommonDAO
Fluent process search DAO.
  • Field Details

    • form

      protected final DynActionForm form
      User request context for isolations.
  • Constructor Details

  • Method Details

    • withOpen

      public ProcessSearchDAO withOpen(Boolean value)
      Filter by process closing date.
      Parameters:
      value - null - no filter, or process closing date not null.
      Returns:
    • withType

      public ProcessSearchDAO withType(Set<Integer> value)
      Filter by process type ID.
      Parameters:
      value - null or empty - no filter, or set with type IDs.
      Returns:
    • withStatus

      public ProcessSearchDAO withStatus(Set<Integer> value)
      Filter by process status ID.
      Parameters:
      value - null or empty - no filter, or set with status IDs.
      Returns:
    • withExcludeIds

      public ProcessSearchDAO withExcludeIds(Set<Integer> value)
      Excluded process IDs.
      Parameters:
      value - the process IDs.
      Returns:
    • withIdOrDescriptionLike

      public ProcessSearchDAO withIdOrDescriptionLike(String value)
      SQL LIKE expression for id or description.
      Parameters:
      value - the LIKE expression.
      Returns:
    • order

      public ProcessSearchDAO order(Order value)
      Selection order.
      Parameters:
      value - enum value.
      Returns:
    • search

      public void search(Pageable<Process> result) throws SQLException
      Queries processes.
      Parameters:
      result - pageable result.
      Throws:
      SQLException
    • filterOpen

      protected void filterOpen(PreparedQuery pq)
    • filterType

      protected void filterType(PreparedQuery pq)
    • filterStatus

      protected void filterStatus(PreparedQuery pq)
    • order

      protected void order(PreparedQuery pq)