169 lines
3.1 KiB
PHP
169 lines
3.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai package.
|
|
*
|
|
* (c) Kevin Papst <kevin@kevinpapst.de>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Repository\Query;
|
|
|
|
use App\Entity\User;
|
|
use App\Repository\Query\BaseQuery;
|
|
use App\Entity\Activity;
|
|
use App\Entity\Customer;
|
|
use App\Entity\Project;
|
|
|
|
/**
|
|
* Can be used for advanced timesheet repository queries.
|
|
*
|
|
* @author Kevin Papst <kevin@kevinpapst.de>
|
|
*/
|
|
class TimesheetQuery extends BaseQuery
|
|
{
|
|
|
|
const STATE_ALL = 1;
|
|
const STATE_RUNNING = 2;
|
|
const STATE_STOPPED = 3;
|
|
|
|
/**
|
|
* Overwritten for different default order
|
|
* @var string
|
|
*/
|
|
protected $order = self::ORDER_DESC;
|
|
/**
|
|
* Overwritten for different default order
|
|
* @var string
|
|
*/
|
|
protected $orderBy = 'begin';
|
|
/**
|
|
* @var User
|
|
*/
|
|
protected $user;
|
|
/**
|
|
* @var Activity
|
|
*/
|
|
protected $activity;
|
|
/**
|
|
* @var Project
|
|
*/
|
|
protected $project;
|
|
/**
|
|
* @var Customer
|
|
*/
|
|
protected $customer;
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $state = self::STATE_ALL;
|
|
|
|
/**
|
|
* @return User
|
|
*/
|
|
public function getUser()
|
|
{
|
|
return $this->user;
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
* @return TimesheetQuery
|
|
*/
|
|
public function setUser(User $user = null)
|
|
{
|
|
$this->user = $user;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Activity overwrites: setProject() and setCustomer()
|
|
*
|
|
* @return Activity
|
|
*/
|
|
public function getActivity()
|
|
{
|
|
return $this->activity;
|
|
}
|
|
|
|
/**
|
|
* @param Activity $activity
|
|
* @return TimesheetQuery
|
|
*/
|
|
public function setActivity(Activity $activity = null)
|
|
{
|
|
$this->activity = $activity;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Project
|
|
*/
|
|
public function getProject()
|
|
{
|
|
return $this->project;
|
|
}
|
|
|
|
/**
|
|
* Project overwrites: setCustomer()
|
|
* Is overwritten by: setActivity()
|
|
*
|
|
* @param Project $project
|
|
* @return TimesheetQuery
|
|
*/
|
|
public function setProject(Project $project = null)
|
|
{
|
|
$this->project = $project;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Customer
|
|
*/
|
|
public function getCustomer()
|
|
{
|
|
return $this->customer;
|
|
}
|
|
|
|
/**
|
|
* Project overwrites: none
|
|
* Is overwritten by: setActivity() and setProject()
|
|
*
|
|
* @param Customer $customer
|
|
* @return TimesheetQuery
|
|
*/
|
|
public function setCustomer(Customer $customer = null)
|
|
{
|
|
$this->customer = $customer;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getState()
|
|
{
|
|
return $this->state;
|
|
}
|
|
|
|
/**
|
|
* @param int $state
|
|
* @return TimesheetQuery
|
|
*/
|
|
public function setState($state)
|
|
{
|
|
if (!is_int($state) && $state != (int) $state) {
|
|
return $this;
|
|
}
|
|
|
|
$state = (int) $state;
|
|
if (in_array($state, [self::STATE_ALL, self::STATE_RUNNING, self::STATE_STOPPED], true)) {
|
|
$this->state = $state;
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
}
|