- Odoo Development Cookbook
- Holger Brunn Alexandre Fayolle Daniel Reis
- 323字
- 2021-07-16 11:00:33
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:
- 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:
- 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.
- 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.
- Add a new configuration, setting Usage to Book Price and choosing the Digits precision:
- 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'] }
- 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.
- DB2 V9權威指南
- Mastering phpMyAdmin 3.4 for Effective MySQL Management
- Mastering Concurrency in Go
- Vue.js入門與商城開發實戰
- 軟件測試工程師面試秘籍
- Python Game Programming By Example
- 編程珠璣(續)
- UML+OOPC嵌入式C語言開發精講
- Java軟件開發基礎
- Backbone.js Blueprints
- Getting Started with Python Data Analysis
- Tableau 10 Bootcamp
- Python機器學習:預測分析核心算法
- C指針原理揭秘:基于底層實現機制
- ArcPy and ArcGIS(Second Edition)