Notes |
|
(0006480)
|
user71
|
2005-06-01 00:00
(edited on: 2008-06-12 09:43) |
|
|
|
(0003567)
|
Dowid
|
2008-04-17 10:00
(edited on: 2008-06-12 09:25) |
|
Logged In: YES
user_id=1630374
Originator: YES
The reason of this bug is logic error in ReportOffer_Data.xsql
in the Select method:
Part of code:
AND DATEFROM <= TO_DATE(?)
AND (DATETO IS NULL OR DATETO >= TO_DATE(?))
Should be:
AND DATEFROM >= TO_DATE(?)
AND (DATETO IS NULL OR DATETO <= TO_DATE(?)) |
|
|
(0003568)
|
Dowid
|
2008-04-17 10:06
(edited on: 2008-06-12 09:25) |
|
Logged In: YES
user_id=1630374
Originator: YES
There is one more problem that I've found in this report.
The Calendar popup is in Spanish when you login in English. |
|
|
(0003569)
|
pheenan
|
2008-04-23 12:23
(edited on: 2008-06-12 09:25) |
|
Logged In: YES
user_id=1883435
Originator: NO
Fixed date filtering. Committed in revision 3728 in trunk. Backported in revision 3729 in branch 2.3x |
|