Work in progress betreft het tonen van afspraken naast elkaar
All checks were successful
Docker Image CI / build-and-push (push) Successful in 1m55s
Docker Image CI / deploy (push) Successful in 43s
Docker Image CI / notify-failure (push) Has been skipped

This commit is contained in:
2025-04-20 15:23:59 +02:00
parent 1fec1dc8c0
commit 211fe2cbb8
20 changed files with 769 additions and 34 deletions

View File

@@ -89,7 +89,7 @@ export class NewItemComponent implements OnInit {
const customer = this.customerControl.value;
const appointment = new Appointment(title, description, startTime.hours, startTime.minutes, endTime.hours, endTime.minutes, correctDate, customer)
const appointment = new AppointmentDto(title, description, startTime.hours, startTime.minutes, endTime.hours, endTime.minutes, correctDate, customer)
this.waiting = true
this.appointmentService.addAppointment(appointment, this.userService.currentCompany.id).subscribe(() => {
this.waiting = false