USD Currency with half cent

I'm needing to track fractions of cents in the USD field, for example, I have a rate of $0.065 however Sugar rounds this to $.07.  I've been unable to find a setting or anywhere in the forums with someone asking about this.  Anyone have any ideas?  I can always create a new field that is not USD and maybe that is the solution.  I'm using Professional 9.0.1

Thanks,

Brian

Parents
  • if USD is your base currency you will notice that in your config.php you have the definition and the significant digits.

    Use your config_override.php to change that value and you should be good to go. :)

      'default_currency_iso4217' => 'USD',
      'default_currency_name' => 'US Dollars',
      'default_currency_show_preferred' => false,
      'default_currency_significant_digits' => 2,
      'default_currency_symbol' => '$',
    

    FrancescaS

Reply
  • if USD is your base currency you will notice that in your config.php you have the definition and the significant digits.

    Use your config_override.php to change that value and you should be good to go. :)

      'default_currency_iso4217' => 'USD',
      'default_currency_name' => 'US Dollars',
      'default_currency_show_preferred' => false,
      'default_currency_significant_digits' => 2,
      'default_currency_symbol' => '$',
    

    FrancescaS

Children