Takes as input an OFX generated by Crédit Agricole and output a fixed version. This is particularly useful if you use Microsoft Money which otherwise refuses to import the new version.
Starting 2019, some Crédit Agricole subsidiaries Websites were updated to a new version. Their OFX export is now buggy. This includes:
- Crédit Agricole Ile de France
- BforBank (from what I can read, not tested)
./gradlew build
Instead of directly using CAYYYYMMDD_NUM.ofx
file downloaded from the CA Website, save it locally and fix it.
java -jar build/libs/credit-agricole-ofx-fix-1.2-SNAPSHOT.jar -f ~/Downloads/CAYYYMMDD_NUM.ofx -o fixed.ofx
Then use the fixed version (fixed.ofx
).
Download the credit-agricole-ofx-fix-1.1.jar.
Instead of directly using CAYYYYMMDD_NUM.ofx
file downloaded from the CA Website, save it locally and fix it.
java -jar credit-agricole-ofx-fix-1.1.jar -f ~/Downloads/CAYYYMMDD_NUM.ofx -o fixed.ofx
Then use the fixed version (fixed.ofx
).
This projects relies on two Apache License 2.0 Software which are embedded in the prebuilt version:
- Apache Commons CLI by Apache Software Foundation (https://github.com/apache/commons-cli/blob/master/LICENSE.txt)
- OFX4J by Web Cohesion (http://www.webcohesion.com) (https://github.com/stoicflame/ofx4j/blob/master/LICENSE)