|
|
|
@ -50,8 +50,8 @@ public class AppQueryBean {
|
|
|
|
|
if (end != null) {
|
|
|
|
|
DateTime toDate = DateTime.parse(end, DateTimeFormat.forPattern("yyyyMMdd"))
|
|
|
|
|
.withZoneRetainFields(DateTimeZone.forTimeZone(TimeZone.getTimeZone(StringUtils.isNotBlank(timezone)?timezone:"Australia/Melbourne"))).withZone(DateTimeZone.getDefault());
|
|
|
|
|
params.put("end", toDate.toDate());
|
|
|
|
|
params.put("to", toDate.toDate());
|
|
|
|
|
params.put("end", DateUtils.addDays(toDate.toDate(), 1));
|
|
|
|
|
params.put("to", DateUtils.addDays(toDate.toDate(), 1));
|
|
|
|
|
}
|
|
|
|
|
if (gateway != null && gateway.length > 0) {
|
|
|
|
|
List<Integer> tradeTypes = new ArrayList<>();
|
|
|
|
|