-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4bcf2cc
commit 46b4820
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
description: "How to configure credit cards in Paisa" | ||
--- | ||
|
||
# Credit Cards | ||
|
||
Paisa allows you to track your credit card bills and payments. Let's | ||
say you have a liability account called | ||
`Liabilities:CreditCard:Freedom` to track your real world credit card, | ||
you can configure it in Paisa as follows: | ||
|
||
```yaml | ||
credit_cards: | ||
- account: Liabilities:CreditCard:Freedom #(1)! | ||
credit_limit: 150000 #(2)! | ||
statement_end_day: 8 #(3)! | ||
due_day: 20 #(4)! | ||
network: visa #(5)! | ||
number: "0007" #(6)! | ||
``` | ||
1. Account name | ||
2. Credit limit of the card | ||
3. The day of the month when the statement is generated | ||
4. The day of the month when the payment is due | ||
5. The network of the card | ||
6. The last 4 digits of the card number | ||
The above configuration can be done from the `More > Configuration` | ||
page. Expand the `Credit Cards` section and click | ||
:fontawesome-solid-circle-plus: icon to add a new one | ||
|
||
Once configured, the credit card will show up on the `Liabilities > | ||
Credit Cards` page. Paisa will automatically calculate and display | ||
various information like the amount due, payment due date, credit | ||
limit utilized, etc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters