Initial commit
This commit is contained in:
200
application/Espo/Modules/Crm/Entities/Lead.php
Normal file
200
application/Espo/Modules/Crm/Entities/Lead.php
Normal file
@@ -0,0 +1,200 @@
|
||||
<?php
|
||||
/************************************************************************
|
||||
* This file is part of EspoCRM.
|
||||
*
|
||||
* EspoCRM – Open Source CRM application.
|
||||
* Copyright (C) 2014-2025 EspoCRM, Inc.
|
||||
* 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\Entities\Person;
|
||||
use Espo\Core\Field\DateTime;
|
||||
use Espo\Core\Field\Link;
|
||||
use Espo\Core\Field\LinkMultiple;
|
||||
use Espo\Core\Name\Field;
|
||||
use Espo\Entities\User;
|
||||
|
||||
class Lead extends 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 get(string $attribute): mixed
|
||||
{
|
||||
if ($attribute === Field::NAME) {
|
||||
return $this->getNameInternal();
|
||||
}
|
||||
|
||||
return parent::get($attribute);
|
||||
}
|
||||
|
||||
public function has(string $attribute): bool
|
||||
{
|
||||
if ($attribute === Field::NAME) {
|
||||
return $this->hasNameInternal();
|
||||
}
|
||||
|
||||
return parent::has($attribute);
|
||||
}
|
||||
|
||||
public function setDescription(?string $description): self
|
||||
{
|
||||
return $this->set('description', $description);
|
||||
}
|
||||
|
||||
public function getDescription(): ?string
|
||||
{
|
||||
return $this->get('description');
|
||||
}
|
||||
|
||||
public function getStatus(): ?string
|
||||
{
|
||||
return $this->get('status');
|
||||
}
|
||||
|
||||
private function getNameInternal(): ?string
|
||||
{
|
||||
if (!$this->hasInContainer(Field::NAME) || !$this->getFromContainer(Field::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(Field::NAME);
|
||||
}
|
||||
|
||||
private function hasNameInternal(): bool
|
||||
{
|
||||
if ($this->hasInContainer(Field::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(): ?Campaign
|
||||
{
|
||||
/** @var ?Campaign */
|
||||
return $this->relations->getOne('campaign');
|
||||
}
|
||||
|
||||
public function getAssignedUser(): ?Link
|
||||
{
|
||||
/** @var ?Link */
|
||||
return $this->getValueObject(Field::ASSIGNED_USER);
|
||||
}
|
||||
|
||||
public function getTeams(): LinkMultiple
|
||||
{
|
||||
/** @var LinkMultiple */
|
||||
return $this->getValueObject(Field::TEAMS);
|
||||
}
|
||||
|
||||
public function getCreatedAccount(): ?Account
|
||||
{
|
||||
/** @var ?Account */
|
||||
return $this->relations->getOne('createdAccount');
|
||||
}
|
||||
|
||||
public function getCreatedContact(): ?Contact
|
||||
{
|
||||
/** @var ?Contact */
|
||||
return $this->relations->getOne('createdContact');
|
||||
}
|
||||
|
||||
public function getCreatedOpportunity(): ?Opportunity
|
||||
{
|
||||
/** @var ?Opportunity */
|
||||
return $this->relations->getOne('createdOpportunity');
|
||||
}
|
||||
|
||||
public function getConvertedAt(): ?DateTime
|
||||
{
|
||||
/** @var ?DateTime */
|
||||
return $this->getValueObject('convertedAt');
|
||||
}
|
||||
|
||||
public function setStatus(string $status): self
|
||||
{
|
||||
$this->set('status', $status);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setCreatedAccount(Account|null $createdAccount): self
|
||||
{
|
||||
$this->relations->set('createdAccount', $createdAccount);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setAssignedUser(Link|User|null $assignedUser): self
|
||||
{
|
||||
return $this->setRelatedLinkOrEntity(Field::ASSIGNED_USER, $assignedUser);
|
||||
}
|
||||
|
||||
public function setTeams(LinkMultiple $teams): self
|
||||
{
|
||||
$this->setValueObject(Field::TEAMS, $teams);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setSource(?string $source): self
|
||||
{
|
||||
return $this->set('source', $source);
|
||||
}
|
||||
|
||||
public function setCampaign(Link|Campaign|null $campaign): self
|
||||
{
|
||||
return $this->setRelatedLinkOrEntity('campaign', $campaign);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user