Merge pull request 'AURORA-1247: исполнитель может получать этапы' (#91) from AURORA-1247 into test
Reviewed-on: #91
This commit is contained in:
commit
19a5ab0fdc
@ -63,7 +63,7 @@ async def get_form_phases(
|
||||
)
|
||||
if phases:
|
||||
form = await bf_service.get(user=current_user, budget_form_id=form_id)
|
||||
org_unit = await org_unit_service.get(user=current_user, org_unit_id=form.org_unit_id)
|
||||
org_unit = await org_unit_service.get(org_unit_id=form.org_unit_id)
|
||||
result = [FormPhaseResponse.model_validate(p) for p in phases]
|
||||
if org_unit.utc_offset:
|
||||
tz = timezone_from_offset(org_unit.utc_offset)
|
||||
|
||||
@ -40,10 +40,10 @@ class OrgUnitService:
|
||||
async def get(
|
||||
self,
|
||||
org_unit_id: int,
|
||||
user: AppUser,
|
||||
user: AppUser | None = None,
|
||||
load_users: bool = False,
|
||||
) -> OrgUnit | None:
|
||||
if user.role_id != UserRoleEnum.ADMIN:
|
||||
if user and user.role_id != UserRoleEnum.ADMIN:
|
||||
return None
|
||||
return await self.org_repo.get(
|
||||
org_unit_id=org_unit_id,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user