Skip to content

Commit

Permalink
Merge pull request #775 from gregwalters/develop
Browse files Browse the repository at this point in the history
Allow denominators up to 1000000 in QIF export - fixes #771
  • Loading branch information
codinguser committed May 2, 2018
2 parents bec24f6 + b5496aa commit a55ec29
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,15 @@ public List<String> generateExport() throws ExporterException {
case 1000:
precision = 3;
break;
case 10000:
precision = 4;
break;
case 100000:
precision = 5;
break;
case 1000000:
precision = 6;
break;
default:
throw new ExporterException(mExportParams, "split quantity has illegal denominator: "+ quantity_denom);
}
Expand Down

0 comments on commit a55ec29

Please sign in to comment.