Skip to content

Commit

Permalink
feat(circulation): add temporary location name
Browse files Browse the repository at this point in the history
* Adds temporary location name on request screen.
* Closes rero/rero-ils#3611.

Co-Authored-by: Bertrand Zuchuat <[email protected]>
  • Loading branch information
Garfield-fr committed Mar 5, 2024
1 parent 3726664 commit 43f0fca
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,13 @@
<!-- item shelf location + destination -->
<dt class="col-2 label-title text-right" translate>Location</dt>
<dd name="location" class="col-10">
{{ item.library.name }} {{ item.location.name }}
{{ item.library.name }} -
@if (item.temporary_location?.name) {
{{ item.temporary_location.name }}
} @else {
{{ item.location.name }}
}

</dd>
<dt class="col-2 label-title text-right" translate>Pick-up location</dt>
<dd name="pickup-location" class="col-10">
Expand Down

0 comments on commit 43f0fca

Please sign in to comment.