Skip to content

Commit

Permalink
tag management (read mode)
Browse files Browse the repository at this point in the history
issue #735
add label in transaction list
  • Loading branch information
wolfsolver committed Dec 18, 2024
1 parent 334c1db commit b230320
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
import com.money.manager.ex.currency.CurrencyService;
import com.money.manager.ex.database.QueryAllData;
import com.money.manager.ex.database.QueryBillDeposits;
import com.money.manager.ex.database.QueryMobileData;
import com.money.manager.ex.database.TransactionStatus;
import com.money.manager.ex.utils.MmxDate;
import com.money.manager.ex.utils.MmxDateTimeUtils;
Expand Down Expand Up @@ -354,7 +353,7 @@ public void setFieldFromTypeCursor() {
SUBCATEGORY = mTypeCursor == TypeCursor.ALLDATA ? QueryAllData.Subcategory : QueryBillDeposits.SUBCATEGNAME;
NOTES = mTypeCursor == TypeCursor.ALLDATA ? QueryAllData.Notes : QueryBillDeposits.NOTES;
ATTACHMENTCOUNT = mTypeCursor == TypeCursor.ALLDATA ? QueryAllData.ATTACHMENTCOUNT : QueryBillDeposits.ATTACHMENTCOUNT;
TAGS = mTypeCursor == TypeCursor.ALLDATA ? QueryMobileData.TAGS : QueryBillDeposits.TAGS;
TAGS = mTypeCursor == TypeCursor.ALLDATA ? QueryAllData.TAGS : QueryBillDeposits.TAGS;
}

public void setBalances(HashMap<Long, Money> balances) {
Expand Down

0 comments on commit b230320

Please sign in to comment.