Skip to content

Commit fbae257

Browse files
author
Grahame Grieve
committed
Auto stash before merge of "master" and "origin/master"
1 parent 7cf3aff commit fbae257

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

library/ftx/ftx_service.pas

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,12 @@ function TConceptDesignations.displayCount(langList : THTTPLanguageList; defLang
697697
if result = 0 then
698698
for cd in FDesignations do
699699
if (not displayOnly or cd.base or isDisplay(cd)) and langsMatch(langList, cd.language, lmtLangRegion, defLang) and (cd.value <> nil) then
700+
begin
701+
inc(result);
702+
end;
703+
if result = 0 then
704+
for cd in FDesignations do
705+
if (not displayOnly or cd.base or isDisplay(cd)) and langsMatch(langList, cd.language, lmtLang, defLang) and (cd.value <> nil) then
700706
begin
701707
inc(result);
702708
end;

server/fhirserver.lpi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<CONFIG>
23
<ProjectOptions>
34
<Version Value="12"/>
@@ -1001,7 +1002,7 @@
10011002
<Name Value="EPackageCrawlerException"/>
10021003
</Item50>
10031004
<Item51>
1004-
<Name Value="&lt;Unknown Class&gt;"/>
1005+
<Name Value="&lt;Unknown Class>"/>
10051006
</Item51>
10061007
<Item52>
10071008
<Name Value="EDateFormatError"/>

server/tx_operations.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1847,7 +1847,7 @@ function TFhirTerminologyOperation.loadCoded(request : TFHIRRequest; loadType :
18471847
end;
18481848
end
18491849
else
1850-
raise ETerminologyError.Create('Unable to find code to validate (looked for coding | codeableConcept | code+system in parameters ='+request.Parameters.Source+')', itNotFound);
1850+
raise ETerminologyError.Create('Unable to find code to validate (looked for coding | codeableConcept | code+system | code+inferSystem in parameters ='+request.Parameters.Source+')', itNotFound);
18511851
end;
18521852

18531853
function TFhirTerminologyOperation.loadCoded(params : TFHIRParametersW; loadType : TLoadCodedType; var issuePath : string; var mode : TValidationCheckMode): TFhirCodeableConceptW;

0 commit comments

Comments
 (0)