|
|
@@ -441,7 +441,11 @@ class report {
|
|
|
$temp['field'] = $filed['field_display_name'];
|
|
|
$temp['title'] = $filed['field_display_name_user'];
|
|
|
$temp['type'] = $filed['field_db'] == "Status" ? "status" : "normal";
|
|
|
- $temp['formatter'] = "";
|
|
|
+ if($filed['data_type'] == "date"){
|
|
|
+ $temp['formatter'] = "dateTime";
|
|
|
+ }else{
|
|
|
+ $temp['formatter'] = "";
|
|
|
+ }
|
|
|
$tableColumns[] = $temp;
|
|
|
}
|
|
|
$dataReturn['tableColumns'] = $tableColumns;
|