Skip to content

Commit

Permalink
Merge pull request #4156 from mikhailprivalov/fixFastGetBiomaterial
Browse files Browse the repository at this point in the history
fix fast get biometerial
  • Loading branch information
urchinpro authored Aug 2, 2024
2 parents 2651fdd + 5dce909 commit 17e9c1a
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions l2-frontend/src/ui-cards/DirectionsHistory/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,16 @@
<AuxResearch
:main-direction="row.pk"
:aux-research="row.aux_researches"
/></span>
/>
</span>
</td>
<td
class="researches"
:title="row.researches +
(row.planed_doctor !== '' ? ' Назначен: ' + row.planed_doctor: '') +
(row.register_number !== '' ? ' (' + row.register_number + ')': '')
"
>
<span v-if="row.lab && !row.has_hosp && roleCanUseGetBipmaterial">
<a
v-tippy
Expand All @@ -221,14 +230,6 @@
/>
</a>
</span>
</td>
<td
class="researches"
:title="row.researches +
(row.planed_doctor !== '' ? ' Назначен: ' + row.planed_doctor: '') +
(row.register_number !== '' ? ' (' + row.register_number + ')': '')
"
>
{{ row.researches }}
</td>
<td
Expand Down

0 comments on commit 17e9c1a

Please sign in to comment.