update codes

This commit is contained in:
2026-02-18 22:29:37 +03:30
parent 3afcd2e4b3
commit ad0dacda5f
5 changed files with 248 additions and 22 deletions
+62 -9
View File
@@ -1,17 +1,20 @@
import { Injectable } from '@nestjs/common';
import { Injectable, NotFoundException, BadRequestException } from '@nestjs/common';
import { EntityManager } from '@mikro-orm/postgresql';
import { CreateRequestDto } from './dto/create-request.dto';
import { UpdateRequestDto } from './dto/update-request.dto';
import { FindRequestsDto } from './dto/find-requests.dto';
import { Request } from './entities/request.entity';
import { RequestItem } from './entities/request-item.entity';
import { RequestStatusEnum } from './enum/request';
import { UserService } from '../user/providers/user.service';
import { ProductService } from '../product/providers/product.service';
import { RequestRepository } from './repositories/request.repository';
@Injectable()
export class RequestService {
constructor(
private readonly em: EntityManager,
private readonly requestRepository: RequestRepository,
private readonly userService: UserService,
private readonly productService: ProductService,
) {}
@@ -46,19 +49,69 @@ export class RequestService {
});
}
findAll() {
return `This action returns all request`;
findAll(userId: string, dto: FindRequestsDto) {
return this.requestRepository.findAllPaginated({ userId, ...dto });
}
findOne(id: number) {
return `This action returns a #${id} request`;
async findOne(id: string, userId: string) {
const request = await this.requestRepository.findOne(
{ id, user: { id: userId } },
{ populate: ['items', 'items.product', 'user'] },
);
if (!request) {
throw new NotFoundException('Request not found');
}
return request;
}
update(id: number, updateRequestDto: UpdateRequestDto) {
return `This action updates a #${id} request`;
async update(id: string, updateRequestDto: UpdateRequestDto, userId: string) {
const request = await this.requestRepository.findOne(
{ id, user: { id: userId } },
{ populate: ['items', 'items.product', 'user'] },
);
if (!request) {
throw new NotFoundException('Request not found');
}
const { items } = updateRequestDto;
if (items?.length) {
return this.em.transactional(async (em) => {
request.items.removeAll();
await em.flush();
for (const item of items) {
const product = await this.productService.findOneOrFail(item.productId);
const requestItem = em.create(RequestItem, {
request,
product,
quantity: item.quantity,
attributes: item.attributes,
description: item.description,
attachments: item.attachments,
});
request.items.add(requestItem);
}
await em.flush();
return request;
});
}
return request;
}
remove(id: number) {
return `This action removes a #${id} request`;
async remove(id: string, userId: string) {
const request = await this.requestRepository.findOne(
{ id, user: { id: userId } },
);
if (!request) {
throw new NotFoundException('Request not found');
}
if (request.status !== RequestStatusEnum.PENDING) {
throw new BadRequestException('Only pending requests can be deleted');
}
request.deletedAt = new Date();
await this.em.flush();
return request;
}
}