history: fix start/end of the day calculation, apply local timezone

This commit is contained in:
xiphon 2019-08-13 14:25:16 +00:00
parent 55b4425c5d
commit 1ec22b3d0c

View file

@ -1361,8 +1361,9 @@ Rectangle {
// applying filters // applying filters
root.txData = JSON.parse(JSON.stringify(root.txModelData)); // deepcopy root.txData = JSON.parse(JSON.stringify(root.txModelData)); // deepcopy
var fromDate = fromDatePicker.currentDate.getTime() / 1000; const timezoneOffset = new Date().getTimezoneOffset() * 60;
var toDate = toDatePicker.currentDate.getTime() / 1000; var fromDate = Math.floor(fromDatePicker.currentDate.getTime() / 86400000) * 86400 + timezoneOffset;
var toDate = (Math.floor(toDatePicker.currentDate.getTime() / 86400000) + 1) * 86400 + timezoneOffset;
var txs = []; var txs = [];
for (var i = 0; i < root.txData.length; i++){ for (var i = 0; i < root.txData.length; i++){