Skip to content

Commit

Permalink
Fixes openemr#7000 bulk export 500 failure (openemr#7003)
Browse files Browse the repository at this point in the history
Bulk export would fail if a company had an insurance company in the EMR.
  • Loading branch information
adunsulag authored Nov 9, 2023
1 parent 084d17b commit 203cbc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function parseOpenEMRRecord($dataRecord = array(), $encode = false)

$fhirMeta = new FHIRMeta();
$fhirMeta->setVersionId('1');
$meta->setLastUpdated(UtilsService::getDateFormattedAsUTC());
$fhirMeta->setLastUpdated(UtilsService::getDateFormattedAsUTC());
$organizationResource->setMeta($fhirMeta);
$organizationResource->setActive($dataRecord['inactive'] == '0');

Expand Down

0 comments on commit 203cbc3

Please sign in to comment.