HI,
I am not able to post into the bug tracker. I have found the following bug.
The date parameter in reports resets to blank after updating the parameter when generating the report. This bug is still inherited in 7.5.1 version.
The Solution could be: Please make following changes to file modules/AOW_WorkFlow/aow_utils.php on line 465.
} else if(isset( $fieldlist[$fieldname]['type'] ) && ($fieldlist[$fieldname]['type'] == 'datetimecombo' || $fieldlist[$fieldname]['type'] == 'datetime' || $fieldlist[$fieldname]['type'] == 'date')){
$value = $focus->convertField($value, $fieldlist[$fieldname]);
/* Bug: Only convert with to_display_date() if not in user date/datetime format */
if(!($timedate->check_matching_format($value, $timedate->get_date_format()) || $timedate->check_matching_format($value, $timedate->get_date_time_format())))
{
$value = $timedate->to_display_date($value);
}
/* Bug: Only convert with to_display_date() if not in user date/datetime format */
$fieldlist[$fieldname]['value'] = $value;
$fieldlist[$fieldname]['name'] = $aow_field;
}