Compare commits
13 Commits
8cfe48e0f5
...
test-ci
| Author | SHA1 | Date | |
|---|---|---|---|
| 88a9b70d53 | |||
| 550882b803 | |||
| be2f359ab6 | |||
| e8fa5f8bc6 | |||
| 68e2823d64 | |||
| e977bd83bd | |||
| 7fe6d0db4b | |||
| ccd3e38346 | |||
| 1cbf066658 | |||
| b732944f7a | |||
| 9044560833 | |||
|
|
e2c7165c8c | ||
|
|
4bfa21d4b3 |
@@ -1,8 +0,0 @@
|
||||
steps:
|
||||
test:
|
||||
image: alpine
|
||||
commands:
|
||||
- echo "Woodpecker CI fonctionne parfaitement !"
|
||||
- uname -a
|
||||
- ls -la
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Configuration de la base de données
|
||||
DATABASE_URL="postgresql://postgres:password@localhost:5432/inventory_db"
|
||||
|
||||
# Configuration du serveur
|
||||
# Configuration du serveurte
|
||||
PORT=3000
|
||||
NODE_ENV=development
|
||||
|
||||
|
||||
@@ -1,10 +1,7 @@
|
||||
import { ConflictException, Injectable } from '@nestjs/common';
|
||||
import { Prisma } from '@prisma/client';
|
||||
import { PrismaService } from '../prisma/prisma.service';
|
||||
import {
|
||||
fetchConstructeurIds,
|
||||
syncConstructeurLinks,
|
||||
} from '../common/utils/constructeur-link.util';
|
||||
import { syncConstructeurLinks } from '../common/utils/constructeur-link.util';
|
||||
import { CreatePieceDto, UpdatePieceDto } from '../shared/dto/piece.dto';
|
||||
import { PieceModelStructureSchema } from '../shared/schemas/inventory';
|
||||
import type { PieceModelStructure } from '../shared/types/inventory';
|
||||
@@ -123,39 +120,30 @@ export class PiecesService {
|
||||
include: PIECE_WITH_RELATIONS_INCLUDE,
|
||||
});
|
||||
|
||||
if (!refreshed) {
|
||||
return null;
|
||||
if (refreshed && syncedConstructeurIds.length > 0) {
|
||||
(
|
||||
refreshed as typeof refreshed & { constructeurIds?: string[] }
|
||||
).constructeurIds = [...syncedConstructeurIds];
|
||||
}
|
||||
|
||||
const mapped = await this.mapPiece(refreshed);
|
||||
if (syncedConstructeurIds.length > 0) {
|
||||
mapped.constructeurIds = [...syncedConstructeurIds];
|
||||
}
|
||||
|
||||
return mapped;
|
||||
return refreshed;
|
||||
} catch (error) {
|
||||
this.handlePrismaError(error);
|
||||
}
|
||||
}
|
||||
|
||||
async findAll() {
|
||||
const items = await this.prisma.piece.findMany({
|
||||
return this.prisma.piece.findMany({
|
||||
include: PIECE_WITH_RELATIONS_INCLUDE,
|
||||
orderBy: { name: 'asc' },
|
||||
});
|
||||
const hydrated = await Promise.all(items.map((piece) => this.mapPiece(piece)));
|
||||
return hydrated;
|
||||
}
|
||||
|
||||
async findOne(id: string) {
|
||||
const piece = await this.prisma.piece.findUnique({
|
||||
return this.prisma.piece.findUnique({
|
||||
where: { id },
|
||||
include: PIECE_WITH_RELATIONS_INCLUDE,
|
||||
});
|
||||
if (!piece) {
|
||||
return null;
|
||||
}
|
||||
return this.mapPiece(piece);
|
||||
}
|
||||
|
||||
async update(id: string, updatePieceDto: UpdatePieceDto) {
|
||||
@@ -229,16 +217,13 @@ export class PiecesService {
|
||||
include: PIECE_WITH_RELATIONS_INCLUDE,
|
||||
});
|
||||
|
||||
if (!refreshed) {
|
||||
return null;
|
||||
if (refreshed && syncedConstructeurIds) {
|
||||
(
|
||||
refreshed as typeof refreshed & { constructeurIds?: string[] }
|
||||
).constructeurIds = [...syncedConstructeurIds];
|
||||
}
|
||||
|
||||
const mapped = await this.mapPiece(refreshed);
|
||||
if (syncedConstructeurIds) {
|
||||
mapped.constructeurIds = [...syncedConstructeurIds];
|
||||
}
|
||||
|
||||
return mapped;
|
||||
return refreshed;
|
||||
} catch (error) {
|
||||
this.handlePrismaError(error);
|
||||
}
|
||||
@@ -683,43 +668,6 @@ export class PiecesService {
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private async mapPiece(piece: any) {
|
||||
const idsFromConstructeurs = Array.isArray(piece.constructeurs)
|
||||
? piece.constructeurs
|
||||
.map((c) => (c && typeof c.id === 'string' ? c.id : null))
|
||||
.filter((id): id is string => Boolean(id))
|
||||
: [];
|
||||
|
||||
const idsFromPayload = Array.isArray(piece.constructeurIds)
|
||||
? piece.constructeurIds
|
||||
.map((value) => (typeof value === 'string' ? value.trim() : ''))
|
||||
.filter((value) => value.length > 0)
|
||||
: [];
|
||||
|
||||
let ids = Array.from(new Set([...idsFromConstructeurs, ...idsFromPayload]));
|
||||
|
||||
if (!ids.length) {
|
||||
ids = await fetchConstructeurIds(
|
||||
this.prisma,
|
||||
'_PieceConstructeurs',
|
||||
piece.id,
|
||||
);
|
||||
}
|
||||
|
||||
let constructeurs = piece.constructeurs;
|
||||
if ((!constructeurs || !constructeurs.length) && ids.length) {
|
||||
constructeurs = await this.prisma.constructeur.findMany({
|
||||
where: { id: { in: ids } },
|
||||
});
|
||||
}
|
||||
|
||||
return {
|
||||
...piece,
|
||||
constructeurs,
|
||||
constructeurIds: ids,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
type PieceTypeWithSkeleton = Prisma.ModelTypeGetPayload<{
|
||||
|
||||
@@ -301,57 +301,9 @@ export class ProductsService {
|
||||
}
|
||||
|
||||
private mapProduct(product: ProductWithRelations) {
|
||||
const constructeurs = Array.isArray(product.constructeurs)
|
||||
? product.constructeurs
|
||||
.map((constructeur) => {
|
||||
if (!constructeur || typeof constructeur !== 'object') {
|
||||
return null;
|
||||
}
|
||||
const { id, name, email, phone, createdAt, updatedAt } =
|
||||
constructeur as {
|
||||
id?: string;
|
||||
name?: string | null;
|
||||
email?: string | null;
|
||||
phone?: string | null;
|
||||
createdAt?: Date;
|
||||
updatedAt?: Date;
|
||||
};
|
||||
|
||||
if (!id) {
|
||||
return null;
|
||||
}
|
||||
return {
|
||||
id,
|
||||
name: name ?? null,
|
||||
email: email ?? null,
|
||||
phone: phone ?? null,
|
||||
createdAt: createdAt ?? null,
|
||||
updatedAt: updatedAt ?? null,
|
||||
};
|
||||
})
|
||||
.filter(
|
||||
(entry): entry is {
|
||||
id: string;
|
||||
name: string | null;
|
||||
email: string | null;
|
||||
phone: string | null;
|
||||
createdAt: Date | null;
|
||||
updatedAt: Date | null;
|
||||
} => Boolean(entry),
|
||||
)
|
||||
: [];
|
||||
|
||||
const constructeurIds = constructeurs.map((item) => item.id);
|
||||
const constructeursLabel = constructeurs
|
||||
.map((item) => (item.name || '').trim())
|
||||
.filter((name) => name.length > 0)
|
||||
.join(', ');
|
||||
|
||||
return {
|
||||
...product,
|
||||
constructeurs,
|
||||
constructeurIds,
|
||||
constructeursLabel: constructeursLabel || null,
|
||||
constructeurIds: product.constructeurs.map((item) => item.id),
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user