Fix search Appointments_model

This commit is contained in:
Vadim Serdunich 2023-09-13 17:27:19 +03:00
parent c3eb4d1632
commit a05551ba74

View file

@ -470,7 +470,7 @@ class Appointments_model extends EA_Model {
->from('appointments')
->join('services', 'services.id = appointments.id_services', 'left')
->join('users AS providers', 'providers.id = appointments.id_users_provider', 'inner')
->join('users AS customers', 'customers.id = appointment.id_users_customer', 'left')
->join('users AS customers', 'customers.id = appointments.id_users_customer', 'left')
->where('is_unavailability', FALSE)
->group_start()
->like('appointments.start_datetime', $keyword)
@ -478,8 +478,8 @@ class Appointments_model extends EA_Model {
->or_like('appointments.location', $keyword)
->or_like('appointments.hash', $keyword)
->or_like('appointments.notes', $keyword)
->or_like('service.name', $keyword)
->or_like('service.description', $keyword)
->or_like('services.name', $keyword)
->or_like('services.description', $keyword)
->or_like('providers.first_name', $keyword)
->or_like('providers.last_name', $keyword)
->or_like('providers.email', $keyword)