Update Case Status On Contact Reply

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • marcbeinder
    Member
    • May 2018
    • 68

    Update Case Status On Contact Reply

    Is there a way to update a case's status when a contact replies. I have many custom statuses for cases, and when I'm waiting to hear back from a contact, I place the case into an "Awaiting Info" status.

    What I would like to have happen is when the case is in this status and the customer replies, the status is updated to "Open". I know how to write the workflow to change the status, I'm just not sure what event should be the trigger.

    Note: This should only happen when the contact replies to the case. If a user replies to the case, then this workflow should not trigger.
  • Kharg
    Senior Member
    • Jun 2021
    • 410

    #2
    If Contacts replies using mails you can use Advanced Pack Workflow
    Select ‘Note’ entity type.
    Add field ‘Type’ with the value ‘EmailReceived’.
    then you can add the action to change the related entity status value.

    Comment

    • eymen-elkum
      Active Community Member
      • Nov 2014
      • 472

      #3
      You can achieve this using formula, I am not sure why yuri disabled it for note entity, but you can access it using this link:

      https://{yourcrm.com}/#Admin/entityManager/formula&scope=Note

      Write this formula will help:

      Code:
      ifThen(
          parentType == 'Case' && createdBy.type == 'portal',
          record\update('Case', parentId, 'status', 'Client Replied');
      );​​
      CEO of Eblasoft
      EspoCRM Expert since 2014
      Full Stack Web Developer since 2008
      Creator of Numerous Successful Extensions & Projects​

      Comment

      • marcbeinder
        Member
        • May 2018
        • 68

        #4
        Awesome! Thank you guys!!

        Comment

        Working...