feat: improve filters and class pricing controls in dashboard

Add session class filter, distinct partial payment tag, richer notifications list, class discount/frontend toggles, and remove unused course discount column.
This commit is contained in:
2026-08-16 08:11:42 +03:30
parent 9496587128
commit 2aa99119e2
5 changed files with 147 additions and 28 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ const severity = computed(() => {
if (props.type === 'payment') {
if (val === 'paid' || val === 'تسویه شده' || val === 'تسویه‌شده') return 'success';
if (val === 'partial' || val === 'پرداخت جزئی') return 'warning';
if (val === 'partial' || val === 'پرداخت جزئی') return 'contrast';
if (val === 'pending' || val === 'در انتظار پرداخت') return 'info';
if (val === 'overdue' || val === 'معوق شده' || val === 'معوق') return 'danger';
}