Using a float field with configurable precision

When using float fields, we may want to let the end user configure the precision that is to be used. The Decimal Precision Configuration module addon provides this ability.

We will add a Cost Price field to the Library Book model, with a user-configurable number of digits.

Getting ready

We will reuse the my_module addon module from Chapter 3, Creating Odoo Modules.

How to do it…

We need to install the decimal_precision module, add a "Usage" entry for our configuration, and then use it in the model field:

  1. Make sure the Decimal Accuracy module is installed; select Apps from the top menu, remove the default filter, search for the Decimal Precision Configuration app, and install it if it's not already installed:
    How to do it…
  2. Activate the Developer Mode in the About dialog box, available within the ? icon in the menu bar at the top. This will enable the Settings | Technical menu.
  3. Access the Decimal Precision configurations. To do this, open the Settings top menu and select Technical | Database Structure | Decimal Accuracy. We should see a list of the currently defined settings.
  4. Add a new configuration, setting Usage to Book Price and choosing the Digits precision:
    How to do it…
  5. Add the new dependency to the __openerp__.py manifest file. It should be similar to this:
    {   'name': 'Chapter 03 code',
        'depends': ['base', 'decimal_precision],
        'data': ['views/library_book.xml'] }
  6. To add the model field using this decimal precision setting, edit the models/library_book.py file by adding the following:
    from openerp.addons import decimal_precision as dp
    # ...
    class LibraryBook(models.Model):
        # ...
        cost_price = fields.Float(
            'Book Cost', dp.get_precision('Book Price))
    

How it works…

The get_precision() function looks up the name in the Decimal Accuracy Usage field and returns a tuple representing 16-digit precision with the number of decimals defined in the configuration.

Using this function in the field definition, instead of having it hardcoded, allows the end user to configure it according to his needs.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.137.172.68