diff --git a/resources/js/Pages/Statistic/Components/OutcomeColumn.vue b/resources/js/Pages/Statistic/Components/OutcomeColumn.vue
index 6a35dc5..d222128 100644
--- a/resources/js/Pages/Statistic/Components/OutcomeColumn.vue
+++ b/resources/js/Pages/Statistic/Components/OutcomeColumn.vue
@@ -1,6 +1,9 @@
@@ -62,14 +80,17 @@ const props = defineProps({
{{ plan.cumulative_percent }}%
-
- План на месяц: {{ plan.month_plan }}
-
- Сначала года + текущий месяц:
-
План:
- {{ plan.cumulative_plan }}, долг:
- {{ plan.debt_from_year }} +
- {{ plan.current_mouth_dept }}
+
+
+ План на {{formatedMonth}}: {{ plan.month_plan }} / {{ plan.current_mouth_dept }}
+
+ Долг с начала года: {{ plan.debt_from_year }}
+
+
+
+
+
+
diff --git a/resources/js/Pages/Statistic/Index.vue b/resources/js/Pages/Statistic/Index.vue
index 651b8fc..854108d 100644
--- a/resources/js/Pages/Statistic/Index.vue
+++ b/resources/js/Pages/Statistic/Index.vue
@@ -184,6 +184,7 @@ const columns = ref([
isTotalRow: row.isTotalRow,
value: row.outcome,
plan: row.plan,
+ endDate: props.date[1]
}
)
}