|
@@ -319,10 +319,10 @@
|
319
|
319
|
{
|
320
|
320
|
output.writeStartElement("tr");
|
321
|
321
|
output.writeTextElement("td", query.value(1));
|
322
|
|
- qq = "SELECT balance FROM item_history(" + query.value(0) + ") WHERE time = (SELECT max(time) FROM all_transactions WHERE time < '" + dateString + "' AND item = " + query.value(0) + ") OR time = (SELECT max(time) FROM all_transactions WHERE time < '" + dateString + "'::date + integer '1' AND item = " + query.value(0) + ") ORDER BY time ASC";
|
|
322
|
+ qq = "SELECT balance FROM item_history(" + query.value(0) + ") WHERE time = (SELECT max(time) FROM all_transactions WHERE time <= '" + dateString + "' AND item = " + query.value(0) + ") OR time = (SELECT max(time) FROM all_transactions WHERE time < '" + dateString + "'::date + integer '1' AND item = " + query.value(0) + ") ORDER BY time ASC";
|
323
|
323
|
subQuery.exec(qq);
|
324
|
|
- var startValue = 0;
|
325
|
|
- var endValue = 0;
|
|
324
|
+ var startValue = "0.0";
|
|
325
|
+ var endValue = "0.0";
|
326
|
326
|
if(subQuery.next())
|
327
|
327
|
{
|
328
|
328
|
switch(unitBox.currentIndex)
|