timesheet export (#317)

* remove autocomplete for begin and end
* fix minute display in timesheet-edit form
* toolbar form label in separate row
* added export action
This commit is contained in:
Kevin Papst
2018-09-24 16:46:10 +02:00
committed by GitHub
parent 7bcd6a6382
commit 98dc38ed99
29 changed files with 422 additions and 95 deletions

View File

@@ -85,6 +85,14 @@ class Activity
*/
private $hourlyRate = null;
/**
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* @return Timesheet[]
*/
@@ -113,8 +121,6 @@ class Activity
}
/**
* Set name
*
* @param string $name
* @return Activity
*/
@@ -126,8 +132,6 @@ class Activity
}
/**
* Get name
*
* @return string
*/
public function getName()
@@ -136,8 +140,6 @@ class Activity
}
/**
* Set comment
*
* @param string $comment
* @return Activity
*/
@@ -149,8 +151,6 @@ class Activity
}
/**
* Get comment
*
* @return string
*/
public function getComment()
@@ -159,10 +159,7 @@ class Activity
}
/**
* Set visible
*
* @param bool $visible
*
* @return Activity
*/
public function setVisible($visible)
@@ -173,8 +170,6 @@ class Activity
}
/**
* Get visible
*
* @return bool
*/
public function getVisible()
@@ -182,16 +177,6 @@ class Activity
return $this->visible;
}
/**
* Get activity id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* @return float
*/