feature: users with treatment edit permission should now have working hours defined. the appointment grid is now being drawn based on the doctor's working hours.

This commit is contained in:
2026-06-10 19:44:09 +03:30
parent 468572a50f
commit 48ecfd05e1
22 changed files with 1571 additions and 116 deletions

View File

@@ -6,6 +6,7 @@ import {
Param,
Patch,
Post,
Put,
Query,
Req,
UseGuards,
@@ -16,13 +17,18 @@ import { AcceptStaffInviteDto } from './dto/accept-staff-invite.dto';
import { InviteStaffDto } from './dto/invite-staff.dto';
import { PreviewStaffInviteDto } from './dto/preview-staff-invite.dto';
import { UpdateStaffMemberDto } from './dto/update-staff-member.dto';
import { UpsertWorkingHoursDto } from './dto/upsert-working-hours.dto';
import { StaffService } from './staff.service';
import { StaffWorkingHoursService } from './staff-working-hours.service';
@ApiTags('staff')
@ApiBearerAuth('JWT-auth')
@Controller('staff')
export class StaffController {
constructor(private readonly staffService: StaffService) {}
constructor(
private readonly staffService: StaffService,
private readonly staffWorkingHoursService: StaffWorkingHoursService,
) {}
@Get('invitations/preview')
@ApiOperation({ summary: 'Preview invite info by token (public)' })
@@ -80,6 +86,38 @@ export class StaffController {
return this.staffService.updateMember(req.user.id, organizationId, membershipId, dto);
}
@Get('members/:membershipId/working-hours')
@UseGuards(JwtAuthGuard)
@ApiOperation({ summary: 'Get weekly working hours for a staff member' })
getWorkingHours(
@Req() req: { user: { id: string; organizationId?: string } },
@Param('membershipId') membershipId: string,
) {
const organizationId = this.staffService.getOrganizationIdFromUser(req.user);
return this.staffWorkingHoursService.getWorkingHours(
req.user.id,
organizationId,
membershipId,
);
}
@Put('members/:membershipId/working-hours')
@UseGuards(JwtAuthGuard)
@ApiOperation({ summary: 'Save weekly working hours for a staff member' })
upsertWorkingHours(
@Req() req: { user: { id: string; organizationId?: string } },
@Param('membershipId') membershipId: string,
@Body() dto: UpsertWorkingHoursDto,
) {
const organizationId = this.staffService.getOrganizationIdFromUser(req.user);
return this.staffWorkingHoursService.upsertWorkingHours(
req.user.id,
organizationId,
membershipId,
dto,
);
}
@Patch('members/:membershipId/enable')
@UseGuards(JwtAuthGuard)
@ApiOperation({