Skip to content
Snippets Groups Projects
Commit cb60e5fa authored by Piotr Gawron's avatar Piotr Gawron
Browse files

timezone info added to fix time zone related db issues

parent 9f29ecdc
No related branches found
No related tags found
1 merge request!1Appointments dev
......@@ -13,7 +13,7 @@ public class AppointmentSqlExporter extends SqlExporter {
result.append("visit_id) ");
result.append("values (");
result.append(getStringVal(appointment.getDay() + " " + appointment.getTime()) + ",");
result.append(getStringVal(appointment.getDay() + " " + appointment.getTime()+"+00") + ",");
result.append(getStringVal(appointment.getDuration()) + ",");
result.append(isFinished + ",");
result.append(getStringVal(appointment.getSource()) + ",");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment