Исправление статистики

This commit is contained in:
brusnitsyn
2026-07-09 17:12:14 +09:00
parent 11ebbe75f5
commit b902fcf5b7
3 changed files with 29 additions and 7 deletions

View File

@@ -43,6 +43,9 @@ const props = defineProps({
recipientPlanOfYear: {
type: Object,
default: {}
},
startOfYear: {
type: String
}
})
@@ -183,7 +186,8 @@ const columns = ref([
{
isTotalRow: row.isTotalRow,
value: row.outcome,
plan: row.plan
plan: row.plan,
startOfYear: props.startOfYear
}
)
}