We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bec24f6 commit b5496aaCopy full SHA for b5496aa
1 file changed
app/src/main/java/org/gnucash/android/export/qif/QifExporter.java
@@ -213,6 +213,15 @@ public List<String> generateExport() throws ExporterException {
213
case 1000:
214
precision = 3;
215
break;
216
+ case 10000:
217
+ precision = 4;
218
+ break;
219
+ case 100000:
220
+ precision = 5;
221
222
+ case 1000000:
223
+ precision = 6;
224
225
default:
226
throw new ExporterException(mExportParams, "split quantity has illegal denominator: "+ quantity_denom);
227
}
0 commit comments