OEModule\PatientTicketing\models\Ticket::getReport PHP 메소드

getReport() 공개 메소드

Convenience function to accese ticket report field.
public getReport ( ) : mixed
리턴 mixed
    public function getReport()
    {
        foreach ($this->reversed_queue_assignments as $ass) {
            if ($ass->report) {
                return $ass->report;
            }
        }
        return '';
    }