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

appointment comment added

parent b5847bc9
No related branches found
No related tags found
1 merge request!1Appointments dev
......@@ -9,12 +9,14 @@ public class AppointmentSqlExporter extends SqlExporter {
result.append("datetime_when, ");
result.append("length, ");
result.append("is_finished, ");
result.append("comment, ");
result.append("visit_id) ");
result.append("values (");
result.append(getStringVal(appointment.getDay() + " " + appointment.getTime()) + ",");
result.append(getStringVal(appointment.getDuration()) + ",");
result.append(isFinished + ",");
result.append(getStringVal(appointment.getSource()) + ",");
result.append("(select max(id) from web_visit)");
result.append(");");
......
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