bug: plan+task query producing multiple results (#68)
This commit is contained in:
parent
e0ad13ee6c
commit
7aa0059c96
2 changed files with 4 additions and 2 deletions
|
@ -38,7 +38,9 @@ defmodule Planner.Tasks do
|
||||||
t in Task,
|
t in Task,
|
||||||
join: pd in PlanDetail,
|
join: pd in PlanDetail,
|
||||||
on: t.id == pd.task_id,
|
on: t.id == pd.task_id,
|
||||||
where: (pd.plan_id == ^plan_id and is_nil(t.finished_at)) or t.id == ^task_id,
|
where: (pd.plan_id == ^plan_id and is_nil(t.finished_at))
|
||||||
|
or
|
||||||
|
(pd.plan_id == ^plan_id and t.id == ^task_id),
|
||||||
order_by: [desc: t.updated_at]
|
order_by: [desc: t.updated_at]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -187,7 +187,7 @@ defmodule PlannerWeb.TasksLive do
|
||||||
end
|
end
|
||||||
|
|
||||||
def handle_event("finish-task", %{"task-id" => task_id}, socket) do
|
def handle_event("finish-task", %{"task-id" => task_id}, socket) do
|
||||||
{_, task} = Tasks.finish_task_by_id!(task_id)
|
{_, _} = Tasks.finish_task_by_id!(task_id)
|
||||||
route = get_index_route(socket)
|
route = get_index_route(socket)
|
||||||
{:noreply, push_patch(socket, to: route)}
|
{:noreply, push_patch(socket, to: route)}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue