Compare commits
No commits in common. "05819824b2db99da1ffed691a0b6ea76200b64cb" and "ffc50f83a3b14d3a30cf26e51fad70f2addc884c" have entirely different histories.
05819824b2
...
ffc50f83a3
2 changed files with 8 additions and 13 deletions
|
@ -135,11 +135,6 @@ namespace BunyMuny {
|
||||||
Console.WriteLine(statement);
|
Console.WriteLine(statement);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (statements.Count == 0) {
|
|
||||||
Console.WriteLine("No statements found.");
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
Console.WriteLine("Summary:");
|
Console.WriteLine("Summary:");
|
||||||
Console.WriteLine("==================");
|
Console.WriteLine("==================");
|
||||||
var summaries = statements.GroupBy(s => s.Category). // group statements by category
|
var summaries = statements.GroupBy(s => s.Category). // group statements by category
|
||||||
|
|
16
README.md
16
README.md
|
@ -12,9 +12,9 @@ dotnet build
|
||||||
```
|
```
|
||||||
|
|
||||||
## Supported banks
|
## Supported banks
|
||||||
- ME Bank ([guide](https://git.bune.city/lynnesbian/BunyMuny/raw/branch/master/guide/me.png))
|
- ME Bank ([guide](https://git.bune.city/lynnesbian/BunyMuny/raw/branch/master/guide/me.png))
|
||||||
- NAB
|
- NAB
|
||||||
- CommBank
|
- CommBank
|
||||||
|
|
||||||
## The rules file
|
## The rules file
|
||||||
By default, BunyMuny checks for rules in `rules.csv` in the current directory.
|
By default, BunyMuny checks for rules in `rules.csv` in the current directory.
|
||||||
|
@ -31,13 +31,13 @@ This means that:
|
||||||
- Any statement that doesn't match these two rules will be categorised as "Other", and will use the description provided by the bank file.
|
- Any statement that doesn't match these two rules will be categorised as "Other", and will use the description provided by the bank file.
|
||||||
|
|
||||||
### Detailed explanation
|
### Detailed explanation
|
||||||
- `Match` specifies the type of matching to perform. It can be any of the following:
|
- `Match` specifies the type of matching to perform. It can be any of the following:
|
||||||
- "Start": Match the start of the description.
|
- "Start": Match the start of the description.
|
||||||
- "End": Match the end of the description.
|
- "End": Match the end of the description.
|
||||||
- "Contains": Match anywhere in the description.
|
- "Contains": Match anywhere in the description.
|
||||||
- "Exact": Only match if the bank statement's description is exactly equal to the provided value.
|
- "Exact": Only match if the bank statement's description is exactly equal to the provided value.
|
||||||
- "Regex": Match with [regular expressions](https://en.wikipedia.org/wiki/Regular_expression).
|
- "Regex": Match with [regular expressions](https://en.wikipedia.org/wiki/Regular_expression).
|
||||||
- `Value` specifies the value to match against.
|
- `Value` specifies the value to match against.
|
||||||
- `Category` is the category that the statement should be filed under.
|
- `Category` is the category that the statement should be filed under.
|
||||||
- `Description` is a short description to distinguish the particular merchant.
|
- `Description` is a short description to distinguish the particular merchant.
|
||||||
- `CaseSensitive` specifies whether or not the match should be case sensitive.
|
- `CaseSensitive` specifies whether or not the match should be case sensitive.
|
||||||
|
|
Loading…
Reference in a new issue