Uploaded image for project: 'camunda BPM'
  1. camunda BPM
  2. CAM-7330

I can search tasks for not equal/like names

    XMLWordPrintable

Details

    Description

      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>
      

      mgm-controller-panel

        This is the controller panel for Smart Panels app

        Attachments

          Activity

            People

              roman.smirnov Roman Smirnov
              christopher.zell Christopher Kujawa
              Votes:
              2 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Salesforce