Meetings: Assigned user not attending

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chrismc
    Member
    • Jun 2019
    • 47

    Meetings: Assigned user not attending

    Hi, we are working in a way that someone is organizing a meeting but is not attending. We want to assign a meeting to the one organizing but they should not appear in the attending list. Currently Espo is automatically adding the organizing / assigned person to be attending. Removing it does not work. Is there a way to do this?

    Thanks
    Christoph
  • yuri
    Member
    • Mar 2014
    • 8453

    #2
    Hi Christoph,

    If you have advanced pack you can try a workflow rule that will unrelated assigned user.

    Update Target Record Action with formula script:

    Code:
    ifThen(
      assignedUserId,
      record\unrelate('Meeting', id, 'users', assignedUserId)
    )
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • yuri
      Member
      • Mar 2014
      • 8453

      #3
      In 5.8.3 config param added. data/config.php:

      PHP Code:
      'eventAssignedUserIsAttendeeDisabled' => true, 
      

      Assigned user won't became an attendee automatically.
      If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

      Comment

      • chrismc
        Member
        • Jun 2019
        • 47

        #4
        Amazing, thanks!

        Comment

        Working...