mirror of
https://github.com/wismna/DoNext.git
synced 2025-12-06 00:02:40 -05:00
Get overdue tasks excludes deleted tasks
This commit is contained in:
12
.idea/caches/deviceStreaming.xml
generated
12
.idea/caches/deviceStreaming.xml
generated
@@ -136,6 +136,18 @@
|
||||
<option name="screenX" value="1080" />
|
||||
<option name="screenY" value="2340" />
|
||||
</PersistentDeviceSelectionData>
|
||||
<PersistentDeviceSelectionData>
|
||||
<option name="api" value="35" />
|
||||
<option name="brand" value="samsung" />
|
||||
<option name="codename" value="a16" />
|
||||
<option name="id" value="a16" />
|
||||
<option name="labId" value="google" />
|
||||
<option name="manufacturer" value="Samsung" />
|
||||
<option name="name" value="SM-A165M" />
|
||||
<option name="screenDensity" value="450" />
|
||||
<option name="screenX" value="1080" />
|
||||
<option name="screenY" value="2340" />
|
||||
</PersistentDeviceSelectionData>
|
||||
<PersistentDeviceSelectionData>
|
||||
<option name="api" value="34" />
|
||||
<option name="brand" value="samsung" />
|
||||
|
||||
@@ -28,7 +28,7 @@ interface TaskListDao {
|
||||
END
|
||||
), 0) AS overdueCount
|
||||
FROM task_lists tl
|
||||
LEFT JOIN tasks t ON t.task_list_id = tl.id
|
||||
LEFT JOIN tasks t ON t.task_list_id = tl.id AND t.deleted = 0
|
||||
WHERE tl.deleted = 0
|
||||
GROUP BY tl.id
|
||||
ORDER BY tl.display_order ASC
|
||||
|
||||
Reference in New Issue
Block a user