fix(wizard): CompanyPerson field is 'role', not 'role_in_company'
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-04-03 12:25:12 +02:00
parent 3a4213a077
commit 275195c332

View File

@ -224,7 +224,7 @@ def wizard_step1():
response_data['people'] = [
{
'name': cp.person.full_name() if cp.person else '',
'role': cp.role_in_company or ''
'role': cp.role or ''
}
for cp in people if cp.person
]