https://bugs.kde.org/show_bug.cgi?id=420683
Bug ID: 420683 Summary: Inaccurate decimal precision of South Korean Won (KRW) Product: kmymoney Version: git (master) Platform: Other OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: general Assignee: kmymoney-de...@kde.org Reporter: k...@peremen.name Target Milestone: --- SUMMARY Currently in KMyMoney's currency setting, both "Smallest cash unit" and "Smallest money unit" is set to KRW 0.01. However, in every Korean bank statements and stock price tickers the price is always presented in the unit of KRW 1 (no decimal points). Only in foreign exchange markets rates are announced in the precision of KRW 0.01, and it is usually rounded down when it becomes to accounting. At kmymoney/kmymoney/mymoney/mymoneyfile.cpp: currencyList.append(MyMoneySecurity("KRW", i18n("South Korean Won"), QChar(0x20A9))); This should be: currencyList.append(MyMoneySecurity("KRW", i18n("South Korean Won"), QChar(0x20A9), 1)); -- You are receiving this mail because: You are watching all bug changes.