140 lines
2.6 KiB
PHP
140 lines
2.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Form\MultiUpdate;
|
|
|
|
use App\Entity\Activity;
|
|
use App\Entity\Customer;
|
|
use App\Entity\Project;
|
|
use App\Entity\Tag;
|
|
use App\Entity\User;
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
|
|
/**
|
|
* @App\Validator\Constraints\TimesheetMultiUpdate
|
|
*/
|
|
class TimesheetMultiUpdateDTO extends MultiUpdateTableDTO
|
|
{
|
|
/**
|
|
* @var Tag[]|ArrayCollection|iterable
|
|
*/
|
|
private $tags = [];
|
|
/**
|
|
* @var bool
|
|
*/
|
|
private $replaceTags = false;
|
|
/**
|
|
* @var Customer|null
|
|
*/
|
|
private $customer;
|
|
/**
|
|
* @var Project|null
|
|
*/
|
|
private $project;
|
|
/**
|
|
* @var Activity|null
|
|
*/
|
|
private $activity;
|
|
/**
|
|
* @var User|null
|
|
*/
|
|
private $user;
|
|
/**
|
|
* @var bool|null
|
|
*/
|
|
private $exported = null;
|
|
|
|
public function getCustomer(): ?Customer
|
|
{
|
|
return $this->customer;
|
|
}
|
|
|
|
public function setCustomer(Customer $customer): TimesheetMultiUpdateDTO
|
|
{
|
|
$this->customer = $customer;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getProject(): ?Project
|
|
{
|
|
return $this->project;
|
|
}
|
|
|
|
public function setProject(Project $project): TimesheetMultiUpdateDTO
|
|
{
|
|
$this->project = $project;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getActivity(): ?Activity
|
|
{
|
|
return $this->activity;
|
|
}
|
|
|
|
public function setActivity(Activity $activity): TimesheetMultiUpdateDTO
|
|
{
|
|
$this->activity = $activity;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Tag[]|ArrayCollection|iterable
|
|
*/
|
|
public function getTags(): iterable
|
|
{
|
|
return $this->tags;
|
|
}
|
|
|
|
public function setTags(iterable $tags): TimesheetMultiUpdateDTO
|
|
{
|
|
$this->tags = $tags;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getUser(): ?User
|
|
{
|
|
return $this->user;
|
|
}
|
|
|
|
public function setUser(User $user): TimesheetMultiUpdateDTO
|
|
{
|
|
$this->user = $user;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function isExported(): ?bool
|
|
{
|
|
return $this->exported;
|
|
}
|
|
|
|
public function setExported(bool $exported): TimesheetMultiUpdateDTO
|
|
{
|
|
$this->exported = $exported;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function isReplaceTags(): bool
|
|
{
|
|
return $this->replaceTags;
|
|
}
|
|
|
|
public function setReplaceTags(bool $replaceTags): TimesheetMultiUpdateDTO
|
|
{
|
|
$this->replaceTags = $replaceTags;
|
|
|
|
return $this;
|
|
}
|
|
}
|