瀏覽代碼

Correct behavior when using items on date of purchase

Neal Wilson 11 年之前
父節點
當前提交
93b4008499
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      config/Reports/dailyproductiondetail.xml

+ 3
- 3
config/Reports/dailyproductiondetail.xml 查看文件

@@ -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)

Loading…
取消
儲存