FIX: makes start/end date inclusives
This commit is contained in:
parent
b06ca4e2aa
commit
fe5a9058fe
|
@ -296,10 +296,9 @@ after_initialize do
|
||||||
]
|
]
|
||||||
|
|
||||||
values = []
|
values = []
|
||||||
|
|
||||||
values = PluginStoreRow.where(plugin_name: 'user_notes')
|
values = PluginStoreRow.where(plugin_name: 'user_notes')
|
||||||
.where("value::json->0->>'created_at'>?", report.start_date)
|
.where("value::json->0->>'created_at'>=?", report.start_date)
|
||||||
.where("value::json->0->>'created_at'<?", report.end_date)
|
.where("value::json->0->>'created_at'<=?", report.end_date)
|
||||||
.pluck(:value)
|
.pluck(:value)
|
||||||
|
|
||||||
values.each do |value|
|
values.each do |value|
|
||||||
|
|
Loading…
Reference in New Issue