소스 검색

Correct behavior when using items on date of purchase

Neal Wilson 10 년 전
부모
커밋
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…
취소
저장