diff --git a/libs/BeetRoundCore/model/tablemodel.cpp b/libs/BeetRoundCore/model/tablemodel.cpp index 8e638e3..774f4b2 100644 --- a/libs/BeetRoundCore/model/tablemodel.cpp +++ b/libs/BeetRoundCore/model/tablemodel.cpp @@ -312,15 +312,14 @@ int TableModel::nExpectedBiddings() const { if (biddingType.isEmpty()) { continue; } - const QString shareType = (*i)->data(ShareTypeRole).toString(); - if (shareType.isEmpty() || shareType == "erarbeitet") { - continue; - } const double shareAmount = (*i)->data(ShareAmountRole).toDouble(); if (shareAmount == 0.0) { continue; } - result++; + const QString shareType = (*i)->data(ShareTypeRole).toString(); + if (shareType == "bezahlt" || shareType == "teils/teils") { + result++; + } } return result; }