Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8204669ec9 | ||
|
|
a0a5e15b04 |
@@ -17,7 +17,6 @@ import { EnfantsModule } from './routes/enfants/enfants.module';
|
|||||||
import { AppConfigModule } from './modules/config/config.module';
|
import { AppConfigModule } from './modules/config/config.module';
|
||||||
import { DocumentsLegauxModule } from './modules/documents-legaux';
|
import { DocumentsLegauxModule } from './modules/documents-legaux';
|
||||||
import { AbsencesGardeModule } from './modules/absences-garde';
|
import { AbsencesGardeModule } from './modules/absences-garde';
|
||||||
import { CardsModule } from './modules/cards';
|
|
||||||
import { RelaisModule } from './routes/relais/relais.module';
|
import { RelaisModule } from './routes/relais/relais.module';
|
||||||
import { DossiersModule } from './routes/dossiers/dossiers.module';
|
import { DossiersModule } from './routes/dossiers/dossiers.module';
|
||||||
import { SuppressionsModule } from './routes/suppressions/suppressions.module';
|
import { SuppressionsModule } from './routes/suppressions/suppressions.module';
|
||||||
@@ -59,7 +58,6 @@ import { SuppressionsModule } from './routes/suppressions/suppressions.module';
|
|||||||
AppConfigModule,
|
AppConfigModule,
|
||||||
DocumentsLegauxModule,
|
DocumentsLegauxModule,
|
||||||
AbsencesGardeModule,
|
AbsencesGardeModule,
|
||||||
CardsModule,
|
|
||||||
RelaisModule,
|
RelaisModule,
|
||||||
DossiersModule,
|
DossiersModule,
|
||||||
SuppressionsModule,
|
SuppressionsModule,
|
||||||
|
|||||||
@@ -1,35 +0,0 @@
|
|||||||
import {
|
|
||||||
Column,
|
|
||||||
Entity,
|
|
||||||
JoinColumn,
|
|
||||||
ManyToOne,
|
|
||||||
PrimaryGeneratedColumn,
|
|
||||||
} from 'typeorm';
|
|
||||||
import { CardInstance } from './card_instances.entity';
|
|
||||||
import { Users } from './users.entity';
|
|
||||||
|
|
||||||
@Entity('card_audience_members', { schema: 'public' })
|
|
||||||
export class CardAudienceMember {
|
|
||||||
@PrimaryGeneratedColumn('uuid')
|
|
||||||
id: string;
|
|
||||||
|
|
||||||
@Column({ name: 'id_card', type: 'uuid' })
|
|
||||||
id_card: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => CardInstance, (c) => c.audience, { onDelete: 'CASCADE' })
|
|
||||||
@JoinColumn({ name: 'id_card', referencedColumnName: 'id' })
|
|
||||||
card: CardInstance;
|
|
||||||
|
|
||||||
@Column({ name: 'id_utilisateur', type: 'uuid' })
|
|
||||||
id_utilisateur: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => Users, { onDelete: 'CASCADE' })
|
|
||||||
@JoinColumn({ name: 'id_utilisateur', referencedColumnName: 'id' })
|
|
||||||
user: Users;
|
|
||||||
|
|
||||||
@Column({ name: 'role_snapshot', type: 'varchar', length: 64 })
|
|
||||||
role_snapshot: string;
|
|
||||||
|
|
||||||
@Column({ name: 'is_creator', type: 'boolean', default: false })
|
|
||||||
is_creator: boolean;
|
|
||||||
}
|
|
||||||
@@ -1,97 +0,0 @@
|
|||||||
import {
|
|
||||||
Column,
|
|
||||||
CreateDateColumn,
|
|
||||||
Entity,
|
|
||||||
JoinColumn,
|
|
||||||
ManyToOne,
|
|
||||||
OneToMany,
|
|
||||||
PrimaryGeneratedColumn,
|
|
||||||
UpdateDateColumn,
|
|
||||||
} from 'typeorm';
|
|
||||||
import { AmChildren } from './am_children.entity';
|
|
||||||
import { AbsencesGarde } from './absences_garde.entity';
|
|
||||||
import { Users } from './users.entity';
|
|
||||||
import { CardType } from './card_types.entity';
|
|
||||||
import { CardAudienceMember } from './card_audience_members.entity';
|
|
||||||
import { CardResponse } from './card_responses.entity';
|
|
||||||
|
|
||||||
export enum CardInstanceStatutType {
|
|
||||||
OUVERTE = 'ouverte',
|
|
||||||
REFUSEE = 'refusee',
|
|
||||||
TRAITEE = 'traitee',
|
|
||||||
}
|
|
||||||
|
|
||||||
export enum CardOperationType {
|
|
||||||
CREATE = 'create',
|
|
||||||
UPDATE = 'update',
|
|
||||||
}
|
|
||||||
|
|
||||||
@Entity('card_instances', { schema: 'public' })
|
|
||||||
export class CardInstance {
|
|
||||||
@PrimaryGeneratedColumn('uuid')
|
|
||||||
id: string;
|
|
||||||
|
|
||||||
@Column({ name: 'type_code', type: 'varchar', length: 64 })
|
|
||||||
type_code: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => CardType, { onDelete: 'RESTRICT' })
|
|
||||||
@JoinColumn({ name: 'type_code', referencedColumnName: 'code' })
|
|
||||||
type: CardType;
|
|
||||||
|
|
||||||
@Column({ name: 'id_placement', type: 'uuid' })
|
|
||||||
id_placement: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => AmChildren, { onDelete: 'CASCADE' })
|
|
||||||
@JoinColumn({ name: 'id_placement', referencedColumnName: 'id' })
|
|
||||||
placement: AmChildren;
|
|
||||||
|
|
||||||
@Column({ name: 'id_absence', type: 'uuid', nullable: true })
|
|
||||||
id_absence?: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => AbsencesGarde, { nullable: true, onDelete: 'SET NULL' })
|
|
||||||
@JoinColumn({ name: 'id_absence', referencedColumnName: 'id' })
|
|
||||||
absence?: AbsencesGarde;
|
|
||||||
|
|
||||||
@Column({ name: 'cree_par', type: 'uuid', nullable: true })
|
|
||||||
cree_par?: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => Users, { nullable: true, onDelete: 'SET NULL' })
|
|
||||||
@JoinColumn({ name: 'cree_par', referencedColumnName: 'id' })
|
|
||||||
createdBy?: Users;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
type: 'enum',
|
|
||||||
enum: CardOperationType,
|
|
||||||
enumName: 'card_operation_type',
|
|
||||||
name: 'operation',
|
|
||||||
default: CardOperationType.CREATE,
|
|
||||||
})
|
|
||||||
operation: CardOperationType;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
type: 'enum',
|
|
||||||
enum: CardInstanceStatutType,
|
|
||||||
enumName: 'card_instance_statut_type',
|
|
||||||
name: 'statut',
|
|
||||||
default: CardInstanceStatutType.OUVERTE,
|
|
||||||
})
|
|
||||||
statut: CardInstanceStatutType;
|
|
||||||
|
|
||||||
@Column({ name: 'payload', type: 'jsonb', default: {} })
|
|
||||||
payload: Record<string, unknown>;
|
|
||||||
|
|
||||||
@Column({ name: 'purge_at', type: 'timestamptz' })
|
|
||||||
purge_at: Date;
|
|
||||||
|
|
||||||
@OneToMany(() => CardAudienceMember, (m) => m.card)
|
|
||||||
audience: CardAudienceMember[];
|
|
||||||
|
|
||||||
@OneToMany(() => CardResponse, (r) => r.card)
|
|
||||||
responses: CardResponse[];
|
|
||||||
|
|
||||||
@CreateDateColumn({ name: 'cree_le', type: 'timestamptz' })
|
|
||||||
cree_le: Date;
|
|
||||||
|
|
||||||
@UpdateDateColumn({ name: 'modifie_le', type: 'timestamptz' })
|
|
||||||
modifie_le: Date;
|
|
||||||
}
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
import {
|
|
||||||
Column,
|
|
||||||
CreateDateColumn,
|
|
||||||
Entity,
|
|
||||||
JoinColumn,
|
|
||||||
ManyToOne,
|
|
||||||
PrimaryGeneratedColumn,
|
|
||||||
} from 'typeorm';
|
|
||||||
import { CardInstance } from './card_instances.entity';
|
|
||||||
import { Users } from './users.entity';
|
|
||||||
|
|
||||||
export enum CardResponseActionType {
|
|
||||||
ACCEPT = 'accept',
|
|
||||||
REFUSE = 'refuse',
|
|
||||||
ACK = 'ack',
|
|
||||||
}
|
|
||||||
|
|
||||||
@Entity('card_responses', { schema: 'public' })
|
|
||||||
export class CardResponse {
|
|
||||||
@PrimaryGeneratedColumn('uuid')
|
|
||||||
id: string;
|
|
||||||
|
|
||||||
@Column({ name: 'id_card', type: 'uuid' })
|
|
||||||
id_card: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => CardInstance, (c) => c.responses, { onDelete: 'CASCADE' })
|
|
||||||
@JoinColumn({ name: 'id_card', referencedColumnName: 'id' })
|
|
||||||
card: CardInstance;
|
|
||||||
|
|
||||||
@Column({ name: 'id_utilisateur', type: 'uuid' })
|
|
||||||
id_utilisateur: string;
|
|
||||||
|
|
||||||
@ManyToOne(() => Users, { onDelete: 'CASCADE' })
|
|
||||||
@JoinColumn({ name: 'id_utilisateur', referencedColumnName: 'id' })
|
|
||||||
user: Users;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
type: 'enum',
|
|
||||||
enum: CardResponseActionType,
|
|
||||||
enumName: 'card_response_action_type',
|
|
||||||
name: 'action',
|
|
||||||
})
|
|
||||||
action: CardResponseActionType;
|
|
||||||
|
|
||||||
@Column({ name: 'comment', type: 'text', nullable: true })
|
|
||||||
comment?: string;
|
|
||||||
|
|
||||||
@CreateDateColumn({ name: 'cree_le', type: 'timestamptz' })
|
|
||||||
cree_le: Date;
|
|
||||||
}
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
import {
|
|
||||||
Column,
|
|
||||||
CreateDateColumn,
|
|
||||||
Entity,
|
|
||||||
PrimaryColumn,
|
|
||||||
UpdateDateColumn,
|
|
||||||
} from 'typeorm';
|
|
||||||
|
|
||||||
export enum CardResponseModeType {
|
|
||||||
NONE = 'none',
|
|
||||||
ACK = 'ack',
|
|
||||||
ACCEPT_REFUSE = 'accept_refuse',
|
|
||||||
}
|
|
||||||
|
|
||||||
@Entity('card_types', { schema: 'public' })
|
|
||||||
export class CardType {
|
|
||||||
@PrimaryColumn({ name: 'code', type: 'varchar', length: 64 })
|
|
||||||
code: string;
|
|
||||||
|
|
||||||
@Column({ name: 'system', type: 'boolean', default: true })
|
|
||||||
system: boolean;
|
|
||||||
|
|
||||||
@Column({ name: 'titre', type: 'varchar', length: 120 })
|
|
||||||
titre: string;
|
|
||||||
|
|
||||||
@Column({ name: 'emitter_roles', type: 'text', array: true })
|
|
||||||
emitter_roles: string[];
|
|
||||||
|
|
||||||
@Column({ name: 'recipient_roles', type: 'text', array: true })
|
|
||||||
recipient_roles: string[];
|
|
||||||
|
|
||||||
@Column({ name: 'audience_resolver', type: 'varchar', length: 64 })
|
|
||||||
audience_resolver: string;
|
|
||||||
|
|
||||||
@Column({
|
|
||||||
type: 'enum',
|
|
||||||
enum: CardResponseModeType,
|
|
||||||
enumName: 'card_response_mode_type',
|
|
||||||
name: 'response_mode',
|
|
||||||
})
|
|
||||||
response_mode: CardResponseModeType;
|
|
||||||
|
|
||||||
@Column({ name: 'retention_days', type: 'int', default: 14 })
|
|
||||||
retention_days: number;
|
|
||||||
|
|
||||||
@Column({ name: 'couleur', type: 'varchar', length: 32, nullable: true })
|
|
||||||
couleur?: string;
|
|
||||||
|
|
||||||
@CreateDateColumn({ name: 'cree_le', type: 'timestamptz' })
|
|
||||||
cree_le: Date;
|
|
||||||
|
|
||||||
@UpdateDateColumn({ name: 'modifie_le', type: 'timestamptz' })
|
|
||||||
modifie_le: Date;
|
|
||||||
}
|
|
||||||
@@ -312,16 +312,15 @@ export class AbsencesGardeService {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (role === RoleType.ASSISTANTE_MATERNELLE) {
|
if (role === RoleType.ASSISTANTE_MATERNELLE) {
|
||||||
// Remise en attente après refus OU modification d’un congé déjà accepté (S2b)
|
// Remise en attente après refus (republication)
|
||||||
if (
|
if (
|
||||||
next === StatutAbsenceGardeType.EN_ATTENTE &&
|
row.statut === StatutAbsenceGardeType.REFUSE &&
|
||||||
(row.statut === StatutAbsenceGardeType.REFUSE ||
|
next === StatutAbsenceGardeType.EN_ATTENTE
|
||||||
row.statut === StatutAbsenceGardeType.ACCEPTE)
|
|
||||||
) {
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
throw new ForbiddenException(
|
throw new ForbiddenException(
|
||||||
'L’AM ne valide pas elle-même (sauf republication / modification)',
|
'L’AM ne valide pas elle-même (sauf republication après refus)',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
throw new ForbiddenException('Changement de statut non autorisé');
|
throw new ForbiddenException('Changement de statut non autorisé');
|
||||||
|
|||||||
@@ -1,119 +0,0 @@
|
|||||||
import {
|
|
||||||
Body,
|
|
||||||
Controller,
|
|
||||||
Delete,
|
|
||||||
Get,
|
|
||||||
HttpCode,
|
|
||||||
HttpStatus,
|
|
||||||
Param,
|
|
||||||
ParseUUIDPipe,
|
|
||||||
Patch,
|
|
||||||
Post,
|
|
||||||
Query,
|
|
||||||
UseGuards,
|
|
||||||
} from '@nestjs/common';
|
|
||||||
import {
|
|
||||||
ApiBearerAuth,
|
|
||||||
ApiBody,
|
|
||||||
ApiOperation,
|
|
||||||
ApiQuery,
|
|
||||||
ApiResponse,
|
|
||||||
ApiTags,
|
|
||||||
} from '@nestjs/swagger';
|
|
||||||
import { AuthGuard } from 'src/common/guards/auth.guard';
|
|
||||||
import { RolesGuard } from 'src/common/guards/roles.guard';
|
|
||||||
import { Roles } from 'src/common/decorators/roles.decorator';
|
|
||||||
import { User } from 'src/common/decorators/user.decorator';
|
|
||||||
import { RoleType } from 'src/entities/users.entity';
|
|
||||||
import { CardsService } from './cards.service';
|
|
||||||
import {
|
|
||||||
CarteDto,
|
|
||||||
CreerCarteDto,
|
|
||||||
ListeCartesDto,
|
|
||||||
MajCarteDto,
|
|
||||||
RepondreCarteDto,
|
|
||||||
} from './dto/cards.dto';
|
|
||||||
|
|
||||||
@ApiTags('Cartes')
|
|
||||||
@ApiBearerAuth('access-token')
|
|
||||||
@Controller('cards')
|
|
||||||
@UseGuards(AuthGuard, RolesGuard)
|
|
||||||
export class CardsController {
|
|
||||||
constructor(private readonly cardsService: CardsService) {}
|
|
||||||
|
|
||||||
@Get('types')
|
|
||||||
@Roles(RoleType.PARENT, RoleType.ASSISTANTE_MATERNELLE)
|
|
||||||
@ApiOperation({ summary: 'Types SYSTEM émissibles pour mon rôle — #194' })
|
|
||||||
listerTypes(@User('role') role: RoleType) {
|
|
||||||
return this.cardsService.listerTypes(role);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Get()
|
|
||||||
@Roles(RoleType.PARENT, RoleType.ASSISTANTE_MATERNELLE)
|
|
||||||
@ApiOperation({ summary: 'Feed bulles de l’utilisateur — #194' })
|
|
||||||
@ApiQuery({ name: 'placementId', required: false })
|
|
||||||
@ApiResponse({ status: 200, type: ListeCartesDto })
|
|
||||||
lister(
|
|
||||||
@User('id') userId: string,
|
|
||||||
@User('role') role: RoleType,
|
|
||||||
@Query('placementId') placementId?: string,
|
|
||||||
): Promise<ListeCartesDto> {
|
|
||||||
return this.cardsService.lister(userId, role, placementId);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post()
|
|
||||||
@Roles(RoleType.PARENT, RoleType.ASSISTANTE_MATERNELLE)
|
|
||||||
@HttpCode(HttpStatus.CREATED)
|
|
||||||
@ApiOperation({
|
|
||||||
summary: 'Créer une bulle (+ hook absences_garde) — #194',
|
|
||||||
})
|
|
||||||
@ApiBody({ type: CreerCarteDto })
|
|
||||||
@ApiResponse({ status: 201, type: CarteDto })
|
|
||||||
creer(
|
|
||||||
@User('id') userId: string,
|
|
||||||
@User('role') role: RoleType,
|
|
||||||
@Body() dto: CreerCarteDto,
|
|
||||||
): Promise<CarteDto> {
|
|
||||||
return this.cardsService.creer(userId, role, dto);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post(':id/respond')
|
|
||||||
@Roles(RoleType.PARENT, RoleType.ASSISTANTE_MATERNELLE)
|
|
||||||
@ApiOperation({ summary: 'Répondre (accept / refuse / ack) — #194' })
|
|
||||||
@ApiBody({ type: RepondreCarteDto })
|
|
||||||
repondre(
|
|
||||||
@User('id') userId: string,
|
|
||||||
@User('role') role: RoleType,
|
|
||||||
@Param('id', ParseUUIDPipe) id: string,
|
|
||||||
@Body() dto: RepondreCarteDto,
|
|
||||||
): Promise<CarteDto> {
|
|
||||||
return this.cardsService.repondre(userId, role, id, dto);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Patch(':id')
|
|
||||||
@Roles(RoleType.PARENT, RoleType.ASSISTANTE_MATERNELLE)
|
|
||||||
@ApiOperation({
|
|
||||||
summary: 'Modifier dates (créateur, ouverte/refusée) — #194',
|
|
||||||
})
|
|
||||||
@ApiBody({ type: MajCarteDto })
|
|
||||||
maj(
|
|
||||||
@User('id') userId: string,
|
|
||||||
@User('role') role: RoleType,
|
|
||||||
@Param('id', ParseUUIDPipe) id: string,
|
|
||||||
@Body() dto: MajCarteDto,
|
|
||||||
): Promise<CarteDto> {
|
|
||||||
return this.cardsService.majEnAttente(userId, role, id, dto);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Delete(':id')
|
|
||||||
@Roles(RoleType.PARENT, RoleType.ASSISTANTE_MATERNELLE)
|
|
||||||
@HttpCode(HttpStatus.NO_CONTENT)
|
|
||||||
@ApiOperation({ summary: 'Supprimer bulle (+ absence si non traitée) — #194' })
|
|
||||||
async supprimer(
|
|
||||||
@User('id') userId: string,
|
|
||||||
@User('role') role: RoleType,
|
|
||||||
@Param('id', ParseUUIDPipe) id: string,
|
|
||||||
): Promise<void> {
|
|
||||||
await this.cardsService.supprimer(userId, role, id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
import { Module } from '@nestjs/common';
|
|
||||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
||||||
import { AbsencesGardeModule } from '../absences-garde';
|
|
||||||
import { CardType } from 'src/entities/card_types.entity';
|
|
||||||
import { CardInstance } from 'src/entities/card_instances.entity';
|
|
||||||
import { CardAudienceMember } from 'src/entities/card_audience_members.entity';
|
|
||||||
import { CardResponse } from 'src/entities/card_responses.entity';
|
|
||||||
import { AmChildren } from 'src/entities/am_children.entity';
|
|
||||||
import { ParentsChildren } from 'src/entities/parents_children.entity';
|
|
||||||
import { CardsController } from './cards.controller';
|
|
||||||
import { CardsService } from './cards.service';
|
|
||||||
|
|
||||||
@Module({
|
|
||||||
imports: [
|
|
||||||
AbsencesGardeModule,
|
|
||||||
TypeOrmModule.forFeature([
|
|
||||||
CardType,
|
|
||||||
CardInstance,
|
|
||||||
CardAudienceMember,
|
|
||||||
CardResponse,
|
|
||||||
AmChildren,
|
|
||||||
ParentsChildren,
|
|
||||||
]),
|
|
||||||
],
|
|
||||||
controllers: [CardsController],
|
|
||||||
providers: [CardsService],
|
|
||||||
exports: [CardsService],
|
|
||||||
})
|
|
||||||
export class CardsModule {}
|
|
||||||
@@ -1,146 +0,0 @@
|
|||||||
import { Test, TestingModule } from '@nestjs/testing';
|
|
||||||
import { getRepositoryToken } from '@nestjs/typeorm';
|
|
||||||
import { ForbiddenException } from '@nestjs/common';
|
|
||||||
import { CardsService } from './cards.service';
|
|
||||||
import { AbsencesGardeService } from '../absences-garde/absences-garde.service';
|
|
||||||
import { CardType, CardResponseModeType } from 'src/entities/card_types.entity';
|
|
||||||
import {
|
|
||||||
CardInstance,
|
|
||||||
CardInstanceStatutType,
|
|
||||||
CardOperationType,
|
|
||||||
} from 'src/entities/card_instances.entity';
|
|
||||||
import { CardAudienceMember } from 'src/entities/card_audience_members.entity';
|
|
||||||
import { CardResponse } from 'src/entities/card_responses.entity';
|
|
||||||
import { AmChildren } from 'src/entities/am_children.entity';
|
|
||||||
import { ParentsChildren } from 'src/entities/parents_children.entity';
|
|
||||||
import { RoleType } from 'src/entities/users.entity';
|
|
||||||
import { StatutAbsenceGardeType, TypeAbsenceGardeType } from 'src/entities/absences_garde.entity';
|
|
||||||
|
|
||||||
describe('CardsService (#194)', () => {
|
|
||||||
let service: CardsService;
|
|
||||||
|
|
||||||
const typesRepo = { find: jest.fn(), findOne: jest.fn() };
|
|
||||||
const cardsRepo = {
|
|
||||||
create: jest.fn((x) => x),
|
|
||||||
save: jest.fn(async (x) => ({ ...x, id: x.id ?? 'card-1', cree_le: new Date(), modifie_le: new Date() })),
|
|
||||||
findOne: jest.fn(),
|
|
||||||
delete: jest.fn(),
|
|
||||||
createQueryBuilder: jest.fn(),
|
|
||||||
manager: { query: jest.fn() },
|
|
||||||
};
|
|
||||||
const audienceRepo = {
|
|
||||||
create: jest.fn((x) => x),
|
|
||||||
save: jest.fn(),
|
|
||||||
findOne: jest.fn(),
|
|
||||||
};
|
|
||||||
const responsesRepo = {
|
|
||||||
create: jest.fn((x) => x),
|
|
||||||
save: jest.fn(),
|
|
||||||
};
|
|
||||||
const amChildrenRepo = { findOne: jest.fn() };
|
|
||||||
const parentsChildrenRepo = { find: jest.fn(), findOne: jest.fn() };
|
|
||||||
const absencesService = {
|
|
||||||
creer: jest.fn(),
|
|
||||||
maj: jest.fn(),
|
|
||||||
supprimer: jest.fn(),
|
|
||||||
};
|
|
||||||
|
|
||||||
beforeEach(async () => {
|
|
||||||
const module: TestingModule = await Test.createTestingModule({
|
|
||||||
providers: [
|
|
||||||
CardsService,
|
|
||||||
{ provide: getRepositoryToken(CardType), useValue: typesRepo },
|
|
||||||
{ provide: getRepositoryToken(CardInstance), useValue: cardsRepo },
|
|
||||||
{ provide: getRepositoryToken(CardAudienceMember), useValue: audienceRepo },
|
|
||||||
{ provide: getRepositoryToken(CardResponse), useValue: responsesRepo },
|
|
||||||
{ provide: getRepositoryToken(AmChildren), useValue: amChildrenRepo },
|
|
||||||
{ provide: getRepositoryToken(ParentsChildren), useValue: parentsChildrenRepo },
|
|
||||||
{ provide: AbsencesGardeService, useValue: absencesService },
|
|
||||||
],
|
|
||||||
}).compile();
|
|
||||||
service = module.get(CardsService);
|
|
||||||
jest.clearAllMocks();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should be defined', () => {
|
|
||||||
expect(service).toBeDefined();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('AM crée congé → absence + carte ouverte + audience parents', async () => {
|
|
||||||
typesRepo.findOne.mockResolvedValue({
|
|
||||||
code: 'conge_am',
|
|
||||||
system: true,
|
|
||||||
titre: 'Congé AM',
|
|
||||||
emitter_roles: [RoleType.ASSISTANTE_MATERNELLE],
|
|
||||||
recipient_roles: [RoleType.PARENT],
|
|
||||||
audience_resolver: 'couple_parents',
|
|
||||||
response_mode: CardResponseModeType.ACCEPT_REFUSE,
|
|
||||||
retention_days: 14,
|
|
||||||
couleur: 'lavender',
|
|
||||||
});
|
|
||||||
amChildrenRepo.findOne.mockResolvedValue({
|
|
||||||
id: 'pl-1',
|
|
||||||
amId: 'am-1',
|
|
||||||
enfantId: 'e-1',
|
|
||||||
date_fin: null,
|
|
||||||
});
|
|
||||||
absencesService.creer.mockResolvedValue({
|
|
||||||
id: 'abs-1',
|
|
||||||
type: TypeAbsenceGardeType.CONGE_AM,
|
|
||||||
statut: StatutAbsenceGardeType.EN_ATTENTE,
|
|
||||||
});
|
|
||||||
parentsChildrenRepo.find.mockResolvedValue([
|
|
||||||
{ parentId: 'p-1', enfantId: 'e-1' },
|
|
||||||
{ parentId: 'p-2', enfantId: 'e-1' },
|
|
||||||
]);
|
|
||||||
cardsRepo.findOne.mockResolvedValue({
|
|
||||||
id: 'card-1',
|
|
||||||
type_code: 'conge_am',
|
|
||||||
id_placement: 'pl-1',
|
|
||||||
id_absence: 'abs-1',
|
|
||||||
cree_par: 'am-1',
|
|
||||||
operation: CardOperationType.CREATE,
|
|
||||||
statut: CardInstanceStatutType.OUVERTE,
|
|
||||||
payload: { date_debut: '2026-11-01', date_fin: '2026-11-07' },
|
|
||||||
purge_at: new Date(),
|
|
||||||
cree_le: new Date(),
|
|
||||||
modifie_le: new Date(),
|
|
||||||
type: {
|
|
||||||
titre: 'Congé AM',
|
|
||||||
couleur: 'lavender',
|
|
||||||
response_mode: CardResponseModeType.ACCEPT_REFUSE,
|
|
||||||
retention_days: 14,
|
|
||||||
},
|
|
||||||
responses: [],
|
|
||||||
audience: [],
|
|
||||||
});
|
|
||||||
|
|
||||||
const res = await service.creer('am-1', RoleType.ASSISTANTE_MATERNELLE, {
|
|
||||||
type_code: 'conge_am',
|
|
||||||
id_placement: 'pl-1',
|
|
||||||
date_debut: '2026-11-01',
|
|
||||||
date_fin: '2026-11-07',
|
|
||||||
});
|
|
||||||
|
|
||||||
expect(absencesService.creer).toHaveBeenCalled();
|
|
||||||
expect(audienceRepo.save).toHaveBeenCalled();
|
|
||||||
expect(res.type_code).toBe('conge_am');
|
|
||||||
expect(res.statut).toBe(CardInstanceStatutType.OUVERTE);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('parent ne peut pas émettre conge_am', async () => {
|
|
||||||
typesRepo.findOne.mockResolvedValue({
|
|
||||||
code: 'conge_am',
|
|
||||||
system: true,
|
|
||||||
emitter_roles: [RoleType.ASSISTANTE_MATERNELLE],
|
|
||||||
});
|
|
||||||
await expect(
|
|
||||||
service.creer('p-1', RoleType.PARENT, {
|
|
||||||
type_code: 'conge_am',
|
|
||||||
id_placement: 'pl-1',
|
|
||||||
date_debut: '2026-11-01',
|
|
||||||
date_fin: '2026-11-07',
|
|
||||||
}),
|
|
||||||
).rejects.toBeInstanceOf(ForbiddenException);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,453 +0,0 @@
|
|||||||
import {
|
|
||||||
BadRequestException,
|
|
||||||
ForbiddenException,
|
|
||||||
Injectable,
|
|
||||||
NotFoundException,
|
|
||||||
} from '@nestjs/common';
|
|
||||||
import { InjectRepository } from '@nestjs/typeorm';
|
|
||||||
import { IsNull, Repository } from 'typeorm';
|
|
||||||
import { AbsencesGardeService } from '../absences-garde/absences-garde.service';
|
|
||||||
import {
|
|
||||||
StatutAbsenceGardeType,
|
|
||||||
TypeAbsenceGardeType,
|
|
||||||
} from 'src/entities/absences_garde.entity';
|
|
||||||
import { AmChildren } from 'src/entities/am_children.entity';
|
|
||||||
import { ParentsChildren } from 'src/entities/parents_children.entity';
|
|
||||||
import { RoleType } from 'src/entities/users.entity';
|
|
||||||
import { CardType, CardResponseModeType } from 'src/entities/card_types.entity';
|
|
||||||
import {
|
|
||||||
CardInstance,
|
|
||||||
CardInstanceStatutType,
|
|
||||||
CardOperationType,
|
|
||||||
} from 'src/entities/card_instances.entity';
|
|
||||||
import { CardAudienceMember } from 'src/entities/card_audience_members.entity';
|
|
||||||
import {
|
|
||||||
CardResponse,
|
|
||||||
CardResponseActionType,
|
|
||||||
} from 'src/entities/card_responses.entity';
|
|
||||||
import {
|
|
||||||
CarteDto,
|
|
||||||
CreerCarteDto,
|
|
||||||
ListeCartesDto,
|
|
||||||
MajCarteDto,
|
|
||||||
RepondreCarteDto,
|
|
||||||
} from './dto/cards.dto';
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class CardsService {
|
|
||||||
constructor(
|
|
||||||
@InjectRepository(CardType)
|
|
||||||
private readonly typesRepo: Repository<CardType>,
|
|
||||||
@InjectRepository(CardInstance)
|
|
||||||
private readonly cardsRepo: Repository<CardInstance>,
|
|
||||||
@InjectRepository(CardAudienceMember)
|
|
||||||
private readonly audienceRepo: Repository<CardAudienceMember>,
|
|
||||||
@InjectRepository(CardResponse)
|
|
||||||
private readonly responsesRepo: Repository<CardResponse>,
|
|
||||||
@InjectRepository(AmChildren)
|
|
||||||
private readonly amChildrenRepo: Repository<AmChildren>,
|
|
||||||
@InjectRepository(ParentsChildren)
|
|
||||||
private readonly parentsChildrenRepo: Repository<ParentsChildren>,
|
|
||||||
private readonly absencesService: AbsencesGardeService,
|
|
||||||
) {}
|
|
||||||
|
|
||||||
async listerTypes(role: RoleType): Promise<CardType[]> {
|
|
||||||
const all = await this.typesRepo.find({ where: { system: true } });
|
|
||||||
return all.filter((t) => t.emitter_roles.includes(role));
|
|
||||||
}
|
|
||||||
|
|
||||||
async lister(
|
|
||||||
userId: string,
|
|
||||||
role: RoleType,
|
|
||||||
placementId?: string,
|
|
||||||
): Promise<ListeCartesDto> {
|
|
||||||
const qb = this.cardsRepo
|
|
||||||
.createQueryBuilder('c')
|
|
||||||
.innerJoin('c.audience', 'aud', 'aud.id_utilisateur = :userId', { userId })
|
|
||||||
.leftJoinAndSelect('c.type', 'type')
|
|
||||||
.leftJoinAndSelect('c.responses', 'responses')
|
|
||||||
.where('c.purge_at > now()')
|
|
||||||
.orderBy(
|
|
||||||
`CASE c.statut WHEN 'refusee' THEN 0 WHEN 'ouverte' THEN 1 ELSE 2 END`,
|
|
||||||
'ASC',
|
|
||||||
)
|
|
||||||
.addOrderBy('c.modifie_le', 'DESC');
|
|
||||||
|
|
||||||
if (placementId) {
|
|
||||||
await this.assertPlacementAccess(userId, role, placementId);
|
|
||||||
qb.andWhere('c.id_placement = :placementId', { placementId });
|
|
||||||
}
|
|
||||||
|
|
||||||
const rows = await qb.getMany();
|
|
||||||
return {
|
|
||||||
items: rows.map((c) => this.toDto(c, userId)),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
async creer(
|
|
||||||
userId: string,
|
|
||||||
role: RoleType,
|
|
||||||
dto: CreerCarteDto,
|
|
||||||
): Promise<CarteDto> {
|
|
||||||
if (dto.date_fin < dto.date_debut) {
|
|
||||||
throw new BadRequestException('date_fin < date_debut');
|
|
||||||
}
|
|
||||||
|
|
||||||
const type = await this.typesRepo.findOne({ where: { code: dto.type_code } });
|
|
||||||
if (!type || !type.system) {
|
|
||||||
throw new NotFoundException('Type de carte inconnu');
|
|
||||||
}
|
|
||||||
if (!type.emitter_roles.includes(role)) {
|
|
||||||
throw new ForbiddenException('Vous ne pouvez pas émettre ce type de carte');
|
|
||||||
}
|
|
||||||
|
|
||||||
const placement = await this.assertPlacementAccess(
|
|
||||||
userId,
|
|
||||||
role,
|
|
||||||
dto.id_placement,
|
|
||||||
);
|
|
||||||
const operation = dto.operation ?? CardOperationType.CREATE;
|
|
||||||
|
|
||||||
let absenceId = dto.id_absence;
|
|
||||||
const absenceType = this.mapAbsenceType(dto.type_code);
|
|
||||||
|
|
||||||
if (operation === CardOperationType.CREATE) {
|
|
||||||
const absence = await this.absencesService.creer(userId, role, {
|
|
||||||
id_placement: dto.id_placement,
|
|
||||||
type: absenceType,
|
|
||||||
date_debut: dto.date_debut,
|
|
||||||
date_fin: dto.date_fin,
|
|
||||||
motif: dto.motif,
|
|
||||||
});
|
|
||||||
absenceId = absence.id;
|
|
||||||
} else {
|
|
||||||
if (!absenceId) {
|
|
||||||
throw new BadRequestException('id_absence requis pour operation=update');
|
|
||||||
}
|
|
||||||
await this.absencesService.maj(userId, role, absenceId, {
|
|
||||||
date_debut: dto.date_debut,
|
|
||||||
date_fin: dto.date_fin,
|
|
||||||
motif: dto.motif,
|
|
||||||
// Congé accepté modifié → repasse en attente via cartes respond flow;
|
|
||||||
// pour absence enfant update immédiat déjà fait.
|
|
||||||
...(dto.type_code === 'conge_am'
|
|
||||||
? { statut: StatutAbsenceGardeType.EN_ATTENTE }
|
|
||||||
: {}),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const statutInitial =
|
|
||||||
type.response_mode === CardResponseModeType.NONE
|
|
||||||
? CardInstanceStatutType.TRAITEE
|
|
||||||
: CardInstanceStatutType.OUVERTE;
|
|
||||||
|
|
||||||
const card = this.cardsRepo.create({
|
|
||||||
type_code: type.code,
|
|
||||||
id_placement: dto.id_placement,
|
|
||||||
id_absence: absenceId,
|
|
||||||
cree_par: userId,
|
|
||||||
operation,
|
|
||||||
statut: statutInitial,
|
|
||||||
payload: {
|
|
||||||
date_debut: dto.date_debut,
|
|
||||||
date_fin: dto.date_fin,
|
|
||||||
motif: dto.motif ?? null,
|
|
||||||
},
|
|
||||||
purge_at: this.purgeAt(type.retention_days, statutInitial),
|
|
||||||
});
|
|
||||||
const saved = await this.cardsRepo.save(card);
|
|
||||||
|
|
||||||
if (absenceId) {
|
|
||||||
await this.linkAbsenceCard(absenceId, saved.id);
|
|
||||||
}
|
|
||||||
|
|
||||||
await this.buildAudience(saved, type, placement, userId, role);
|
|
||||||
|
|
||||||
const full = await this.loadCard(saved.id);
|
|
||||||
return this.toDto(full, userId);
|
|
||||||
}
|
|
||||||
|
|
||||||
async repondre(
|
|
||||||
userId: string,
|
|
||||||
role: RoleType,
|
|
||||||
cardId: string,
|
|
||||||
dto: RepondreCarteDto,
|
|
||||||
): Promise<CarteDto> {
|
|
||||||
const card = await this.loadCard(cardId);
|
|
||||||
await this.assertInAudience(card, userId);
|
|
||||||
if (card.statut !== CardInstanceStatutType.OUVERTE) {
|
|
||||||
throw new BadRequestException('Cette carte n’est plus ouverte');
|
|
||||||
}
|
|
||||||
if (card.cree_par === userId) {
|
|
||||||
throw new ForbiddenException('Le créateur ne répond pas à sa propre carte');
|
|
||||||
}
|
|
||||||
|
|
||||||
const mode = card.type.response_mode;
|
|
||||||
if (mode === CardResponseModeType.NONE) {
|
|
||||||
throw new BadRequestException('Ce type de carte ne demande pas de réponse');
|
|
||||||
}
|
|
||||||
if (mode === CardResponseModeType.ACK && dto.action !== CardResponseActionType.ACK) {
|
|
||||||
throw new BadRequestException('Action attendue : ack');
|
|
||||||
}
|
|
||||||
if (
|
|
||||||
mode === CardResponseModeType.ACCEPT_REFUSE &&
|
|
||||||
dto.action !== CardResponseActionType.ACCEPT &&
|
|
||||||
dto.action !== CardResponseActionType.REFUSE
|
|
||||||
) {
|
|
||||||
throw new BadRequestException('Action attendue : accept ou refuse');
|
|
||||||
}
|
|
||||||
if (dto.action === CardResponseActionType.REFUSE && !dto.comment?.trim()) {
|
|
||||||
throw new BadRequestException('Motivation obligatoire en cas de refus');
|
|
||||||
}
|
|
||||||
|
|
||||||
await this.responsesRepo.save(
|
|
||||||
this.responsesRepo.create({
|
|
||||||
id_card: card.id,
|
|
||||||
id_utilisateur: userId,
|
|
||||||
action: dto.action,
|
|
||||||
comment: dto.comment?.trim(),
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
|
|
||||||
if (card.id_absence) {
|
|
||||||
if (dto.action === CardResponseActionType.ACCEPT || dto.action === CardResponseActionType.ACK) {
|
|
||||||
await this.absencesService.maj(userId, role, card.id_absence, {
|
|
||||||
statut: StatutAbsenceGardeType.ACCEPTE,
|
|
||||||
});
|
|
||||||
card.statut = CardInstanceStatutType.TRAITEE;
|
|
||||||
} else if (dto.action === CardResponseActionType.REFUSE) {
|
|
||||||
await this.absencesService.maj(userId, role, card.id_absence, {
|
|
||||||
statut: StatutAbsenceGardeType.REFUSE,
|
|
||||||
motif: dto.comment!.trim(),
|
|
||||||
});
|
|
||||||
card.statut = CardInstanceStatutType.REFUSEE;
|
|
||||||
}
|
|
||||||
} else if (dto.action === CardResponseActionType.ACK) {
|
|
||||||
card.statut = CardInstanceStatutType.TRAITEE;
|
|
||||||
}
|
|
||||||
|
|
||||||
card.purge_at = this.purgeAt(card.type.retention_days, card.statut);
|
|
||||||
await this.cardsRepo.save(card);
|
|
||||||
return this.toDto(await this.loadCard(cardId), userId);
|
|
||||||
}
|
|
||||||
|
|
||||||
async majEnAttente(
|
|
||||||
userId: string,
|
|
||||||
role: RoleType,
|
|
||||||
cardId: string,
|
|
||||||
dto: MajCarteDto,
|
|
||||||
): Promise<CarteDto> {
|
|
||||||
const card = await this.loadCard(cardId);
|
|
||||||
if (card.cree_par !== userId) {
|
|
||||||
throw new ForbiddenException('Seul le créateur peut modifier cette carte');
|
|
||||||
}
|
|
||||||
if (
|
|
||||||
card.statut !== CardInstanceStatutType.OUVERTE &&
|
|
||||||
card.statut !== CardInstanceStatutType.REFUSEE
|
|
||||||
) {
|
|
||||||
throw new BadRequestException('Carte non modifiable dans cet état');
|
|
||||||
}
|
|
||||||
|
|
||||||
const debut =
|
|
||||||
dto.date_debut ?? String(card.payload?.['date_debut'] ?? '');
|
|
||||||
const fin = dto.date_fin ?? String(card.payload?.['date_fin'] ?? '');
|
|
||||||
if (!debut || !fin || fin < debut) {
|
|
||||||
throw new BadRequestException('Dates invalides');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (card.id_absence) {
|
|
||||||
await this.absencesService.maj(userId, role, card.id_absence, {
|
|
||||||
date_debut: debut,
|
|
||||||
date_fin: fin,
|
|
||||||
motif: dto.motif,
|
|
||||||
statut: StatutAbsenceGardeType.EN_ATTENTE,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
card.payload = {
|
|
||||||
...card.payload,
|
|
||||||
date_debut: debut,
|
|
||||||
date_fin: fin,
|
|
||||||
motif: dto.motif ?? card.payload?.['motif'] ?? null,
|
|
||||||
};
|
|
||||||
card.statut = CardInstanceStatutType.OUVERTE;
|
|
||||||
card.purge_at = this.purgeAt(card.type.retention_days, card.statut);
|
|
||||||
await this.cardsRepo.save(card);
|
|
||||||
return this.toDto(await this.loadCard(cardId), userId);
|
|
||||||
}
|
|
||||||
|
|
||||||
async supprimer(
|
|
||||||
userId: string,
|
|
||||||
role: RoleType,
|
|
||||||
cardId: string,
|
|
||||||
): Promise<void> {
|
|
||||||
const card = await this.loadCard(cardId);
|
|
||||||
if (card.cree_par !== userId) {
|
|
||||||
throw new ForbiddenException('Seul le créateur peut supprimer cette carte');
|
|
||||||
}
|
|
||||||
if (card.id_absence) {
|
|
||||||
const absStatut =
|
|
||||||
card.statut === CardInstanceStatutType.TRAITEE
|
|
||||||
? null
|
|
||||||
: card.id_absence;
|
|
||||||
// Supprime l’absence liée si pas encore acceptée définitivement
|
|
||||||
if (
|
|
||||||
card.statut === CardInstanceStatutType.OUVERTE ||
|
|
||||||
card.statut === CardInstanceStatutType.REFUSEE
|
|
||||||
) {
|
|
||||||
await this.absencesService.supprimer(userId, role, card.id_absence);
|
|
||||||
}
|
|
||||||
void absStatut;
|
|
||||||
}
|
|
||||||
await this.cardsRepo.delete({ id: cardId });
|
|
||||||
}
|
|
||||||
|
|
||||||
private mapAbsenceType(typeCode: string): TypeAbsenceGardeType {
|
|
||||||
if (typeCode === 'absence_enfant' || typeCode === 'absence_enfant_modif') {
|
|
||||||
return TypeAbsenceGardeType.ABSENCE_ENFANT;
|
|
||||||
}
|
|
||||||
if (typeCode === 'conge_am') return TypeAbsenceGardeType.CONGE_AM;
|
|
||||||
if (typeCode === 'arret_maladie_am') {
|
|
||||||
return TypeAbsenceGardeType.ARRET_MALADIE_AM;
|
|
||||||
}
|
|
||||||
throw new BadRequestException(`Type non mappé à une absence: ${typeCode}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
private async linkAbsenceCard(absenceId: string, cardId: string): Promise<void> {
|
|
||||||
// Update direct pour éviter droits maj vides
|
|
||||||
await this.cardsRepo.manager.query(
|
|
||||||
`UPDATE absences_garde SET id_card_instance = $1, modifie_le = now() WHERE id = $2`,
|
|
||||||
[cardId, absenceId],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
private async buildAudience(
|
|
||||||
card: CardInstance,
|
|
||||||
type: CardType,
|
|
||||||
placement: AmChildren,
|
|
||||||
creatorId: string,
|
|
||||||
creatorRole: RoleType,
|
|
||||||
): Promise<void> {
|
|
||||||
const members: Partial<CardAudienceMember>[] = [
|
|
||||||
{
|
|
||||||
id_card: card.id,
|
|
||||||
id_utilisateur: creatorId,
|
|
||||||
role_snapshot: creatorRole,
|
|
||||||
is_creator: true,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
if (type.audience_resolver === 'couple_am') {
|
|
||||||
members.push({
|
|
||||||
id_card: card.id,
|
|
||||||
id_utilisateur: placement.amId,
|
|
||||||
role_snapshot: RoleType.ASSISTANTE_MATERNELLE,
|
|
||||||
is_creator: false,
|
|
||||||
});
|
|
||||||
} else if (type.audience_resolver === 'couple_parents') {
|
|
||||||
const liens = await this.parentsChildrenRepo.find({
|
|
||||||
where: { enfantId: placement.enfantId },
|
|
||||||
});
|
|
||||||
for (const l of liens) {
|
|
||||||
if (l.parentId === creatorId) continue;
|
|
||||||
members.push({
|
|
||||||
id_card: card.id,
|
|
||||||
id_utilisateur: l.parentId,
|
|
||||||
role_snapshot: RoleType.PARENT,
|
|
||||||
is_creator: false,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// dédup
|
|
||||||
const seen = new Set<string>();
|
|
||||||
const unique = members.filter((m) => {
|
|
||||||
const k = m.id_utilisateur!;
|
|
||||||
if (seen.has(k)) return false;
|
|
||||||
seen.add(k);
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
await this.audienceRepo.save(this.audienceRepo.create(unique));
|
|
||||||
}
|
|
||||||
|
|
||||||
private purgeAt(
|
|
||||||
retentionDays: number,
|
|
||||||
statut: CardInstanceStatutType,
|
|
||||||
): Date {
|
|
||||||
const days =
|
|
||||||
statut === CardInstanceStatutType.OUVERTE
|
|
||||||
? Math.max(retentionDays, 15)
|
|
||||||
: retentionDays;
|
|
||||||
return new Date(Date.now() + days * 24 * 60 * 60 * 1000);
|
|
||||||
}
|
|
||||||
|
|
||||||
private async loadCard(id: string): Promise<CardInstance> {
|
|
||||||
const card = await this.cardsRepo.findOne({
|
|
||||||
where: { id },
|
|
||||||
relations: ['type', 'responses', 'audience'],
|
|
||||||
});
|
|
||||||
if (!card) throw new NotFoundException('Carte introuvable');
|
|
||||||
return card;
|
|
||||||
}
|
|
||||||
|
|
||||||
private async assertInAudience(card: CardInstance, userId: string): Promise<void> {
|
|
||||||
const ok = (card.audience ?? []).some((a) => a.id_utilisateur === userId);
|
|
||||||
if (!ok) {
|
|
||||||
const row = await this.audienceRepo.findOne({
|
|
||||||
where: { id_card: card.id, id_utilisateur: userId },
|
|
||||||
});
|
|
||||||
if (!row) throw new ForbiddenException('Carte hors de votre audience');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async assertPlacementAccess(
|
|
||||||
userId: string,
|
|
||||||
role: RoleType,
|
|
||||||
placementId: string,
|
|
||||||
): Promise<AmChildren> {
|
|
||||||
const placement = await this.amChildrenRepo.findOne({
|
|
||||||
where: { id: placementId, date_fin: IsNull() },
|
|
||||||
});
|
|
||||||
if (!placement) {
|
|
||||||
throw new NotFoundException('Placement introuvable ou inactif');
|
|
||||||
}
|
|
||||||
if (role === RoleType.ASSISTANTE_MATERNELLE) {
|
|
||||||
if (placement.amId !== userId) {
|
|
||||||
throw new ForbiddenException('Placement non autorisé');
|
|
||||||
}
|
|
||||||
return placement;
|
|
||||||
}
|
|
||||||
if (role === RoleType.PARENT) {
|
|
||||||
const lien = await this.parentsChildrenRepo.findOne({
|
|
||||||
where: { parentId: userId, enfantId: placement.enfantId },
|
|
||||||
});
|
|
||||||
if (!lien) throw new ForbiddenException('Placement non autorisé');
|
|
||||||
return placement;
|
|
||||||
}
|
|
||||||
throw new ForbiddenException('Rôle non autorisé');
|
|
||||||
}
|
|
||||||
|
|
||||||
private toDto(card: CardInstance, userId: string): CarteDto {
|
|
||||||
const lastRefuse = [...(card.responses ?? [])]
|
|
||||||
.reverse()
|
|
||||||
.find((r) => r.action === CardResponseActionType.REFUSE);
|
|
||||||
return {
|
|
||||||
id: card.id,
|
|
||||||
type_code: card.type_code,
|
|
||||||
titre: card.type?.titre ?? card.type_code,
|
|
||||||
couleur: card.type?.couleur ?? null,
|
|
||||||
id_placement: card.id_placement,
|
|
||||||
id_absence: card.id_absence ?? null,
|
|
||||||
operation: card.operation,
|
|
||||||
statut: card.statut,
|
|
||||||
payload: card.payload ?? {},
|
|
||||||
purge_at: card.purge_at?.toISOString?.() ?? String(card.purge_at),
|
|
||||||
cree_par: card.cree_par ?? null,
|
|
||||||
is_creator: card.cree_par === userId,
|
|
||||||
response_mode: card.type?.response_mode,
|
|
||||||
last_refuse_comment: lastRefuse?.comment ?? null,
|
|
||||||
cree_le: card.cree_le?.toISOString?.() ?? String(card.cree_le),
|
|
||||||
modifie_le: card.modifie_le?.toISOString?.() ?? String(card.modifie_le),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,137 +0,0 @@
|
|||||||
import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
|
|
||||||
import {
|
|
||||||
IsDateString,
|
|
||||||
IsEnum,
|
|
||||||
IsOptional,
|
|
||||||
IsString,
|
|
||||||
IsUUID,
|
|
||||||
MaxLength,
|
|
||||||
MinLength,
|
|
||||||
ValidateIf,
|
|
||||||
} from 'class-validator';
|
|
||||||
import { CardInstanceStatutType, CardOperationType } from 'src/entities/card_instances.entity';
|
|
||||||
import { CardResponseActionType } from 'src/entities/card_responses.entity';
|
|
||||||
|
|
||||||
export class CreerCarteDto {
|
|
||||||
@ApiProperty({
|
|
||||||
description: 'absence_enfant | absence_enfant_modif | conge_am | arret_maladie_am',
|
|
||||||
})
|
|
||||||
@IsString()
|
|
||||||
type_code: string;
|
|
||||||
|
|
||||||
@ApiProperty()
|
|
||||||
@IsUUID()
|
|
||||||
id_placement: string;
|
|
||||||
|
|
||||||
@ApiProperty({ example: '2026-10-01' })
|
|
||||||
@IsDateString()
|
|
||||||
date_debut: string;
|
|
||||||
|
|
||||||
@ApiProperty({ example: '2026-10-05' })
|
|
||||||
@IsDateString()
|
|
||||||
date_fin: string;
|
|
||||||
|
|
||||||
@ApiPropertyOptional()
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(2000)
|
|
||||||
motif?: string;
|
|
||||||
|
|
||||||
@ApiPropertyOptional({
|
|
||||||
description: 'Requis pour operation=update (même id absences_garde)',
|
|
||||||
})
|
|
||||||
@IsOptional()
|
|
||||||
@IsUUID()
|
|
||||||
id_absence?: string;
|
|
||||||
|
|
||||||
@ApiPropertyOptional({ enum: CardOperationType, default: CardOperationType.CREATE })
|
|
||||||
@IsOptional()
|
|
||||||
@IsEnum(CardOperationType)
|
|
||||||
operation?: CardOperationType;
|
|
||||||
}
|
|
||||||
|
|
||||||
export class RepondreCarteDto {
|
|
||||||
@ApiProperty({ enum: CardResponseActionType })
|
|
||||||
@IsEnum(CardResponseActionType)
|
|
||||||
action: CardResponseActionType;
|
|
||||||
|
|
||||||
@ApiPropertyOptional({ description: 'Obligatoire si action=refuse' })
|
|
||||||
@ValidateIf((o) => o.action === CardResponseActionType.REFUSE)
|
|
||||||
@IsString()
|
|
||||||
@MinLength(1)
|
|
||||||
@MaxLength(2000)
|
|
||||||
comment?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export class MajCarteDto {
|
|
||||||
@ApiPropertyOptional()
|
|
||||||
@IsOptional()
|
|
||||||
@IsDateString()
|
|
||||||
date_debut?: string;
|
|
||||||
|
|
||||||
@ApiPropertyOptional()
|
|
||||||
@IsOptional()
|
|
||||||
@IsDateString()
|
|
||||||
date_fin?: string;
|
|
||||||
|
|
||||||
@ApiPropertyOptional()
|
|
||||||
@IsOptional()
|
|
||||||
@IsString()
|
|
||||||
@MaxLength(2000)
|
|
||||||
motif?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export class CarteDto {
|
|
||||||
@ApiProperty()
|
|
||||||
id: string;
|
|
||||||
|
|
||||||
@ApiProperty()
|
|
||||||
type_code: string;
|
|
||||||
|
|
||||||
@ApiProperty()
|
|
||||||
titre: string;
|
|
||||||
|
|
||||||
@ApiPropertyOptional()
|
|
||||||
couleur?: string | null;
|
|
||||||
|
|
||||||
@ApiProperty()
|
|
||||||
id_placement: string;
|
|
||||||
|
|
||||||
@ApiPropertyOptional()
|
|
||||||
id_absence?: string | null;
|
|
||||||
|
|
||||||
@ApiProperty({ enum: CardOperationType })
|
|
||||||
operation: CardOperationType;
|
|
||||||
|
|
||||||
@ApiProperty({ enum: CardInstanceStatutType })
|
|
||||||
statut: CardInstanceStatutType;
|
|
||||||
|
|
||||||
@ApiProperty()
|
|
||||||
payload: Record<string, unknown>;
|
|
||||||
|
|
||||||
@ApiProperty()
|
|
||||||
purge_at: string;
|
|
||||||
|
|
||||||
@ApiPropertyOptional()
|
|
||||||
cree_par?: string | null;
|
|
||||||
|
|
||||||
@ApiProperty()
|
|
||||||
is_creator: boolean;
|
|
||||||
|
|
||||||
@ApiPropertyOptional()
|
|
||||||
response_mode?: string;
|
|
||||||
|
|
||||||
@ApiPropertyOptional()
|
|
||||||
last_refuse_comment?: string | null;
|
|
||||||
|
|
||||||
@ApiProperty()
|
|
||||||
cree_le: string;
|
|
||||||
|
|
||||||
@ApiProperty()
|
|
||||||
modifie_le: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export class ListeCartesDto {
|
|
||||||
@ApiProperty({ type: [CarteDto] })
|
|
||||||
items: CarteDto[];
|
|
||||||
}
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
export { CardsModule } from './cards.module';
|
|
||||||
export { CardsService } from './cards.service';
|
|
||||||
@@ -1,123 +0,0 @@
|
|||||||
-- Ticket #194 — Module Cartes SYSTEM (collecte absences/congés/arrêt)
|
|
||||||
-- Idempotent.
|
|
||||||
|
|
||||||
DO $$
|
|
||||||
BEGIN
|
|
||||||
IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'card_response_mode_type') THEN
|
|
||||||
CREATE TYPE card_response_mode_type AS ENUM (
|
|
||||||
'none', 'ack', 'accept_refuse'
|
|
||||||
);
|
|
||||||
END IF;
|
|
||||||
IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'card_instance_statut_type') THEN
|
|
||||||
CREATE TYPE card_instance_statut_type AS ENUM (
|
|
||||||
'ouverte', 'refusee', 'traitee'
|
|
||||||
);
|
|
||||||
END IF;
|
|
||||||
IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'card_operation_type') THEN
|
|
||||||
CREATE TYPE card_operation_type AS ENUM ('create', 'update');
|
|
||||||
END IF;
|
|
||||||
IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'card_response_action_type') THEN
|
|
||||||
CREATE TYPE card_response_action_type AS ENUM (
|
|
||||||
'accept', 'refuse', 'ack'
|
|
||||||
);
|
|
||||||
END IF;
|
|
||||||
END $$;
|
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS card_types (
|
|
||||||
code VARCHAR(64) PRIMARY KEY,
|
|
||||||
system BOOLEAN NOT NULL DEFAULT true,
|
|
||||||
titre VARCHAR(120) NOT NULL,
|
|
||||||
emitter_roles TEXT[] NOT NULL,
|
|
||||||
recipient_roles TEXT[] NOT NULL,
|
|
||||||
audience_resolver VARCHAR(64) NOT NULL,
|
|
||||||
response_mode card_response_mode_type NOT NULL,
|
|
||||||
retention_days INT NOT NULL DEFAULT 14,
|
|
||||||
couleur VARCHAR(32),
|
|
||||||
cree_le TIMESTAMPTZ NOT NULL DEFAULT now(),
|
|
||||||
modifie_le TIMESTAMPTZ NOT NULL DEFAULT now()
|
|
||||||
);
|
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS card_instances (
|
|
||||||
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
||||||
type_code VARCHAR(64) NOT NULL REFERENCES card_types(code),
|
|
||||||
id_placement UUID NOT NULL
|
|
||||||
REFERENCES enfants_assistantes_maternelles(id) ON DELETE CASCADE,
|
|
||||||
id_absence UUID REFERENCES absences_garde(id) ON DELETE SET NULL,
|
|
||||||
cree_par UUID REFERENCES utilisateurs(id) ON DELETE SET NULL,
|
|
||||||
operation card_operation_type NOT NULL DEFAULT 'create',
|
|
||||||
statut card_instance_statut_type NOT NULL DEFAULT 'ouverte',
|
|
||||||
payload JSONB NOT NULL DEFAULT '{}'::jsonb,
|
|
||||||
purge_at TIMESTAMPTZ NOT NULL,
|
|
||||||
cree_le TIMESTAMPTZ NOT NULL DEFAULT now(),
|
|
||||||
modifie_le TIMESTAMPTZ NOT NULL DEFAULT now()
|
|
||||||
);
|
|
||||||
|
|
||||||
CREATE INDEX IF NOT EXISTS idx_card_instances_placement
|
|
||||||
ON card_instances (id_placement, statut, cree_le DESC);
|
|
||||||
CREATE INDEX IF NOT EXISTS idx_card_instances_purge
|
|
||||||
ON card_instances (purge_at);
|
|
||||||
CREATE INDEX IF NOT EXISTS idx_card_instances_absence
|
|
||||||
ON card_instances (id_absence)
|
|
||||||
WHERE id_absence IS NOT NULL;
|
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS card_audience_members (
|
|
||||||
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
||||||
id_card UUID NOT NULL REFERENCES card_instances(id) ON DELETE CASCADE,
|
|
||||||
id_utilisateur UUID NOT NULL REFERENCES utilisateurs(id) ON DELETE CASCADE,
|
|
||||||
role_snapshot VARCHAR(64) NOT NULL,
|
|
||||||
is_creator BOOLEAN NOT NULL DEFAULT false,
|
|
||||||
UNIQUE (id_card, id_utilisateur)
|
|
||||||
);
|
|
||||||
|
|
||||||
CREATE INDEX IF NOT EXISTS idx_card_audience_user
|
|
||||||
ON card_audience_members (id_utilisateur, id_card);
|
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS card_responses (
|
|
||||||
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
||||||
id_card UUID NOT NULL REFERENCES card_instances(id) ON DELETE CASCADE,
|
|
||||||
id_utilisateur UUID NOT NULL REFERENCES utilisateurs(id) ON DELETE CASCADE,
|
|
||||||
action card_response_action_type NOT NULL,
|
|
||||||
comment TEXT,
|
|
||||||
cree_le TIMESTAMPTZ NOT NULL DEFAULT now()
|
|
||||||
);
|
|
||||||
|
|
||||||
CREATE INDEX IF NOT EXISTS idx_card_responses_card
|
|
||||||
ON card_responses (id_card, cree_le DESC);
|
|
||||||
|
|
||||||
-- Seeds SYSTEM
|
|
||||||
INSERT INTO card_types (
|
|
||||||
code, system, titre, emitter_roles, recipient_roles,
|
|
||||||
audience_resolver, response_mode, retention_days, couleur
|
|
||||||
) VALUES
|
|
||||||
(
|
|
||||||
'absence_enfant', true, 'Absence enfant',
|
|
||||||
ARRAY['parent'], ARRAY['assistante_maternelle'],
|
|
||||||
'couple_am', 'none', 7, 'peach'
|
|
||||||
),
|
|
||||||
(
|
|
||||||
'absence_enfant_modif', true, 'Absence enfant modifiée',
|
|
||||||
ARRAY['parent'], ARRAY['assistante_maternelle'],
|
|
||||||
'couple_am', 'ack', 7, 'peach'
|
|
||||||
),
|
|
||||||
(
|
|
||||||
'conge_am', true, 'Congé AM',
|
|
||||||
ARRAY['assistante_maternelle'], ARRAY['parent'],
|
|
||||||
'couple_parents', 'accept_refuse', 14, 'lavender'
|
|
||||||
),
|
|
||||||
(
|
|
||||||
'arret_maladie_am', true, 'Arrêt maladie AM',
|
|
||||||
ARRAY['assistante_maternelle'], ARRAY['parent'],
|
|
||||||
'couple_parents', 'ack', 14, 'pink'
|
|
||||||
)
|
|
||||||
ON CONFLICT (code) DO UPDATE SET
|
|
||||||
titre = EXCLUDED.titre,
|
|
||||||
emitter_roles = EXCLUDED.emitter_roles,
|
|
||||||
recipient_roles = EXCLUDED.recipient_roles,
|
|
||||||
audience_resolver = EXCLUDED.audience_resolver,
|
|
||||||
response_mode = EXCLUDED.response_mode,
|
|
||||||
retention_days = EXCLUDED.retention_days,
|
|
||||||
couleur = EXCLUDED.couleur,
|
|
||||||
modifie_le = now();
|
|
||||||
|
|
||||||
COMMENT ON TABLE card_types IS 'Catalogue types de cartes (SYSTEM seeds #194 ; OPTIONNEL plus tard).';
|
|
||||||
COMMENT ON TABLE card_instances IS 'Bulles / file d’attention — collecte, pas vérité métier absences.';
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
<application
|
<application
|
||||||
android:label="p_tits_pas"
|
android:label="p_tits_pas"
|
||||||
android:name="${applicationName}"
|
android:name="${applicationName}"
|
||||||
android:icon="@mipmap/ic_launcher">
|
android:icon="@mipmap/launcher_icon">
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
|
|||||||
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 8.6 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 28 KiB |
@@ -0,0 +1,58 @@
|
|||||||
|
class AbsenceGarde {
|
||||||
|
final String id;
|
||||||
|
final String idPlacement;
|
||||||
|
final String type;
|
||||||
|
final String dateDebut;
|
||||||
|
final String dateFin;
|
||||||
|
final String statut;
|
||||||
|
final String expireAt;
|
||||||
|
final String? creePar;
|
||||||
|
final String? motif;
|
||||||
|
final String? idEnfant;
|
||||||
|
final String? prenomEnfant;
|
||||||
|
final String? idAm;
|
||||||
|
final String? prenomAm;
|
||||||
|
final String? nomAm;
|
||||||
|
final String creeLe;
|
||||||
|
final String modifieLe;
|
||||||
|
|
||||||
|
AbsenceGarde({
|
||||||
|
required this.id,
|
||||||
|
required this.idPlacement,
|
||||||
|
required this.type,
|
||||||
|
required this.dateDebut,
|
||||||
|
required this.dateFin,
|
||||||
|
required this.statut,
|
||||||
|
required this.expireAt,
|
||||||
|
this.creePar,
|
||||||
|
this.motif,
|
||||||
|
this.idEnfant,
|
||||||
|
this.prenomEnfant,
|
||||||
|
this.idAm,
|
||||||
|
this.prenomAm,
|
||||||
|
this.nomAm,
|
||||||
|
required this.creeLe,
|
||||||
|
required this.modifieLe,
|
||||||
|
});
|
||||||
|
|
||||||
|
factory AbsenceGarde.fromJson(Map<String, dynamic> json) {
|
||||||
|
return AbsenceGarde(
|
||||||
|
id: json['id'] ?? '',
|
||||||
|
idPlacement: json['id_placement'] ?? '',
|
||||||
|
type: json['type'] ?? '',
|
||||||
|
dateDebut: json['date_debut'] ?? '',
|
||||||
|
dateFin: json['date_fin'] ?? '',
|
||||||
|
statut: json['statut'] ?? '',
|
||||||
|
expireAt: json['expire_at'] ?? '',
|
||||||
|
creePar: json['cree_par'],
|
||||||
|
motif: json['motif'],
|
||||||
|
idEnfant: json['id_enfant'],
|
||||||
|
prenomEnfant: json['prenom_enfant'],
|
||||||
|
idAm: json['id_am'],
|
||||||
|
prenomAm: json['prenom_am'],
|
||||||
|
nomAm: json['nom_am'],
|
||||||
|
creeLe: json['cree_le'] ?? '',
|
||||||
|
modifieLe: json['modifie_le'] ?? '',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,6 +6,7 @@ import 'package:p_tits_pas/services/couple_garde_service.dart';
|
|||||||
import 'package:p_tits_pas/widgets/quotidien/couple_selector_bandeau.dart';
|
import 'package:p_tits_pas/widgets/quotidien/couple_selector_bandeau.dart';
|
||||||
import 'package:p_tits_pas/widgets/quotidien/quotidien_shell.dart';
|
import 'package:p_tits_pas/widgets/quotidien/quotidien_shell.dart';
|
||||||
import 'package:p_tits_pas/widgets/quotidien/quotidien_theme.dart';
|
import 'package:p_tits_pas/widgets/quotidien/quotidien_theme.dart';
|
||||||
|
import 'package:p_tits_pas/screens/home/parent_screen/agenda_absences_stub.dart';
|
||||||
|
|
||||||
/// Tableau de bord parent — coquille 3 colonnes quotidien (#166).
|
/// Tableau de bord parent — coquille 3 colonnes quotidien (#166).
|
||||||
/// Colonne gauche : sélecteur de couple enfant–nounou (#167).
|
/// Colonne gauche : sélecteur de couple enfant–nounou (#167).
|
||||||
@@ -128,10 +129,7 @@ class _ParentDashboardScreenState extends State<ParentDashboardScreen> {
|
|||||||
'Mess. AM · Mess. RPE\n(à brancher — ticket #184).',
|
'Mess. AM · Mess. RPE\n(à brancher — ticket #184).',
|
||||||
icon: Icons.chat_bubble_outline,
|
icon: Icons.chat_bubble_outline,
|
||||||
),
|
),
|
||||||
agendaBody: const QuotidienStubPage(
|
agendaBody: AgendaAbsencesStub(placementId: _selectedCoupleId),
|
||||||
title: 'Agenda',
|
|
||||||
message: 'Agenda — contenu à venir (stub #187).',
|
|
||||||
),
|
|
||||||
contratBody: const QuotidienStubPage(
|
contratBody: const QuotidienStubPage(
|
||||||
title: 'Contrat',
|
title: 'Contrat',
|
||||||
message: 'Contrat — contenu à venir (stub #187).',
|
message: 'Contrat — contenu à venir (stub #187).',
|
||||||
|
|||||||
@@ -0,0 +1,192 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:p_tits_pas/models/absence_garde.dart';
|
||||||
|
import 'package:p_tits_pas/services/api/absences_garde_service.dart';
|
||||||
|
import 'package:p_tits_pas/widgets/quotidien/quotidien_theme.dart';
|
||||||
|
|
||||||
|
class AgendaAbsencesStub extends StatefulWidget {
|
||||||
|
final String? placementId;
|
||||||
|
|
||||||
|
const AgendaAbsencesStub({super.key, this.placementId});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<AgendaAbsencesStub> createState() => _AgendaAbsencesStubState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _AgendaAbsencesStubState extends State<AgendaAbsencesStub> {
|
||||||
|
List<AbsenceGarde> _absences = [];
|
||||||
|
bool _loading = true;
|
||||||
|
String? _error;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
_loadAbsences();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void didUpdateWidget(covariant AgendaAbsencesStub oldWidget) {
|
||||||
|
super.didUpdateWidget(oldWidget);
|
||||||
|
if (oldWidget.placementId != widget.placementId) {
|
||||||
|
_loadAbsences();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _loadAbsences() async {
|
||||||
|
setState(() {
|
||||||
|
_loading = true;
|
||||||
|
_error = null;
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
final absences = await AbsencesGardeService.getAbsences(
|
||||||
|
placementId: widget.placementId,
|
||||||
|
);
|
||||||
|
if (!mounted) return;
|
||||||
|
setState(() {
|
||||||
|
_absences = absences;
|
||||||
|
_loading = false;
|
||||||
|
});
|
||||||
|
} catch (e) {
|
||||||
|
if (!mounted) return;
|
||||||
|
setState(() {
|
||||||
|
_error = e.toString();
|
||||||
|
_loading = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Container(
|
||||||
|
color: QuotidienTheme.ivory,
|
||||||
|
child: Center(
|
||||||
|
child: ConstrainedBox(
|
||||||
|
constraints: const BoxConstraints(maxWidth: 600),
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
|
children: [
|
||||||
|
const Icon(
|
||||||
|
Icons.calendar_month_outlined,
|
||||||
|
size: 64,
|
||||||
|
color: QuotidienTheme.peach,
|
||||||
|
),
|
||||||
|
const SizedBox(height: 24),
|
||||||
|
Text(
|
||||||
|
"Agenda (Stub) - Lignes d'absence",
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: Theme.of(context).textTheme.headlineSmall?.copyWith(
|
||||||
|
color: QuotidienTheme.ink,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
Text(
|
||||||
|
'ID Placement courant: ${widget.placementId ?? 'Tous'}',
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: const TextStyle(color: QuotidienTheme.muted),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 24),
|
||||||
|
Expanded(
|
||||||
|
child: _buildList(),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildList() {
|
||||||
|
if (_loading) {
|
||||||
|
return const Center(child: CircularProgressIndicator());
|
||||||
|
}
|
||||||
|
if (_error != null) {
|
||||||
|
return Center(
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: [
|
||||||
|
const Icon(Icons.error_outline, color: Colors.red, size: 48),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
Text(_error!, style: const TextStyle(color: Colors.red)),
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
ElevatedButton(
|
||||||
|
onPressed: _loadAbsences,
|
||||||
|
child: const Text('Réessayer'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (_absences.isEmpty) {
|
||||||
|
return const Center(
|
||||||
|
child: Text('Aucune absence ou congé trouvé.',
|
||||||
|
style: TextStyle(color: QuotidienTheme.muted)),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return ListView.separated(
|
||||||
|
itemCount: _absences.length,
|
||||||
|
separatorBuilder: (_, __) => const Divider(),
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
final abs = _absences[index];
|
||||||
|
return ListTile(
|
||||||
|
leading: _getIcon(abs.type),
|
||||||
|
title: Text('${abs.type} (${abs.statut})'),
|
||||||
|
subtitle: Text(
|
||||||
|
'Du ${abs.dateDebut} au ${abs.dateFin}\n'
|
||||||
|
'Enfant: ${abs.prenomEnfant ?? 'N/A'}, AM: ${abs.prenomAm ?? 'N/A'}',
|
||||||
|
),
|
||||||
|
trailing: IconButton(
|
||||||
|
icon: const Icon(Icons.delete_outline, color: Colors.red),
|
||||||
|
onPressed: () => _confirmDelete(abs),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Icon _getIcon(String type) {
|
||||||
|
switch (type) {
|
||||||
|
case 'absence_enfant':
|
||||||
|
return const Icon(Icons.child_care, color: QuotidienTheme.coral);
|
||||||
|
case 'conge_am':
|
||||||
|
return const Icon(Icons.beach_access, color: QuotidienTheme.turquoise);
|
||||||
|
case 'arret_maladie_am':
|
||||||
|
return const Icon(Icons.medical_services, color: QuotidienTheme.coral);
|
||||||
|
default:
|
||||||
|
return const Icon(Icons.event);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _confirmDelete(AbsenceGarde abs) async {
|
||||||
|
final confirm = await showDialog<bool>(
|
||||||
|
context: context,
|
||||||
|
builder: (context) => AlertDialog(
|
||||||
|
title: const Text('Supprimer ?'),
|
||||||
|
content: Text("Supprimer l'absence ${abs.type} du ${abs.dateDebut} ?"),
|
||||||
|
actions: [
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => Navigator.pop(context, false),
|
||||||
|
child: const Text('Annuler'),
|
||||||
|
),
|
||||||
|
TextButton(
|
||||||
|
onPressed: () => Navigator.pop(context, true),
|
||||||
|
style: TextButton.styleFrom(foregroundColor: Colors.red),
|
||||||
|
child: const Text('Supprimer'),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
if (confirm == true) {
|
||||||
|
try {
|
||||||
|
await AbsencesGardeService.supprimerAbsence(abs.id);
|
||||||
|
_loadAbsences();
|
||||||
|
} catch (e) {
|
||||||
|
if (!mounted) return;
|
||||||
|
ScaffoldMessenger.of(context).showSnackBar(
|
||||||
|
SnackBar(content: Text('Erreur: $e')),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,94 @@
|
|||||||
|
import 'dart:convert';
|
||||||
|
import 'package:http/http.dart' as http;
|
||||||
|
import 'package:p_tits_pas/models/absence_garde.dart';
|
||||||
|
import 'package:p_tits_pas/services/api/api_config.dart';
|
||||||
|
import 'package:p_tits_pas/services/api/tokenService.dart';
|
||||||
|
|
||||||
|
class AbsencesGardeService {
|
||||||
|
static Future<List<AbsenceGarde>> getAbsences({String? placementId}) async {
|
||||||
|
final token = await TokenService.getToken();
|
||||||
|
final headers = token != null ? ApiConfig.authHeaders(token) : ApiConfig.headers;
|
||||||
|
|
||||||
|
final uri = Uri.parse(ApiConfig.baseUrl +
|
||||||
|
'/absences-garde' +
|
||||||
|
(placementId != null ? '?placementId=$placementId' : ''));
|
||||||
|
|
||||||
|
final res = await http.get(uri, headers: headers);
|
||||||
|
if (res.statusCode == 200) {
|
||||||
|
final json = jsonDecode(res.body);
|
||||||
|
final List items = json['items'] ?? [];
|
||||||
|
return items.map((e) => AbsenceGarde.fromJson(e)).toList();
|
||||||
|
} else {
|
||||||
|
throw Exception('Erreur de chargement des absences : ${res.statusCode}');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static Future<AbsenceGarde> creerAbsence({
|
||||||
|
required String idPlacement,
|
||||||
|
required String type,
|
||||||
|
required String dateDebut,
|
||||||
|
required String dateFin,
|
||||||
|
String? motif,
|
||||||
|
}) async {
|
||||||
|
final token = await TokenService.getToken();
|
||||||
|
final headers = token != null ? ApiConfig.authHeaders(token) : ApiConfig.headers;
|
||||||
|
|
||||||
|
final uri = Uri.parse('${ApiConfig.baseUrl}/absences-garde');
|
||||||
|
final res = await http.post(
|
||||||
|
uri,
|
||||||
|
headers: headers,
|
||||||
|
body: jsonEncode({
|
||||||
|
'id_placement': idPlacement,
|
||||||
|
'type': type,
|
||||||
|
'date_debut': dateDebut,
|
||||||
|
'date_fin': dateFin,
|
||||||
|
if (motif != null) 'motif': motif,
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
if (res.statusCode == 201) {
|
||||||
|
return AbsenceGarde.fromJson(jsonDecode(res.body));
|
||||||
|
} else {
|
||||||
|
throw Exception("Erreur de création d'absence : ${res.statusCode}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static Future<AbsenceGarde> modifierAbsence(
|
||||||
|
String id, {
|
||||||
|
String? dateDebut,
|
||||||
|
String? dateFin,
|
||||||
|
String? statut,
|
||||||
|
String? motif,
|
||||||
|
}) async {
|
||||||
|
final token = await TokenService.getToken();
|
||||||
|
final headers = token != null ? ApiConfig.authHeaders(token) : ApiConfig.headers;
|
||||||
|
|
||||||
|
final uri = Uri.parse('${ApiConfig.baseUrl}/absences-garde/$id');
|
||||||
|
final Map<String, dynamic> body = {};
|
||||||
|
if (dateDebut != null) body['date_debut'] = dateDebut;
|
||||||
|
if (dateFin != null) body['date_fin'] = dateFin;
|
||||||
|
if (statut != null) body['statut'] = statut;
|
||||||
|
if (motif != null) body['motif'] = motif;
|
||||||
|
|
||||||
|
final res = await http.patch(
|
||||||
|
uri,
|
||||||
|
headers: headers,
|
||||||
|
body: jsonEncode(body),
|
||||||
|
);
|
||||||
|
if (res.statusCode == 200) {
|
||||||
|
return AbsenceGarde.fromJson(jsonDecode(res.body));
|
||||||
|
} else {
|
||||||
|
throw Exception("Erreur de modification d'absence : ${res.statusCode}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static Future<void> supprimerAbsence(String id) async {
|
||||||
|
final token = await TokenService.getToken();
|
||||||
|
final headers = token != null ? ApiConfig.authHeaders(token) : ApiConfig.headers;
|
||||||
|
|
||||||
|
final uri = Uri.parse('${ApiConfig.baseUrl}/absences-garde/$id');
|
||||||
|
final res = await http.delete(uri, headers: headers);
|
||||||
|
if (res.statusCode != 204) {
|
||||||
|
throw Exception("Erreur de suppression d'absence : ${res.statusCode}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -96,7 +96,8 @@ class ApiConfig {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static Map<String, String> authHeaders(String token) => {
|
static Map<String, String> authHeaders(String token) => {
|
||||||
...headers,
|
'Content-Type': 'application/json',
|
||||||
|
'Accept': 'application/json',
|
||||||
'Authorization': 'Bearer $token',
|
'Authorization': 'Bearer $token',
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -383,6 +383,13 @@ class AuthService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Récupère l'utilisateur connecté depuis le cache
|
/// Récupère l'utilisateur connecté depuis le cache
|
||||||
|
static const String tokenKey = 'auth_token';
|
||||||
|
|
||||||
|
static Future<String?> getToken() async {
|
||||||
|
final prefs = await SharedPreferences.getInstance();
|
||||||
|
return prefs.getString(tokenKey);
|
||||||
|
}
|
||||||
|
|
||||||
static Future<AppUser?> getCurrentUser() async {
|
static Future<AppUser?> getCurrentUser() async {
|
||||||
final prefs = await SharedPreferences.getInstance();
|
final prefs = await SharedPreferences.getInstance();
|
||||||
final userJson = prefs.getString(_currentUserKey);
|
final userJson = prefs.getString(_currentUserKey);
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ abstract final class QuotidienTheme {
|
|||||||
static const Color ink = Color(0xFF2F2F2F);
|
static const Color ink = Color(0xFF2F2F2F);
|
||||||
static const Color ivory = Color(0xFFFFFEF9);
|
static const Color ivory = Color(0xFFFFFEF9);
|
||||||
static const Color turquoise = Color(0xFF8AD0C8);
|
static const Color turquoise = Color(0xFF8AD0C8);
|
||||||
|
static const Color peach = Color(0xFFFFCCB6);
|
||||||
static const Color lavender = Color(0xFFC6A3D8);
|
static const Color lavender = Color(0xFFC6A3D8);
|
||||||
static const Color coral = Color(0xFFF4A28C);
|
static const Color coral = Color(0xFFF4A28C);
|
||||||
static const Color softGreenPill = Color(0xFFB8D9A8);
|
static const Color softGreenPill = Color(0xFFB8D9A8);
|
||||||
|
|||||||
@@ -1,6 +1,22 @@
|
|||||||
# Generated by pub
|
# Generated by pub
|
||||||
# See https://dart.dev/tools/pub/glossary#lockfile
|
# See https://dart.dev/tools/pub/glossary#lockfile
|
||||||
packages:
|
packages:
|
||||||
|
archive:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: archive
|
||||||
|
sha256: "6c5bcd986e06b94e3c40244af471750840a3d2341d1f9763a1100a14add517b4"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "4.3.0"
|
||||||
|
args:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: args
|
||||||
|
sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "2.7.0"
|
||||||
async:
|
async:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -25,6 +41,22 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.4.0"
|
version: "1.4.0"
|
||||||
|
checked_yaml:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: checked_yaml
|
||||||
|
sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "2.0.3"
|
||||||
|
cli_util:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: cli_util
|
||||||
|
sha256: ff6785f7e9e3c38ac98b2fb035701789de90154024a75b6cb926445e83197d1c
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "0.4.2"
|
||||||
clock:
|
clock:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -150,6 +182,14 @@ packages:
|
|||||||
description: flutter
|
description: flutter
|
||||||
source: sdk
|
source: sdk
|
||||||
version: "0.0.0"
|
version: "0.0.0"
|
||||||
|
flutter_launcher_icons:
|
||||||
|
dependency: "direct dev"
|
||||||
|
description:
|
||||||
|
name: flutter_launcher_icons
|
||||||
|
sha256: "526faf84284b86a4cb36d20a5e45147747b7563d921373d4ee0559c54fcdbcea"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "0.13.1"
|
||||||
flutter_lints:
|
flutter_lints:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description:
|
description:
|
||||||
@@ -213,6 +253,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.0.2"
|
version: "4.0.2"
|
||||||
|
image:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: image
|
||||||
|
sha256: a1e7f4951e538a568e14b856702afc9ae1d2f4b202daced8d22c1b9cd211ce89
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "4.10.1"
|
||||||
image_picker:
|
image_picker:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -293,6 +341,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.6.7"
|
version: "0.6.7"
|
||||||
|
json_annotation:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: json_annotation
|
||||||
|
sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "4.9.0"
|
||||||
leak_tracker:
|
leak_tracker:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -461,6 +517,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.8"
|
version: "2.1.8"
|
||||||
|
posix:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: posix
|
||||||
|
sha256: bc1bad54ad2b735816e31f8d4600cfde6c7839975085ddfbca48b6c9f7c4044e
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "6.5.2"
|
||||||
provider:
|
provider:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -722,6 +786,14 @@ packages:
|
|||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.1.0"
|
version: "1.1.0"
|
||||||
|
yaml:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: yaml
|
||||||
|
sha256: f67cdd8e07d3c6329146aaef1ba043542b3134c12489f553ca9a7435d1068aea
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "3.1.4"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=3.7.0-0 <4.0.0"
|
dart: ">=3.7.0-0 <4.0.0"
|
||||||
flutter: ">=3.19.0"
|
flutter: ">=3.19.0"
|
||||||
|
|||||||
@@ -30,6 +30,21 @@ dev_dependencies:
|
|||||||
flutter_test:
|
flutter_test:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
flutter_lints: ^2.0.0
|
flutter_lints: ^2.0.0
|
||||||
|
flutter_launcher_icons: ^0.13.1
|
||||||
|
|
||||||
|
flutter_launcher_icons:
|
||||||
|
android: "launcher_icon"
|
||||||
|
ios: false
|
||||||
|
image_path: "assets/images/icon.png"
|
||||||
|
web:
|
||||||
|
generate: true
|
||||||
|
image_path: "assets/images/icon.png"
|
||||||
|
background_color: "#ffffff"
|
||||||
|
theme_color: "#ffffff"
|
||||||
|
windows:
|
||||||
|
generate: true
|
||||||
|
image_path: "assets/images/icon.png"
|
||||||
|
icon_size: 256
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
uses-material-design: true
|
uses-material-design: true
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 917 B After Width: | Height: | Size: 633 B |
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 165 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 165 KiB |
@@ -3,19 +3,19 @@
|
|||||||
"short_name": "P'titsPas",
|
"short_name": "P'titsPas",
|
||||||
"start_url": ".",
|
"start_url": ".",
|
||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
"background_color": "#FFFEF9",
|
"background_color": "#ffffff",
|
||||||
"theme_color": "#8AD0C8",
|
"theme_color": "#ffffff",
|
||||||
"description": "P'titsPas - Grandir pas à pas, sereinement",
|
"description": "P'titsPas - Grandir pas à pas, sereinement",
|
||||||
"orientation": "portrait-primary",
|
"orientation": "portrait-primary",
|
||||||
"prefer_related_applications": false,
|
"prefer_related_applications": false,
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "assets/images/icon.png",
|
"src": "icons/Icon-192.png",
|
||||||
"sizes": "192x192",
|
"sizes": "192x192",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"src": "assets/images/icon.png",
|
"src": "icons/Icon-512.png",
|
||||||
"sizes": "512x512",
|
"sizes": "512x512",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
},
|
},
|
||||||
@@ -32,4 +32,4 @@
|
|||||||
"purpose": "maskable"
|
"purpose": "maskable"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 47 KiB |