Guest User

Untitled

a guest
Jul 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $this->Trips = Doctrine_Query::create()
  2. ->from('Trip t')
  3. ->leftJoin("t.Stretches s")
  4. ->leftJoin("t.Vehicle v")
  5. ->where('v.id = ?', $vehicle)
  6. ->andWhere('s.departure_time >= ?', $fecha_desde)
  7. ->andWhere('s.departure_time <= ?', $fecha_hasta)
  8. ->orWhere('s.arrival_time >= ?', $fecha_desde)
  9. ->andWhere('s.arrival_time <= ?', $fecha_hasta)
  10. ->fetchArray();
Add Comment
Please, Sign In to add comment