odoo/addons/base_import
Martin Trigaux f138aa2608 [FIX] models: display_name and name_get mismatch
- display_name uses name_get and not the other way around:
name_get should not call _compute_display_name, _compute_display_name should call name_get.
The previous behaviour was not backward-compatible with the old api.
All the models redefining name_get would have 2 different behaviors between name_get and display_name.

- Do not set an inverse function to display_name:
In most cases, writing on display_name writes on _rec_name (if any, not mandatory).
If the display_name computation is redefined, we need to redefine as well the inverse method to avoid unexpected behaviour
This required to also modify tests in base_import as readonly fields are avoided.

- Remove search method on display_name:
For the same reason as for the first point, it could be good that searching on display_name use name_search (and not the other way around).
However doing this would be very inefficiant (need to do the search, without limit, extract the ids of the name_get result just to generate
a subdomain ('id', 'in', [...]). As in most cases it would anyway mean to search on the _rec_name it's better to directly do so.

- Changing label to avoid mismatch:
In view displaying the list of fields or when a match is made on the label of a field (e.g. when importing csv file,
matching is made on both label and technical name), the fact that display_name field has '
Calling it 'Display Name' will avoid most errors.

- remove display_name definition from website_forum_doc,ir_model:
These fields are doing the same thing as the display_name of the new api, we can remove them.
We need to keep the one for res.partner as it's a stored field.
2014-07-25 13:58:59 +02:00
..
i18n Launchpad automatic translations update. 2014-04-22 07:52:47 +00:00
security [FIX]Make .csv file for base_import module 2012-10-10 16:40:37 +05:30
static [REF] OpenERP --> Odoo in various UI texts 2014-07-18 13:45:41 +02:00
tests [FIX] models: display_name and name_get mismatch 2014-07-25 13:58:59 +02:00
views [IMP] bundlify addons (except website) 2014-04-24 19:21:29 +02:00
__init__.py [FIX] base_import: just loading module should not require unittest2. Reported by M.Taylor 2012-09-11 15:24:46 +02:00
__openerp__.py [MERGE] upstream 2014-04-29 17:41:04 +02:00
controllers.py more controller conversion to new route api 2013-10-27 18:31:43 +01:00
models.py [REF] OpenERP --> Odoo in various UI texts 2014-07-18 13:45:41 +02:00
test_models.py [REM] Unnecessary `size` parameters on char fields 2014-06-25 17:13:43 +02:00