diff --git a/src/components/PriceAlreadyUploadedListCard.vue b/src/components/PriceAlreadyUploadedListCard.vue
index d6512d4457c..24ad127772e 100644
--- a/src/components/PriceAlreadyUploadedListCard.vue
+++ b/src/components/PriceAlreadyUploadedListCard.vue
@@ -26,12 +26,8 @@
-
- {{ $t('Common.PriceCount', { count: proofPriceUploadedList.length }) }}
-
-
- {{ getPriceValueDisplay(proofPriceUploadedListSum) }}
-
+
+
@@ -43,11 +39,12 @@
diff --git a/src/components/ProofFooterRow.vue b/src/components/ProofFooterRow.vue
index 3abc40904f3..84f3a1c4397 100644
--- a/src/components/ProofFooterRow.vue
+++ b/src/components/ProofFooterRow.vue
@@ -2,9 +2,9 @@
-
-
-
+
+
+
diff --git a/src/components/ProofReceiptPriceCountChip.vue b/src/components/ProofReceiptPriceCountChip.vue
index 4c27e68e2fc..6faf5311fa3 100644
--- a/src/components/ProofReceiptPriceCountChip.vue
+++ b/src/components/ProofReceiptPriceCountChip.vue
@@ -1,16 +1,28 @@
-
- {{ $t('Common.PriceCount', { count: count }) }}
+
+
+ {{ uploadedCount }} / {{ $t('Common.PriceCount', { count: totalCount }) }}
+
+
+ {{ $t('Common.PriceCount', { count: uploadedCount }) }}
+
+
+ {{ $t('Common.PriceCount', { count: totalCount }) }}
+
diff --git a/src/components/ProofReceiptPriceTotalChip.vue b/src/components/ProofReceiptPriceTotalChip.vue
index eda2f45abf5..977fd797ea5 100644
--- a/src/components/ProofReceiptPriceTotalChip.vue
+++ b/src/components/ProofReceiptPriceTotalChip.vue
@@ -1,6 +1,14 @@
-
- {{ getPriceValueDisplay(count) }}
+
+
+ {{ getPriceValueDisplay(uploadedCount) }} / {{ getPriceValueDisplay(totalCount) }}
+
+
+ {{ getPriceValueDisplay(uploadedCount) }}
+
+
+ {{ getPriceValueDisplay(totalCount) }}
+
@@ -9,7 +17,11 @@ import utils from '../utils.js'
export default {
props: {
- count: {
+ uploadedCount: {
+ type: Number,
+ default: null
+ },
+ totalCount: {
type: Number,
default: null
},