mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-13 03:23:18 +03:00
Fix search Appointments_model: appointments id field
This commit is contained in:
parent
a05551ba74
commit
193205bfc0
1 changed files with 1 additions and 1 deletions
|
@ -466,7 +466,7 @@ class Appointments_model extends EA_Model {
|
||||||
|
|
||||||
$appointments = $this
|
$appointments = $this
|
||||||
->db
|
->db
|
||||||
->select()
|
->select('appointments.*')
|
||||||
->from('appointments')
|
->from('appointments')
|
||||||
->join('services', 'services.id = appointments.id_services', 'left')
|
->join('services', 'services.id = appointments.id_services', 'left')
|
||||||
->join('users AS providers', 'providers.id = appointments.id_users_provider', 'inner')
|
->join('users AS providers', 'providers.id = appointments.id_users_provider', 'inner')
|
||||||
|
|
Loading…
Reference in a new issue