Compare commits

...

4 Commits

4 changed files with 33 additions and 19 deletions

3
.changes/v2.6.2.md Normal file
View File

@@ -0,0 +1,3 @@
## v2.6.2 - 2023-09-18
### Fixed
* Fix doctrine mapping of AbstractTaskPlaceEvent and SingleTaskPlaceEvent: id property moved.

View File

@@ -6,6 +6,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie). and is generated by [Changie](https://github.com/miniscruff/changie).
## v2.6.2 - 2023-09-18
### Fixed
* Fix doctrine mapping of AbstractTaskPlaceEvent and SingleTaskPlaceEvent: id property moved.
## v2.6.1 - 2023-09-14 ## v2.6.1 - 2023-09-14
### Fixed ### Fixed
* Filter out active centers in exports, which uses a different PickCenterType. * Filter out active centers in exports, which uses a different PickCenterType.

View File

@@ -44,15 +44,6 @@ class AbstractTaskPlaceEvent
*/ */
private $datetime; private $datetime;
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/** /**
* @var string * @var string
* *
@@ -90,16 +81,6 @@ class AbstractTaskPlaceEvent
return $this->datetime; return $this->datetime;
} }
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
/** /**
* Get transition. * Get transition.
* *

View File

@@ -31,6 +31,15 @@ use Doctrine\ORM\Mapping as ORM;
*/ */
class SingleTaskPlaceEvent extends AbstractTaskPlaceEvent class SingleTaskPlaceEvent extends AbstractTaskPlaceEvent
{ {
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/** /**
* @var SingleTask * @var SingleTask
* @ORM\ManyToOne( * @ORM\ManyToOne(
@@ -51,4 +60,21 @@ class SingleTaskPlaceEvent extends AbstractTaskPlaceEvent
return $this; return $this;
} }
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
public function setId($id): self
{
$this->id = $id;
return $this;
}
} }