fix invoice number

This commit is contained in:
2026-05-17 22:41:47 +03:30
parent 7133b47c95
commit 0c6dbada15
6 changed files with 37 additions and 9 deletions
@@ -80,7 +80,7 @@ export class RequestRepository extends EntityRepository<Request> {
limit,
offset,
orderBy: { [orderBy]: order.toLowerCase() as 'asc' | 'desc' },
populate: ['items', 'items.product', 'user'],
populate: ['items', 'items.product', 'user','invoices'],
});
const totalPages = Math.ceil(total / limit);