0
私はReceiptItemsの関連する行、互いにhasManyメソッドとbelongsToメソッドに接続されているReceiptsからの支払いを取得しようとしています。Sequelize.Js-PostgreSQL関連するテーブルの行を所属テーブルから取得する方法は?
ここに私のテーブルのリレーション:ここ
// One to Many Relationship between receiptitems and receipts
db.Receipts.hasMany(db.ReceiptItems,{ foreignKey : 'receipt_id'});
db.ReceiptItems.belongsTo(db.Receipts,{ foreignKey : 'receipt_id'});
// One to Many Relationship between ReceiptItems and Payments
// This relation exists due to solve the problem of paying the debts later on !
db.Receipts.hasMany(db.Payments, { foreignKey : 'receipt_id' });
db.Payments.belongsTo(db.Receipts, { foreignKey : 'receipt_id' });
// One to many Relationship between Receipts and Plates
db.Plates.hasMany(db.Receipts, { foreignKey : 'plate_id' });
db.Receipts.belongsTo(db.Plates, { foreignKey : 'plate_id' });
plate_idに属している領収書を見つけるための私の方法、それは領収書を見つけたが、それはそれに関連するReceiptItemsと支払いを取得しません領収書(ヌル変数ではなく、正常なカムバックの結果、関連するテーブルに関連するフィールドは表示されません)