chore: approve invoice, reports for admin dashboard

This commit is contained in:
Matin
2025-02-22 16:04:26 +03:30
parent e711ffd3ee
commit 3b0120d338
12 changed files with 448 additions and 8 deletions
@@ -299,4 +299,18 @@ export class DanakServicesService {
review,
};
}
/******************************************** */
async getServicesCount() {
const count = await this.danakServicesRepository.count({
where: {
isActive: true,
},
});
return count;
}
/******************************************** */
}