mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-09 18:04:33 +02:00
154 lines
3.9 KiB
PHP
154 lines
3.9 KiB
PHP
<?php
|
|
/**
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
*
|
|
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity\Parts\PartTraits;
|
|
|
|
use App\Entity\Parts\Part;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Serializer\Annotation\Groups;
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
|
|
/**
|
|
* Advanced properties of a part, not related to a more specific group.
|
|
*/
|
|
trait AdvancedPropertyTrait
|
|
{
|
|
/**
|
|
* @var bool Determines if this part entry needs review (for example, because it is work in progress)
|
|
* @ORM\Column(type="boolean")
|
|
* @Groups({"extended", "full", "import"})
|
|
*/
|
|
protected bool $needs_review = false;
|
|
|
|
/**
|
|
* @var string a comma separated list of tags, associated with the part
|
|
* @ORM\Column(type="text")
|
|
* @Groups({"extended", "full", "import"})
|
|
*/
|
|
protected string $tags = '';
|
|
|
|
/**
|
|
* @var float|null how much a single part unit weighs in grams
|
|
* @ORM\Column(type="float", nullable=true)
|
|
* @Assert\PositiveOrZero()
|
|
* @Groups({"extended", "full", "import"})
|
|
*/
|
|
protected ?float $mass = null;
|
|
|
|
/**
|
|
* @var string The internal part number of the part
|
|
* @ORM\Column(type="string", length=100, nullable=true, unique=true)
|
|
* @Assert\Length(max="100")
|
|
* @Groups({"extended", "full", "ipn"})
|
|
*/
|
|
protected ?string $ipn = null;
|
|
|
|
/**
|
|
* Checks if this part is marked, for that it needs further review.
|
|
*/
|
|
public function isNeedsReview(): bool
|
|
{
|
|
return $this->needs_review;
|
|
}
|
|
|
|
/**
|
|
* Sets the "needs review" status of this part.
|
|
*
|
|
* @param bool $needs_review The new status
|
|
*
|
|
* @return Part|self
|
|
*/
|
|
public function setNeedsReview(bool $needs_review): self
|
|
{
|
|
$this->needs_review = $needs_review;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets a comma separated list, of tags, that are assigned to this part.
|
|
*/
|
|
public function getTags(): string
|
|
{
|
|
return $this->tags;
|
|
}
|
|
|
|
/**
|
|
* Sets a comma separated list of tags, that are assigned to this part.
|
|
*
|
|
* @param string $tags The new tags
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setTags(string $tags): self
|
|
{
|
|
$this->tags = $tags;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Returns the mass of a single part unit.
|
|
* Returns null, if the mass is unknown/not set yet.
|
|
*/
|
|
public function getMass(): ?float
|
|
{
|
|
return $this->mass;
|
|
}
|
|
|
|
/**
|
|
* Sets the mass of a single part unit.
|
|
* Sett to null, if the mass is unknown.
|
|
*
|
|
* @param float|null $mass the new mass
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setMass(?float $mass): self
|
|
{
|
|
$this->mass = $mass;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Returns the internal part number of the part.
|
|
* @return string
|
|
*/
|
|
public function getIpn(): ?string
|
|
{
|
|
return $this->ipn;
|
|
}
|
|
|
|
/**
|
|
* Sets the internal part number of the part
|
|
* @param string $ipn The new IPN of the part
|
|
* @return Part
|
|
*/
|
|
public function setIpn(?string $ipn): Part
|
|
{
|
|
$this->ipn = $ipn;
|
|
return $this;
|
|
}
|
|
|
|
|
|
}
|