diff --git a/oms_web/oms_vue/src/views/approve/order/ConfigInfo.vue b/oms_web/oms_vue/src/views/approve/order/ConfigInfo.vue
index 54af0bc0..46c0efee 100644
--- a/oms_web/oms_vue/src/views/approve/order/ConfigInfo.vue
+++ b/oms_web/oms_vue/src/views/approve/order/ConfigInfo.vue
@@ -30,7 +30,7 @@
{{ product.discount ? (product.discount * 100).toFixed(2) + '%' : '-' }} |
{{ formatCurrency(product.price) }} |
{{ selectedDiscountLabel }} |
- {{ formatCurrency(product.allPrice) }} |
+ {{ formatCurrency(getDisplayAllPrice(product, selectedDiscount)) }} |
{{ formatCurrency(getDiscountedAllPrice(product, selectedDiscount)) }} |
{{ product.discount ? (product.discount * 100).toFixed(2) + '%' : '-' }} |
{{ formatCurrency(product.price) }} |
{{ selectedDiscountLabel }} |
- {{ formatCurrency(product.allPrice) }} |
+ {{ formatCurrency(getDisplayAllPrice(product, selectedDiscount)) }} |
{{ formatCurrency(getDiscountedAllPrice(product, selectedDiscount)) }} |
{{ product.discount ? (product.discount * 100).toFixed(2) + '%' : '-' }} |
{{ formatCurrency(product.price) }} |
{{ selectedDiscountLabel }} |
- {{ formatCurrency(product.allPrice) }} |
+ {{ formatCurrency(getDisplayAllPrice(product, selectedDiscount)) }} |
{{ formatCurrency(getDiscountedAllPrice(product, selectedDiscount)) }} |
sum + (product.allPrice || 0), 0);
- }
return productList.reduce((sum, product) => sum + (this.getDiscountedAllPrice(product, discount) || 0), 0);
},
formatCurrency(value) {
|