This commit is contained in:
philipp 2023-07-30 22:59:47 +02:00
parent 38c53a26f9
commit 1bff814811

View File

@ -95,7 +95,7 @@ WHERE name like ?
} }
pub async fn on_water(&self, db: &SqlitePool) -> bool { pub async fn on_water(&self, db: &SqlitePool) -> bool {
sqlx::query!( if sqlx::query!(
"SELECT * FROM logbook WHERE shipmaster=? AND arrival is null", "SELECT * FROM logbook WHERE shipmaster=? AND arrival is null",
self.id self.id
) )
@ -103,6 +103,22 @@ WHERE name like ?
.await .await
.unwrap() .unwrap()
.is_some() .is_some()
{
return true;
}
if sqlx::query!(
"SELECT * FROM logbook JOIN rower ON rower.logbook_id=logbook.id WHERE rower_id=? AND arrival is null",
self.id
)
.fetch_optional(db)
.await
.unwrap()
.is_some()
{
return true;
}
false
} }
pub async fn all(db: &SqlitePool) -> Vec<Self> { pub async fn all(db: &SqlitePool) -> Vec<Self> {