Skip to content
Snippets Groups Projects
Commit a28832e5 authored by Hugo's avatar Hugo
Browse files

log new reset

parent 55779530
No related branches found
No related tags found
1 merge request!4Dev
...@@ -145,6 +145,7 @@ async function buildAgregatedData(data, doctype) { ...@@ -145,6 +145,7 @@ async function buildAgregatedData(data, doctype) {
for (let [key, value] of Object.entries(data)) { for (let [key, value] of Object.entries(data)) {
const data = await buildDataFromKey(doctype, key, value) const data = await buildDataFromKey(doctype, key, value)
const oldValue = await resetInProgressAggregatedData(data, doctype) const oldValue = await resetInProgressAggregatedData(data, doctype)
log("debug", "Dataload + oldvalue is " + data.load + " + " + oldValue + " -- makes dataload : " + (data.load += oldValue))
data.load += oldValue data.load += oldValue
agregatedData.push(data) agregatedData.push(data)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment