140 lines
3.9 KiB
PHP
140 lines
3.9 KiB
PHP
<?php
|
||
/************************************************************************
|
||
* This file is part of EspoCRM.
|
||
*
|
||
* EspoCRM – Open Source CRM application.
|
||
* Copyright (C) 2014-2024 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
|
||
* Website: https://www.espocrm.com
|
||
*
|
||
* This program is free software: you can redistribute it and/or modify
|
||
* it under the terms of the GNU Affero General Public License as published by
|
||
* the Free Software Foundation, either version 3 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU Affero General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU Affero General Public License
|
||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
*
|
||
* The interactive user interfaces in modified source and object code versions
|
||
* of this program must display Appropriate Legal Notices, as required under
|
||
* Section 5 of the GNU Affero General Public License version 3.
|
||
*
|
||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
||
************************************************************************/
|
||
|
||
namespace Espo\Modules\Crm\Entities;
|
||
|
||
use Espo\Core\Field\DateTime;
|
||
use Espo\Core\Field\Link;
|
||
use Espo\Core\Field\LinkMultiple;
|
||
|
||
class Lead extends \Espo\Core\Entities\Person
|
||
{
|
||
public const ENTITY_TYPE = 'Lead';
|
||
|
||
public const STATUS_NEW = 'New';
|
||
public const STATUS_ASSIGNED = 'Assigned';
|
||
public const STATUS_IN_PROCESS = 'In Process';
|
||
public const STATUS_CONVERTED = 'Converted';
|
||
public const STATUS_RECYCLED = 'Recycled';
|
||
public const STATUS_DEAD = 'Dead';
|
||
|
||
public function getStatus(): ?string
|
||
{
|
||
return $this->get('status');
|
||
}
|
||
|
||
/**
|
||
* @return ?string
|
||
*/
|
||
protected function _getName()
|
||
{
|
||
if (!$this->hasInContainer('name') || !$this->getFromContainer('name')) {
|
||
if ($this->get('accountName')) {
|
||
return $this->get('accountName');
|
||
}
|
||
|
||
if ($this->get('emailAddress')) {
|
||
return $this->get('emailAddress');
|
||
}
|
||
|
||
if ($this->get('phoneNumber')) {
|
||
return $this->get('phoneNumber');
|
||
}
|
||
}
|
||
|
||
return $this->getFromContainer('name');
|
||
}
|
||
|
||
/**
|
||
* @return bool
|
||
*/
|
||
protected function _hasName()
|
||
{
|
||
if ($this->hasInContainer('name')) {
|
||
return true;
|
||
}
|
||
|
||
if ($this->has('accountName')) {
|
||
return true;
|
||
}
|
||
|
||
if ($this->has('emailAddress')) {
|
||
return true;
|
||
}
|
||
|
||
if ($this->has('phoneNumber')) {
|
||
return true;
|
||
}
|
||
|
||
return false;
|
||
}
|
||
|
||
public function getCampaign(): ?Link
|
||
{
|
||
/** @var ?Link */
|
||
return $this->getValueObject('campaign');
|
||
}
|
||
|
||
public function getAssignedUser(): ?Link
|
||
{
|
||
/** @var ?Link */
|
||
return $this->getValueObject('assignedUser');
|
||
}
|
||
|
||
public function getTeams(): LinkMultiple
|
||
{
|
||
/** @var LinkMultiple */
|
||
return $this->getValueObject('teams');
|
||
}
|
||
|
||
public function getCreatedAccount(): ?Link
|
||
{
|
||
/** @var ?Link */
|
||
return $this->getValueObject('createdAccount');
|
||
}
|
||
|
||
public function getCreatedContact(): ?Link
|
||
{
|
||
/** @var ?Link */
|
||
return $this->getValueObject('createdContact');
|
||
}
|
||
|
||
public function getCreatedOpportunity(): ?Link
|
||
{
|
||
/** @var ?Link */
|
||
return $this->getValueObject('createdOpportunity');
|
||
}
|
||
|
||
public function getConvertedAt(): ?DateTime
|
||
{
|
||
/** @var ?DateTime */
|
||
return $this->getValueObject('convertedAt');
|
||
}
|
||
}
|