Problem in short: I want to set conditions on an associated model. How do I do it?
Benim CakePHP uygulamasında dernekleri ile ilgili bir sorun yaşıyorum.
Dernekler şöyle:
Event has many EventSum belongs to Account has many AccountUser belongs to User
Event has many EventDebt ... (the rest is the same as above)
Event also belongs to User
Uygulama PHP özel bir econonmy program ve CakePHP çerçeve kullanır.
Bir Event Bu sadece tarih, başlık ve kullanıcı hakkında bilgi tutan bir mali olay, satın alma, vb hesaplar arasında işlem olduğunu.
Bir EventSum bir Account hakkında bilgi ve ne kadar borç veya kredi tutar (bir sütunda, sadece pozitif veya negatif).
Account hesap başlık hakkında bilgi sahibidir.
AccountUser bir Account bir id tutan ve bir User. Bu durum,
Yani, şimdi ben Events bir User ile ilişkili hesapları ne dayalı almak istiyorum. Bunu nasıl yapabilirim?
I want to fetch the following info: Event, together with the EventSum. The Events are fetched from Accounts where the User has access.
Thanks for any help, /Magnus