update: change the discount field of the invoice item from int to decimal

This commit is contained in:
mahyargdz
2025-04-19 12:47:46 +03:30
parent bf3402cc7a
commit 9a12a68cf3
3 changed files with 4 additions and 6 deletions
@@ -131,9 +131,7 @@ export class DanakServicesRepository extends Repository<DanakService> {
serviceQueryBuilder.orderBy("subscriptionPlans.price", "ASC");
const danakService = await serviceQueryBuilder.getOne();
return danakService;
return serviceQueryBuilder.getOne();
}
//+********************
async getUsersByService(serviceId: string) {