官术网_书友最值得收藏!

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.

主站蜘蛛池模板: 巨鹿县| 历史| 陈巴尔虎旗| 石景山区| 赫章县| 五台县| 余姚市| 镇沅| 潮州市| 富源县| 湘阴县| 磐石市| 偏关县| 当阳市| 中阳县| 东兴市| 武宁县| 连南| 南康市| 于田县| 眉山市| 太康县| 临湘市| 长宁县| 平塘县| 永济市| 仁怀市| 岢岚县| 黄浦区| 高密市| 修文县| 镇沅| 星座| 成武县| 若尔盖县| 客服| 邢台市| 墨竹工卡县| 盐城市| 宝清县| 达日县|