Skip to content

Commit

Permalink
Merge pull request #334 from hotwax/332_display_ship_group_seq_id
Browse files Browse the repository at this point in the history
Improved: Displayed shipGroupSeqId on order detail page (#332).
  • Loading branch information
ravilodhi authored Oct 25, 2023
2 parents a87110f + c7e84e0 commit 79c5c13
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/views/OrderDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@
<p>{{ translate("Ordered") }} {{ formatUtcDate(order.orderDate, 'dd MMMM yyyy t a ZZZZ') }}</p>
</ion-label>
</div>
<div class="order-tags">
<ion-chip outline>
<ion-icon :icon="pricetagOutline" />
<ion-label>{{ order.shipGroupSeqId }}</ion-label>
</ion-chip>
</div>

<div class="order-metadata">
<ion-label>
Expand Down Expand Up @@ -166,6 +172,7 @@
<div>
<ion-card-subtitle class="overline">{{ getfacilityTypeDesc(shipGroup.facilityTypeId) }}</ion-card-subtitle>
<ion-card-title>{{ shipGroup.facilityName }}</ion-card-title>
{{ shipGroup.shipGroupSeqId }}
</div>
<ion-badge :color="shipGroup.category ? 'primary' : 'medium'">{{ shipGroup.category ? shipGroup.category : translate('Pending allocation') }}</ion-badge>
</ion-card-header>
Expand Down

0 comments on commit 79c5c13

Please sign in to comment.