This commit is contained in:
2021-01-01 20:55:20 +00:00
parent 2faf3f2f10
commit 2d9e657dab

View File

@@ -5,6 +5,13 @@
MISC ITEMS THAT CAME UP
todo: large number of units = timeout on list view
this query:
SELECT COUNT(*) from aunit left outer join acustomer on (aunit.customerid=acustomer.id) left outer join aunit as aparentunit on (aunit.parentunitid=aunit.id) left outer join aunitmodel on (aunit.unitmodelid=aunitmodel.id) left outer join avendor on (aunit.purchasedfromvendorid=avendor.id) left outer join aunit as areplacedbyunit on (aunit.replacedbyunitid=aunit.id)
Figure it out
todo: Join filters make a huge difference in speed of datalist queries (and anything else when working with huge data)
todo: Notification at server has NotifyDeliveryLog object unused and no UI at from for it either
it's supposed to keep a set queue of the past 90 days of deliveries for troubleshooting like in v7,
I see it in corejobsweeper already implemented for clearing out but nothing is creating them