Meeting Accept status is not displayed

Hi,
SuiteCRM Version 7.4.1
Meeting accept/decline/maybe is not diplayed.

Any other ?
One solution ?

Regards

Bump.

Maybe some one give me where to look

Regards

It is a bug, issue#743 on gitub.

A work around can be implemented by using process_record logic hooks and getting the status directly from the database.

example:

custom/modules/Leads/logic_hooks.php


$hook_array['process_record'] = Array();
$hook_array['process_record'][] = Array(1,'Update accept status','custom/modules/Leads/update_accept_status.php', 'update_accept_status_3','update_accept');

custom/modules/Leads/update_accept_status.php


class update_accept_status_3
{
    function update_accept($bean, $event, $arguments)
    {

        if($_REQUEST['module'] = "Meetings"){
            $sql = "SELECT accept_status FROM meetings_leads WHERE meeting_id = '".$_REQUEST['record']."' AND lead_id = '".$bean->id."'";
            $accept_status = $GLOBALS['db']->getOne($sql);
            $bean->accept_status_name = $accept_status;
        }

    }
}