Hi Tze, The steps you mention should work to use IDR as your default currency (though they contain extra steps). I have not tested this, but I expect the minimal steps would be:
1. Run the following SQL to update the currency table: UPDATE currency SET ROUNDING_AMOUNT=1.000 WHERE DISPLAY_SYMBOL='IDR'; 2. Set AccountingRules.CurrencyCode=IDR in applicationConfiguration.custom.properties since the DEFAULT_CURRENCY and ROUNDING_MODE columns in the currency table are no longer used and come instead from applicationConfiguration.default.properties. The latest mifos builds (and the next release) will drop one or both of these columns. In future releases of Mifos, setting the ROUNDING_AMOUNT like this should be unnecessary. Also note that care must be taken when setting a value directly in the database like this since it may break a future upgrade or may be overwritten by a future upgrade. In the future the ROUNDING_AMOUNT default is likely to be 1.0 so in this case setting it to that should be okay. --Van ---- Van Mittal-Henkle Mifos Software Developer Grameen Foundation [email protected] > -----Original Message----- > From: Tze Yong [mailto:[email protected]] > Sent: Sunday, January 24, 2010 3:55 AM > To: [email protected] > Subject: Re: [Mifos-users] applicationConfiguration.custom.properties > setting > > Hi Graeme, > > Thanks a lot for your reply. > > Is it correct to assume that if i do not want to change the rest of > the locale setting and only want to change Currency Code. > The following steps is sufficient: > > 1. Run the following SQL to update the default currency in currency > table: > UPDATE currency SET DEFAULT_CURRENCY=0 WHERE CURRENCY_NAME='Indian > Rupee'; > UPDATE currency SET DEFAULT_CURRENCY=1, ROUNDING_MODE=1, > ROUNDING_AMOUNT=1.000, DISPLAY_SYMBOL='IDR' WHERE > CURRENCY_NAME='Rupiah'; > > 2. Set AccountingRules.CurrencyCode=IDR in > applicationConfiguration.custom.properties > > Are the above step sufficient for me to configure Mifos BEFORE the > first run to let the system use IDR as the currency code? > > Thanks a lot in advance. > > Regards, > Tze Yong > > On Jan 24, 4:04 pm, "Graeme Ruthven" <[email protected]> wrote: > > > -----Original Message----- > > > From: Koh Tze Yong [mailto:[email protected]] > > > Sent: Sunday, 24 January 2010 8:05 p.m. > > > It is stated that the Allowed currency code is only EUR, GBP, INR > and > > > USD > > > > At the moment this is correct. > > > > > So how about support for other currency code? > > > Any help will be greatly appreciated. > > > > There is a description of the process here: > > > > http://www.mifos.org/developers/wiki/AddingANewLocale > > > > However I recommend that any new locales and currencies are added in > > consultation with the development team to avoid any potential > collisions in > > the database. > > > > Regards > > Graeme > > > > --------------------------------------------------------------------- > --------- > > Throughout its 18-year history, RSA Conference consistently attracts > the > > world's best and brightest in the field, creating opportunities for > Conference > > attendees to learn about information security's most important issues > through > > interactions with peers, luminaries and emerging and established > companies.http://p.sf.net/sfu/rsaconf-dev2dev > > _______________________________________________ > > Mifos-users mailing list > > Mifos- > [email protected]https://lists.sourceforge.net/lists/listinfo > /mifos-users > > ----------------------------------------------------------------------- > ------- > Throughout its 18-year history, RSA Conference consistently attracts > the > world's best and brightest in the field, creating opportunities for > Conference > attendees to learn about information security's most important issues > through > interactions with peers, luminaries and emerging and established > companies. > http://p.sf.net/sfu/rsaconf-dev2dev > _______________________________________________ > Mifos-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/mifos-users ------------------------------------------------------------------------------ Throughout its 18-year history, RSA Conference consistently attracts the world's best and brightest in the field, creating opportunities for Conference attendees to learn about information security's most important issues through interactions with peers, luminaries and emerging and established companies. http://p.sf.net/sfu/rsaconf-dev2dev _______________________________________________ Mifos-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mifos-users
