mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-16 05:14:35 +02:00
86 lines
2.4 KiB
PHP
86 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity\Parts\PartTraits;
|
|
|
|
use App\Entity\ProjectSystem\Project;
|
|
use App\Entity\ProjectSystem\ProjectBOMEntry;
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
use Doctrine\Common\Collections\Collection;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Serializer\Annotation\Groups;
|
|
|
|
trait ProjectTrait
|
|
{
|
|
/**
|
|
* @var Collection<ProjectBOMEntry> $project_bom_entries
|
|
*/
|
|
#[ORM\OneToMany(mappedBy: 'part', targetEntity: ProjectBOMEntry::class, cascade: ['remove'], orphanRemoval: true)]
|
|
protected Collection $project_bom_entries;
|
|
|
|
/**
|
|
* @var Project|null If a project is set here, then this part is special and represents the builds of a project.
|
|
*/
|
|
#[ORM\OneToOne(inversedBy: 'build_part', targetEntity: Project::class)]
|
|
#[ORM\JoinColumn]
|
|
protected ?Project $built_project = null;
|
|
|
|
/**
|
|
* Returns all ProjectBOMEntries that use this part.
|
|
*
|
|
* @phpstan-return Collection<int, ProjectBOMEntry>
|
|
*/
|
|
public function getProjectBomEntries(): Collection
|
|
{
|
|
return $this->project_bom_entries;
|
|
}
|
|
|
|
/**
|
|
* Checks whether this part represents the builds of a project
|
|
* @return bool True if it represents the builds, false if not
|
|
*/
|
|
#[Groups(['part:read'])]
|
|
public function isProjectBuildPart(): bool
|
|
{
|
|
return $this->built_project !== null;
|
|
}
|
|
|
|
/**
|
|
* Returns the project that this part represents the builds of, or null if it doesn't
|
|
*/
|
|
public function getBuiltProject(): ?Project
|
|
{
|
|
return $this->built_project;
|
|
}
|
|
|
|
|
|
/**
|
|
* Sets the project that this part represents the builds of
|
|
* @param Project|null $built_project The project that this part represents the builds of, or null if it is not a build part
|
|
*/
|
|
public function setBuiltProject(?Project $built_project): self
|
|
{
|
|
$this->built_project = $built_project;
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* Get all projects which uses this part.
|
|
*
|
|
* @return Project[] * all devices which uses this part as a one-dimensional array of Device objects
|
|
* (empty array if there are no ones)
|
|
* * the array is sorted by the devices names
|
|
*/
|
|
public function getProjects(): array
|
|
{
|
|
$projects = [];
|
|
|
|
foreach($this->project_bom_entries as $entry) {
|
|
$projects[] = $entry->getProject();
|
|
}
|
|
|
|
return $projects;
|
|
}
|
|
}
|