Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Final Balance Variable #7

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -186,4 +186,5 @@ FakesAssemblies/
# LightSwitch generated files
GeneratedArtifacts/
_Pvt_Extensions/
ModelManifest.xml
ModelManifest.xml
/.vs/OFXParser/v16/Server/sqlite3

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need this file?

7 changes: 6 additions & 1 deletion OFXParser/Core/Parser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,11 @@ public static Extract GetExtract(String ofxSourceFile, ParserSettings settings)
case "MEMO":
transacaoAtual.Description = string.IsNullOrEmpty(meuXml.Value) ? "" : meuXml.Value.Trim().Replace(" ", " ");
break;
case "BALAMT":
extrato.FinalBalance = GetTransactionValue(meuXml.Value, extrato);
break;


}
}
}
Expand Down Expand Up @@ -376,7 +381,7 @@ private static double GetTransactionValue(string value, Extract extract)
double returnValue = 0;
try
{
returnValue = Convert.ToDouble(value.Replace('.', ','));
returnValue = Convert.ToDouble(value.Replace(',', '.'));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needs invariant culture, because other countries.

}
catch (Exception ex)
{
Expand Down
2 changes: 2 additions & 0 deletions OFXParser/Entities/Extract.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ public class Extract

public DateTime FinalDate { get; set; }

public double FinalBalance { get; set; }

public IList<Transaction> Transactions { get; set; }

public IList<string> ImportingErrors { get; private set; }
Expand Down