mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
* Add backend support for transaction categories * Fix tests * Localize default category names * Add tests * Remove category icon and set default color
89 lines
1.7 KiB
YAML
89 lines
1.7 KiB
YAML
# Checking account transactions
|
|
checking_one:
|
|
name: Starbucks
|
|
date: <%= 5.days.ago.to_date %>
|
|
amount: 10
|
|
account: checking
|
|
category: food_and_drink
|
|
|
|
checking_two:
|
|
name: Chipotle
|
|
date: <%= 12.days.ago.to_date %>
|
|
amount: 30
|
|
account: checking
|
|
category: food_and_drink
|
|
|
|
checking_three:
|
|
name: Amazon
|
|
date: <%= 15.days.ago.to_date %>
|
|
amount: 20
|
|
account: checking
|
|
|
|
checking_four:
|
|
name: Paycheck
|
|
date: <%= 22.days.ago.to_date %>
|
|
amount: -1075
|
|
account: checking
|
|
category: income
|
|
|
|
checking_five:
|
|
name: Netflix
|
|
date: <%= 29.days.ago.to_date %>
|
|
amount: 15
|
|
account: checking
|
|
|
|
# Savings account that has these transactions and valuation overrides
|
|
savings_one:
|
|
name: Interest Received
|
|
date: <%= 5.days.ago.to_date %>
|
|
amount: -200
|
|
account: savings_with_valuation_overrides
|
|
category: income
|
|
|
|
savings_two:
|
|
name: Check Deposit
|
|
date: <%= 12.days.ago.to_date %>
|
|
amount: -50
|
|
account: savings_with_valuation_overrides
|
|
category: income
|
|
|
|
savings_three:
|
|
name: Withdrawal
|
|
date: <%= 18.days.ago.to_date %>
|
|
amount: 2000
|
|
account: savings_with_valuation_overrides
|
|
|
|
savings_four:
|
|
name: Check Deposit
|
|
date: <%= 29.days.ago.to_date %>
|
|
amount: -500
|
|
account: savings_with_valuation_overrides
|
|
category: income
|
|
|
|
# Credit card account transactions
|
|
credit_card_one:
|
|
name: Starbucks
|
|
date: <%= 5.days.ago.to_date %>
|
|
amount: 10
|
|
account: credit_card
|
|
category: food_and_drink
|
|
|
|
credit_card_two:
|
|
name: Chipotle
|
|
date: <%= 12.days.ago.to_date %>
|
|
amount: 30
|
|
account: credit_card
|
|
category: food_and_drink
|
|
|
|
credit_card_three:
|
|
name: Amazon
|
|
date: <%= 15.days.ago.to_date %>
|
|
amount: 20
|
|
account: credit_card
|
|
|
|
credit_card_four:
|
|
name: CC Payment
|
|
date: <%= 29.days.ago.to_date %>
|
|
amount: -100
|
|
account: credit_card
|