Skip to content

Commit

Permalink
Updated pagination and message trace id
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-lperezra committed Sep 6, 2024
1 parent 162a132 commit fb28136
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion encoder-ui/src/app/codelist/codelist.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<tbody>
@for (option of codeOptions; track option; let i = $index) {
<tr (click)="saveCodification(option.CodeId);">
<th scope="row">{{ i + 1 }}</th>
<th scope="row">{{((page - 1)*10) + i + 1}}</th>
<td>
{{ option.CodeId }}
</td>
Expand Down
4 changes: 2 additions & 2 deletions encoder-ui/src/app/diagnosis/diagnosis.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<tbody>
@for (request of codeRequests; track request; let i = $index) {
<tr>
<td scope="row">{{ i + 1 }}</td>
<td scope="row">{{ ((page - 1)*10) + i + 1 }}</td>
<td>
<a href="https://18.134.160.8:8443/csp/healthshare/encoder/EnsPortal.MessageContents.zen?HeaderClass=Ens.MessageHeader&HeaderId={{ request.MessageId }}" target="_blank">{{ request.Description }}</a>
<a href="https://18.134.160.8:8443/csp/healthshare/encoder/EnsPortal.VisualTrace.zen?SESSIONID={{ request.MessageId }}" target="_blank">{{ request.Description }}</a>
</td>
<td>
{{ request.CodeId }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<tbody>
@for (diagnostic of diagnosticsPage; track diagnostic; let i = $index) {
<tr>
<th scope="row">{{ i + 1 }}</th>
<th scope="row">{{((page - 1)*10) + i + 1}}</th>
<td>
{{ diagnostic.code }}
</td>
Expand Down
2 changes: 1 addition & 1 deletion src/ENCODER/DT/ADT01ToCodeRequest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ XData DTL [ XMLNamespace = "http://www.intersystems.com/dtl" ]
{
<transform sourceClass='EnsLib.HL7.Message' targetClass='ENCODER.Object.CodeRequests' sourceDocType='2.5:ADT_A01' create='new' language='objectscript' >
<assign value='source.{DG1(1):DiagnosisDescription}' property='target.Description' action='set' />
<assign value='##class(Ens.MessageHeader).%OpenId($$$JobSessionId).MessageBodyId' property='target.MessageId' action='set' />
<assign value='$$$JobSessionId' property='target.MessageId' action='set' />
</transform>
}

Expand Down

0 comments on commit fb28136

Please sign in to comment.