-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
50 lines (41 loc) · 2.24 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" media="screen" type="text/css" href="style.css" />
<script src="papaparse.js"></script>
<script src="script.js"></script>
<title>Conversion from CSV to QIF</title>
</head>
<body>
<h1>Conversion from CSV to QIF</h1>
This page helps with importing financial data into bookkeeping software. It converts CSV files (which you can download from your bank) to QIF files. QIF files in turn can be imported in programs like GnuCash or Microsoft Money.
<p><strong>Update</strong>: the converter now works entirely in JavaScript, so your financial data remains on your own computer and does not need to be uploaded to the server.</strong>
<p>Currently it works for the following banks:</p>
<ul>
<li>ABN AMRO (The Netherlands)</li>
<li>ASN Bank (The Netherlands)</li>
<li>ING (The Netherlands)</li>
<li>SEB (Sweden)</li>
<li>Skandia (Sweden)</li>
<li>JAK (Sweden)</li>
</ul>
<p>To help me add support for other banks, please send (the first couple of lines of) a CSV file to me at <a href="mailto:qif@matthijsmelissen.nl">qif@matthijsmelissen.nl</a>
<form id="form">
<table>
<tr><label><td>Upload CSV</td><td><input type="file" name="csv" id="file-input" /></label></td></tr>
<tr><label><td>Bank</td><td><select name="bank" id="bank">
<option value="abnamro">ABN Amro</option>
<option value="asn">ASN Bank</option>
<option value="ing">ING</option>
<option value="seb">SEB</option>
<option value="skandia">Skandia</option>
<option value="jak">JAK</option>
</select></label></td></tr>
<tr><td> </td><td><input type="submit" value="Submit"></td></tr>
</table>
</form>
<p>This tool is still in testing phase. Please check manually if the file has been converted correctly. If you find a problem or have any further questions, please contact me at <a href="mailto:qif@matthijsmelissen.nl">qif@matthijsmelissen.nl</a>.</p>
<p>This tool is written by Matthijs Melissen and published under a <a href="http://creativecommons.org/publicdomain/zero/1.0/">CC-0</a> license.
Download the <a href="https://github.com/matthijsmelissen/qif-converter">source code on Github</a>.</p>
</body>
</html>