Skip to content

Commit

Permalink
order-management: add missing currency filter in return-tab + change …
Browse files Browse the repository at this point in the history
…translation
  • Loading branch information
rommelfreddy committed Apr 16, 2024
1 parent 0685133 commit 8654739
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,13 @@
</sw-select-field>
<span v-if="item.position.maxReturn == 0">0</span>
</template>

<template #column-unitPrice="{ item }">
{{ currencyFilter(item.unitPrice, order.currency.translated.shortName) }}
</template>
<template #column-totalPrice="{ item }">
{{ currencyFilter(item.totalPrice, order.currency.translated.shortName) }}
</template>
</sw-data-grid>
</template>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"delivered": "Delivered",
"canceled": "Canceled",
"returned": "Returned",
"unitPrice": "Single price",
"unitPrice": "Unit price",
"totalPrice": "Total price"
},
"messages": {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8654739

Please sign in to comment.