dorisentomari / homebank-apostle

πŸ’° 🏦 A tool for importing your CSV files into Homebank

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool



Homebank Apostle

A tool to help you convert csv exports into a Homebank compatible format

Key Features β€’ Installation β€’ Usage β€’ Contributing β€’ License

Key Features

Homebank Apostle is tool to help you import files into Homebank. Export your internet banking transactions to CSV format and use this too convert make them readable by Homebank.

Installation

Usage

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

To add support for other bank exports you must first create a strategy for it. This tell the tool how to map payment types from your bank to something Homebanks can understand.

Below are the payment types that Homebank currently supports. They correspond to the selectables of the Payment dropdown list you see when you edit a transaction in Homebank. The ordering is important

enum HomebankPaymentType {
  None = 0,
  CreditCard = 1,
  Cheque = 2,
  Cash = 3,
  Transfer = 4,
  DebitCard = 5,
  StandingOrder = 6,
  ElectronicPayment = 7,
  Deposit = 8,
  FiFee = 9,
  DirectDebit = 10,
}

Create a stategy for your bank that implement the BaseStrategy interface. This maps the payment types for your bank to Homebank transaction types. It needs a parse(...) method that takes a like of CSV from your source file and a mapSourceTypeToHomebankType(...) that does the actual mapping of the payment types.

License

MIT

About

πŸ’° 🏦 A tool for importing your CSV files into Homebank

License:GNU General Public License v3.0


Languages

Language:TypeScript 97.6%Language:JavaScript 2.4%