Recalculate chore assignments when undoing an execution (fixes #2278)

This commit is contained in:
Bernd Bestel
2023-07-29 13:49:14 +02:00
parent 78e4e918c6
commit f6d6e933e3
2 changed files with 3 additions and 0 deletions

View File

@@ -243,6 +243,8 @@ class ChoresService extends BaseService
'undone' => 1,
'undone_timestamp' => date('Y-m-d H:i:s')
]);
$this->CalculateNextExecutionAssignment($logRow->chore_id);
}
public function MergeChores(int $choreIdToKeep, int $choreIdToRemove)