I can search tasks for not equal/like names

XMLWordPrintable

      Currently it is only possible to search for tasks with the given name or like the given name.
      It should also be possible to search for tasks, which have the name which is not equal to the given name. This should also be possible for not like.

      AT:

      • I can search for task which have names not equal to the given name
      • I can search for task which have names not like the given name

      Hint:

      TaskQuery#taskNameNotEqual(String) {
       notEqual=true
       taskName=taskName
      }
      
            <if test="name != null">
              and UPPER(RES.NAME_) <if test="notEquals">!</if>= UPPER(#{name})
            </if>
            <if test="nameLike != null">
              and UPPER(RES.NAME_) <if test="notLike">NOT</if> like UPPER(#{nameLike})
            </if>
      

        This is the controller panel for Smart Panels app

              Assignee:
              Roman Smirnov
              Reporter:
              Christopher Kujawa
              Votes:
              2 Vote for this issue
              Watchers:
              4 Start watching this issue

                Created:
                Updated:
                Resolved: