This commit is contained in:
James Cole
2024-04-03 20:07:18 +02:00
parent 83de5667b3
commit 85b17e4035
2 changed files with 9 additions and 3 deletions

View File

@@ -72,6 +72,11 @@ class UpdateController extends Controller
app('log')->debug('Now in update routine for transaction group!');
$data = $request->getAll();
# Fixes 8750.
foreach($data['transactions'] as $index => $info) {
unset($data['transactions'][$index]['type']);
}
$transactionGroup = $this->groupRepository->update($transactionGroup, $data);
$manager = $this->getManager();