Skip to content

Commit

Permalink
[26100] fix Fall constructor init db values date format
Browse files Browse the repository at this point in the history
  • Loading branch information
huthomas authored and col-panic committed Jan 17, 2024
1 parent 7167359 commit da07b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundles/ch.elexis.core.data/src/ch/elexis/data/Fall.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ protected Fall(final String id) {
Abrechnungsmethode = Fall.getDefaultCaseLaw();
}
String[] fields = new String[] { FLD_PATIENT_ID, FLD_BEZEICHNUNG, FLD_GRUND, FLD_DATUM_VON, FLD_BILLINGSYSTEM };
String[] values = new String[] { PatientID, Bezeichnung, Grund, new TimeTool().toString(TimeTool.DATE_GER),
String[] values = new String[] { PatientID, Bezeichnung, Grund, new TimeTool().toString(TimeTool.DATE_COMPACT),
Abrechnungsmethode };
create(null, fields, values);
}
Expand Down

0 comments on commit da07b10

Please sign in to comment.