diff --git a/src/components/ConfirmCancelModal.vue b/src/components/ConfirmCancelModal.vue index 4eeda2c2f..b39243341 100644 --- a/src/components/ConfirmCancelModal.vue +++ b/src/components/ConfirmCancelModal.vue @@ -22,12 +22,12 @@

{{ getCancelReasonDescription(item.cancelReason) }}

{{ translate("Kit") }} - {{ getProduct(item.productId).LIST_PRICE_PURCHASE_USD_STORE_GROUP_price ? getProduct(item.productId).LIST_PRICE_PURCHASE_USD_STORE_GROUP_price : "" }} + {{ getProduct(item.productId).LIST_PRICE_PURCHASE_USD_STORE_GROUP_price ? formatCurrency(getProduct(item.productId).LIST_PRICE_PURCHASE_USD_STORE_GROUP_price, order.currencyUom) : "" }} {{ translate("Total") }} - {{ orderTotal }} + {{ formatCurrency(orderTotal, order.currencyUom) }} @@ -82,6 +82,7 @@ import { mapGetters, useStore } from "vuex" import { OrderService } from "@/services/OrderService"; import { getProductIdentificationValue, translate, useProductIdentificationStore } from "@hotwax/dxp-components"; import { isKit } from "@/utils/order" +import { formatCurrency } from "@/utils"; import { hasError } from "@hotwax/oms-api"; import { DateTime } from "luxon"; import emitter from "@/event-bus"; @@ -188,6 +189,7 @@ export default defineComponent({ return { closeOutline, isKit, + formatCurrency, getProductIdentificationValue, productIdentificationPref, saveOutline,