Skip to content

Commit 9363a45

Browse files
authored
Merge pull request #1602 from synthetichealth/fix1508
Fixes #1508
2 parents 7f899db + 6b796e7 commit 9363a45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/mitre/synthea/export/CSVExporter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ public void export(Person person, long time) throws IOException {
271271
cutOff = Calendar.getInstance();
272272
cutOff.set(cutOff.get(Calendar.YEAR) - yearsOfHistory, 0, 1);
273273
}
274-
CSVExporter.getInstance().exportPayerTransitions(person, cutOff.getTimeInMillis(), time);
274+
CSVExporter.getInstance().exportPayerTransitions(person, 0L, time);
275275
CSVExporter.getInstance().exportPatientExpenses(person, cutOff.getTimeInMillis(), time);
276276
Calendar now = Calendar.getInstance();
277277
Calendar birthDay = Calendar.getInstance();
@@ -1681,7 +1681,7 @@ public String toString() {
16811681
s.append(',');
16821682
// PATIENTINSURANCEID
16831683
if (memberId != null) {
1684-
s.append(patientId);
1684+
s.append(memberId);
16851685
}
16861686
s.append(',');
16871687
// TODO FEESCHEDULEID

0 commit comments

Comments
 (0)