feat(kyc): add demo KYC profile page with mock data
All checks were successful
Build Docker Image / build (push) Successful in 4m1s

- Always show 'view full profile' button with fallback to demo UUID
- KYC page shows mock data when demo UUID is used
- Add i18n translations for demo page
This commit is contained in:
Ruslan Bakiev
2026-01-27 20:16:30 +07:00
parent 7066c51505
commit 02419abdd1
4 changed files with 100 additions and 7 deletions

View File

@@ -3,6 +3,16 @@
"verification_status": "Verification Status",
"team_verification_description": "Complete team verification to create orders",
"start_verification": "Start Verification",
"check_status_in_odoo": "Status is being reviewed by administrator"
"check_status_in_odoo": "Status is being reviewed by administrator",
"demo": {
"companyName": "Demo Company LLC",
"director": "Director",
"capital": "Authorized Capital",
"address": "Legal Address",
"activities": "Business Activities",
"sources": "Sources",
"updated": "Updated",
"notice": "This is demo data. Real company information will be available after connecting to the database."
}
}
}

View File

@@ -3,6 +3,16 @@
"verification_status": "Статус верификации",
"team_verification_description": "Пройдите верификацию команды для создания заказов",
"start_verification": "Начать верификацию",
"check_status_in_odoo": "Статус проверяется администратором"
"check_status_in_odoo": "Статус проверяется администратором",
"demo": {
"companyName": "ООО \"Демо Компания\"",
"director": "Руководитель",
"capital": "Уставный капитал",
"address": "Юридический адрес",
"activities": "Виды деятельности",
"sources": "Источники",
"updated": "Обновлено",
"notice": "Это демонстрационные данные. Реальная информация о компании будет доступна после подключения к базе данных."
}
}
}