Skip to content
This repository was archived by the owner on Sep 12, 2024. It is now read-only.

Commit d607c52

Browse files
committed
Merge branch 'release/2.0.1'
2 parents efebf7d + fd14f5d commit d607c52

File tree

4 files changed

+8
-165
lines changed

4 files changed

+8
-165
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ Versioning](https://semver.org/spec/v2.0.0.html).
99

1010
## [Unreleased]
1111

12+
## [2.0.1] - 2023-02-27
13+
1214
### Changed
1315

1416
- Upgraded to LexikFormFilterBundle v7
17+
- Removed use of undefined method `Kontrolgruppen\CoreBundle\Entity\Process::getClient()`.
1518

1619
## [2.0.0] - 2023-02-21
1720

@@ -181,7 +184,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
181184

182185
- [KON-361](https://github.com/aakb/kontrolgruppen/pull/81): Changed datepicker
183186

184-
[Unreleased]: https://github.com/itk-dev/kontrolgruppen/compare/2.0.0...HEAD
187+
[Unreleased]: https://github.com/itk-dev/kontrolgruppen/compare/2.0.1...HEAD
188+
[2.0.1]: https://github.com/itk-dev/kontrolgruppen/compare/2.0.0...2.0.1
185189
[2.0.0]: https://github.com/itk-dev/kontrolgruppen/compare/1.12.2...2.0.0
186190
[1.12.2]: https://github.com/itk-dev/kontrolgruppen/compare/1.12.0...1.12.2
187191
[1.12.0]: https://github.com/itk-dev/kontrolgruppen/compare/1.11.5...1.12.0

core/Controller/ClientController.php

-161
This file was deleted.

core/Entity/AbstractProcessClient.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -347,8 +347,8 @@ public function removeCar(Car $car): self
347347
if ($this->cars->contains($car)) {
348348
$this->cars->removeElement($car);
349349
// set the owning side to null (unless already changed)
350-
if ($car->getClient() === $this) {
351-
$car->setClient(null);
350+
if ($car->getProcessClient() === $this) {
351+
$car->setProcessClient(null);
352352
}
353353
}
354354

core/Export/KL/Export.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ private function getNewRow(Process $process, $serviceName)
179179
'channel' => $process->getChannel() ? $process->getChannel()->getName() : null,
180180
'processType' => $process->getProcessType() ? $process->getProcessType()->getName() : null,
181181
'service' => $serviceName,
182-
'clientHasOwnCompany' => $this->formatBooleanYesNoNull($process->getClient()->getHasOwnCompany()),
182+
'clientHasOwnCompany' => $this->formatBooleanYesNoNull($process->getProcessClient()->getHasOwnCompany()),
183183
'performedCompanyCheck' => $this->formatBooleanYesNoNull($process->getPerformedCompanyCheck()),
184184
'repaymentSum' => 0.0,
185185
'futureSavingsSum' => 0.0,

0 commit comments

Comments
 (0)