customers

This commit is contained in:
2026-07-07 20:35:14 +03:30
parent 94367752a2
commit 9fdc81bff1
11 changed files with 720 additions and 3 deletions
+1
View File
@@ -89,6 +89,7 @@ export class ReservesService {
});
const saved = await this.reservesRepository.save(reserve);
await this.customersService.linkToSalon(saved.salonId, saved.customerId);
await this.logStatusChange(saved.id, null, saved.status, user.id);
return this.findOne(saved.id, user);
}