Fix bill edit submission group thing.

This commit is contained in:
James Cole
2020-10-19 18:28:39 +02:00
parent 2e3af087e8
commit 30f708ba7a

View File

@@ -89,23 +89,23 @@ class BillUpdateService
// new values // new values
$data['transaction_currency_name'] = $currency->name; $data['transaction_currency_name'] = $currency->name;
if (isset($data['name']) && '' !== (string) $data['name']) { if (isset($data['name']) && '' !== (string)$data['name']) {
$bill->name = $data['name']; $bill->name = $data['name'];
} }
if (isset($data['amount_min']) && '' !== (string) $data['amount_min']) { if (isset($data['amount_min']) && '' !== (string)$data['amount_min']) {
$bill->amount_min = $data['amount_min']; $bill->amount_min = $data['amount_min'];
} }
if (isset($data['amount_max']) && '' !== (string) $data['amount_max']) { if (isset($data['amount_max']) && '' !== (string)$data['amount_max']) {
$bill->amount_max = $data['amount_max']; $bill->amount_max = $data['amount_max'];
} }
if (isset($data['date']) && '' !== (string) $data['date']) { if (isset($data['date']) && '' !== (string)$data['date']) {
$bill->date = $data['date']; $bill->date = $data['date'];
} }
if (isset($data['repeat_freq']) && '' !== (string) $data['repeat_freq']) { if (isset($data['repeat_freq']) && '' !== (string)$data['repeat_freq']) {
$bill->repeat_freq = $data['repeat_freq']; $bill->repeat_freq = $data['repeat_freq'];
} }
if (isset($data['skip']) && '' !== (string) $data['skip']) { if (isset($data['skip']) && '' !== (string)$data['skip']) {
$bill->skip = $data['skip']; $bill->skip = $data['skip'];
} }
if (isset($data['active']) && is_bool($data['active'])) { if (isset($data['active']) && is_bool($data['active'])) {
@@ -119,13 +119,13 @@ class BillUpdateService
// update note: // update note:
if (isset($data['notes'])) { if (isset($data['notes'])) {
$this->updateNote($bill, (string) $data['notes']); $this->updateNote($bill, (string)$data['notes']);
} }
// update order. // update order.
// update the order of the piggy bank: // update the order of the piggy bank:
$oldOrder = (int) $bill->order; $oldOrder = (int)$bill->order;
$newOrder = (int) ($data['order'] ?? $oldOrder); $newOrder = (int)($data['order'] ?? $oldOrder);
if ($oldOrder !== $newOrder) { if ($oldOrder !== $newOrder) {
$this->updateOrder($bill, $oldOrder, $newOrder); $this->updateOrder($bill, $oldOrder, $newOrder);
} }
@@ -142,15 +142,27 @@ class BillUpdateService
$bill->objectGroups()->sync([$objectGroup->id]); $bill->objectGroups()->sync([$objectGroup->id]);
$bill->save(); $bill->save();
} }
return $bill;
} }
// remove if name is empty. Should be overruled by ID.
if ('' === $objectGroupTitle) {
$bill->objectGroups()->sync([]);
$bill->save();
}
// try also with ID: // try also with ID:
$objectGroupId = (int) ($data['object_group_id'] ?? 0); $objectGroupId = (int)($data['object_group_id'] ?? 0);
if (0 !== $objectGroupId) { if (0 !== $objectGroupId) {
$objectGroup = $this->findObjectGroupById($objectGroupId); $objectGroup = $this->findObjectGroupById($objectGroupId);
if (null !== $objectGroup) { if (null !== $objectGroup) {
$bill->objectGroups()->sync([$objectGroup->id]); $bill->objectGroups()->sync([$objectGroup->id]);
$bill->save(); $bill->save();
} }
return $bill;
}
if(0 === $objectGroupId) {
$bill->objectGroups()->sync([]);
$bill->save();
} }
return $bill; return $bill;