You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ad...@apache.org on 2023/04/03 16:13:36 UTC

[fineract] branch develop updated: FINERACT-1724: Improvements for datatables and reporting

This is an automated email from the ASF dual-hosted git repository.

adamsaghy pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 94105f26e FINERACT-1724: Improvements for datatables and reporting
94105f26e is described below

commit 94105f26e6dd2eea8e402f1c412394e5d956f73a
Author: Adam Saghy <ad...@gmail.com>
AuthorDate: Mon Apr 3 16:48:50 2023 +0200

    FINERACT-1724: Improvements for datatables and reporting
---
 .../infrastructure/dataqueries/data/ResultsetColumnHeaderData.java   | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/fineract-provider/src/main/java/org/apache/fineract/infrastructure/dataqueries/data/ResultsetColumnHeaderData.java b/fineract-provider/src/main/java/org/apache/fineract/infrastructure/dataqueries/data/ResultsetColumnHeaderData.java
index 33c75219d..e8592ab86 100644
--- a/fineract-provider/src/main/java/org/apache/fineract/infrastructure/dataqueries/data/ResultsetColumnHeaderData.java
+++ b/fineract-provider/src/main/java/org/apache/fineract/infrastructure/dataqueries/data/ResultsetColumnHeaderData.java
@@ -176,8 +176,9 @@ public final class ResultsetColumnHeaderData implements Serializable {
     }
 
     private boolean isDateTime() {
-        return "datetime".equalsIgnoreCase(this.columnType) || "timestamp without time zone".equalsIgnoreCase(this.columnType)
-                || "timestamptz".equalsIgnoreCase(this.columnType) || "timestamp with time zone".equalsIgnoreCase(this.columnType);
+        return "datetime".equalsIgnoreCase(this.columnType) || "timestamp".equalsIgnoreCase(this.columnType)
+                || "timestamp without time zone".equalsIgnoreCase(this.columnType) || "timestamptz".equalsIgnoreCase(this.columnType)
+                || "timestamp with time zone".equalsIgnoreCase(this.columnType);
     }
 
     public boolean isString() {